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