Package org.jboss.test.ws.jaxws.samples.webserviceref

Examples of org.jboss.test.ws.jaxws.samples.webserviceref.TestEndpointService


   /**
    * Customize service-class-name, service-qname
    */
   public String testService1(String reqStr) throws Exception
   {
      TestEndpointService service = (TestEndpointService)iniCtx.lookup("java:comp/env/Service1");
      TestEndpoint port = service.getTestEndpointPort();
      return port.echo(reqStr);
   }
View Full Code Here


   public String testService3(String reqStr) throws Exception
   {
      TestEndpoint port = ((TestEndpointService)service3).getTestEndpointPort();
      String resStr1 = port.echo(reqStr);
     
      TestEndpointService service = (TestEndpointService)iniCtx.lookup("java:comp/env/Service3");
      port = service.getTestEndpointPort();
     
      String resStr2 = port.echo(reqStr);
     
      return resStr1 + resStr2;
   }
View Full Code Here

   {
      TestEndpoint port = service4.getTestEndpointPort();
      String resStr1 = port.echo(reqStr);
      //verifyConfig((ConfigProvider)port);
     
      TestEndpointService service = (TestEndpointService)iniCtx.lookup("java:comp/env/Service4");
      port = service.getTestEndpointPort();
      //verifyConfig((ConfigProvider)port);
     
      String resStr2 = port.echo(reqStr);
     
      return resStr1 + resStr2;
View Full Code Here

TOP

Related Classes of org.jboss.test.ws.jaxws.samples.webserviceref.TestEndpointService

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.