ResponderEntryPointWS wsClient = WSClientFactory.create(
ResponderEntryPointWS.class, urlStr.toString(), WS_LOGGING_ENABLED);
// Attempt to connect to the service
String echoResult = wsClient.echoTest(WS_TEST_ECHO_STRING);
logger.log(Level.INFO,
"Recieved the following from the web service: {0}", echoResult);
if (echoResult.equals(WS_TEST_ECHO_STRING))
{
logger.log(Level.INFO,