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