TestLogger.logger.debug("------------------------------");
TestLogger.logger.debug("Test : " + getName());
try{
String request = "hello world 2";
DocLitWrapService service = new DocLitWrapService();
DocLitWrap proxy = service.getDocLitWrapPort();
String response = proxy.echoStringWSGEN2(request);
assertTrue(response.equals(request));
TestLogger.logger.debug("------------------------------");
}catch(Exception e){
e.printStackTrace();