View Javadoc

1   package org.codehaus.xfire.test;
2   
3   import org.codehaus.xfire.service.Service;
4   import org.codehaus.xfire.transport.http.SoapHttpTransport;
5   
6   /***
7    * TestHttpTransport
8    * 
9    * @author <a href="mailto:dan@envoisolutions.com">Dan Diephouse</a>
10   */
11  public class TestHttpTransport
12      extends SoapHttpTransport
13  {
14      public String getServiceURL( Service service )
15      {
16          return "http://localhost/services/" + service.getName();
17  	}
18  }