nagy 01/06/28 14:16:38
Modified: java/samples/interop EchoTestClient.java
Log:
Changed the call to the SOAPMappingRegistry constructor because the one which was
being called no longer exists.
Revision Changes Path
1.2 +2 -2 xml-soap/java/samples/interop/EchoTestClient.java
Index: EchoTestClient.java
===================================================================
RCS file: /home/cvs/xml-soap/java/samples/interop/EchoTestClient.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- EchoTestClient.java 2001/05/11 19:06:34 1.1
+++ EchoTestClient.java 2001/06/28 21:16:37 1.2
@@ -82,7 +82,7 @@
*/
public class EchoTestClient
{
- SOAPMappingRegistry smr = new
SOAPMappingRegistry(Constants.NS_URI_CURRENT_SCHEMA_XSD);
+ SOAPMappingRegistry smr = new SOAPMappingRegistry();
public static final String DEFAULT_URL =
"http://nagoya.apache.org:5089/soap/servlet/rpcrouter";
public static final String ACTION_URI = "http://soapinterop.org/";
@@ -225,4 +225,4 @@
e.printStackTrace();
}
}
-}
\ No newline at end of file
+}