}
/** Retrieve the client jar file from the images folder. */
public void getJAR(Request inRequest, Response inResponse)throws Exception{
inResponse.setContentType("application/octetstream");
OutputStream out = inResponse.getOutputStream();
InputStream in = new ImageSource().getResource("Client.jar");
byte[] buff = new byte[1000];
int length = in.read(buff);
while (length != -1){
out.write(buff,0,length);
length = in.read(buff);