try {
Options options = new Options(args);
String endpointURL = options.getURL();
Service service = new Service();
Call call = (Call) service.createCall();
call.setTargetEndpointAddress( new java.net.URL(endpointURL) );
call.setOperationName( new QName("LogTestService", "testMethod") );
String res = (String) call.invoke( new Object[] {} );
System.out.println( res );
} catch (Exception e) {
System.err.println(e.toString());
}