new org.apache.axis2.jaxws.samples.echo.ObjectFactory().createEchoStringInput();
echoParm.setEchoInput(input);
System.out.println(">> CLIENT: SEI Async to " + endpointURL);
// Call the service
Future<?> resp = echo.echoOperationAsync(echoParm, callbackHandler);
Thread.sleep(1000);
while (!resp.isDone()) {
// Check for timeout
if (waiting <= 0) {
System.out