BusFactory.setDefaultBus(bus);
URL wsdlURL = new URL(WSDL_ADDRESS);
AsyncMessagingService ams = new AsyncMessagingService(wsdlURL, ENDPOINT_NAME);
AsyncMessaging am = ams.getAsyncMessagingImplPort();
ConnectionHelper.setKeepAliveConnection(am, true);
testInterceptors(bus);
// oneway
am.deliver("This is a test");
am.deliver("This is another test");
}