120121122123124125126127128129130
System.out.println("Please specify a command to run"); System.exit(0); } try { serviceStub = new AmazonS3Stub(serviceUrl); } catch (AxisFault e) { System.out.println("Unable to initialize service stub"); e.printStackTrace(); System.exit(0); }
36373839404142434445
protected void setUp() { super.setUp(); try { serviceStub = new AmazonS3Stub("http://localhost:8080/gate/services/AmazonS3"); } catch (Exception e) { logger.error("Exception " + e.getMessage(), e); } }
37383940414243444546
20212223242526272829
122123124125126127128129130131132