ExampleAttachmentDownloadClient ex = new ExampleAttachmentDownloadClient(args[0], args[1], args[2]);
System.out.println("Connected ok.");
JiraSoapService soapy = ex.getJiraSOAPService();
String token = ex.getToken();
RemoteIssue iss = soapy.getIssue(token, args[3]);
ex.getAttachment(iss, new File("test"));
System.out.println("Completed.");
} else {