1 7 package org.jboss.test.remoting.transport.servlet; 8 9 import org.jboss.test.remoting.transport.web.WebInvokerTestClient; 10 11 14 public class ServletInvokerTestClient extends WebInvokerTestClient 15 { 16 17 public String getLocatorURI() 18 { 19 return "http://localhost:8080/servlet-invoker/ServerInvokerServlet"; 21 } 22 23 public static void main(String [] args) 24 { 25 ServletInvokerTestClient client = new ServletInvokerTestClient(); 26 try 27 { 28 client.testInvocation(); 29 } 30 catch(Exception e) 31 { 32 e.printStackTrace(); 33 } 34 } 35 36 } | Popular Tags |