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

Examples of org.jboss.test.ws.jaxws.samples.webserviceref.EJB3Remote.echo()


      {
         InitialContext iniCtx = getInitialContext();
         EJB3Remote ejb3Remote = (EJB3Remote)iniCtx.lookup("/EJB3Client/remote");

         String helloWorld = "Hello World!";
         Object retObj = ejb3Remote.echo(helloWorld);
         assertEquals(helloWorld, retObj);
      }
      finally
      {
         undeploy("jaxws-samples-webserviceref-ejb3-client.jar");
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.