tomj 2002/11/06 09:23:17 Modified: java/test/wsdl/interop4/groupH/simpleDocLit SimpleDocLitServiceTestCase.java java/test/wsdl/interop4/groupH/complexRPCenc ComplexRpcEncServiceTestCase.java java/test/wsdl/interop4/groupH/complexDocLit ComplexDocLitServiceTestCase.java Log: Fix a bug which prevented the command line URL from getting used. This means that the few servers (.NET and Sun RI) that I tested these three clients against actually tested against OUR server. Major Bummer. Revision Changes Path 1.3 +7 -7 xml-axis/java/test/wsdl/interop4/groupH/simpleDocLit/SimpleDocLitServiceTestCase.java Index: SimpleDocLitServiceTestCase.java =================================================================== RCS file: /home/cvs/xml-axis/java/test/wsdl/interop4/groupH/simpleDocLit/SimpleDocLitServiceTestCase.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- SimpleDocLitServiceTestCase.java 8 Oct 2002 03:31:35 -0000 1.2 +++ SimpleDocLitServiceTestCase.java 6 Nov 2002 17:23:17 -0000 1.3 @@ -32,7 +32,7 @@ public void test1SimpleDocLitPortEchoEmptyFault() throws Exception { SimpleDocLitPortType binding; try { - binding = new SimpleDocLitServiceLocator().getSimpleDocLitPort(); + binding = new SimpleDocLitServiceLocator().getSimpleDocLitPort(url); } catch (javax.xml.rpc.ServiceException jre) { if(jre.getLinkedCause()!=null) @@ -55,7 +55,7 @@ public void test2SimpleDocLitPortEchoStringFault() throws Exception { SimpleDocLitPortType binding; try { - binding = new SimpleDocLitServiceLocator().getSimpleDocLitPort(); + binding = new SimpleDocLitServiceLocator().getSimpleDocLitPort(url); } catch (javax.xml.rpc.ServiceException jre) { if(jre.getLinkedCause()!=null) @@ -79,7 +79,7 @@ public void test3SimpleDocLitPortEchoIntArrayFault() throws Exception { SimpleDocLitPortType binding; try { - binding = new SimpleDocLitServiceLocator().getSimpleDocLitPort(); + binding = new SimpleDocLitServiceLocator().getSimpleDocLitPort(url); } catch (javax.xml.rpc.ServiceException jre) { if(jre.getLinkedCause()!=null) @@ -108,7 +108,7 @@ public void test4SimpleDocLitPortEchoMultipleFaults1() throws Exception { SimpleDocLitPortType binding; try { - binding = new SimpleDocLitServiceLocator().getSimpleDocLitPort(); + binding = new SimpleDocLitServiceLocator().getSimpleDocLitPort(url); } catch (javax.xml.rpc.ServiceException jre) { if(jre.getLinkedCause()!=null) @@ -154,7 +154,7 @@ public void test5SimpleDocLitPortEchoMultipleFaults2() throws Exception { SimpleDocLitPortType binding; try { - binding = new SimpleDocLitServiceLocator().getSimpleDocLitPort(); + binding = new SimpleDocLitServiceLocator().getSimpleDocLitPort(url); } catch (javax.xml.rpc.ServiceException jre) { if(jre.getLinkedCause()!=null) @@ -203,7 +203,7 @@ public void test6SimpleDocLitPortEchoMultipleFaults3() throws Exception { SimpleDocLitPortType binding; try { - binding = new SimpleDocLitServiceLocator().getSimpleDocLitPort(); + binding = new SimpleDocLitServiceLocator().getSimpleDocLitPort(url); } catch (javax.xml.rpc.ServiceException jre) { if(jre.getLinkedCause()!=null) @@ -242,7 +242,7 @@ public void test7SimpleDocLitPortEchoMultipleFaults4() throws Exception { SimpleDocLitPortType binding; try { - binding = new SimpleDocLitServiceLocator().getSimpleDocLitPort(); + binding = new SimpleDocLitServiceLocator().getSimpleDocLitPort(url); } catch (javax.xml.rpc.ServiceException jre) { if(jre.getLinkedCause()!=null) 1.3 +5 -5 xml-axis/java/test/wsdl/interop4/groupH/complexRPCenc/ComplexRpcEncServiceTestCase.java Index: ComplexRpcEncServiceTestCase.java =================================================================== RCS file: /home/cvs/xml-axis/java/test/wsdl/interop4/groupH/complexRPCenc/ComplexRpcEncServiceTestCase.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- ComplexRpcEncServiceTestCase.java 11 Oct 2002 23:24:54 -0000 1.2 +++ ComplexRpcEncServiceTestCase.java 6 Nov 2002 17:23:17 -0000 1.3 @@ -32,7 +32,7 @@ public void test1ComplexRpcEncPortEchoSOAPStructFault() throws Exception { test.wsdl.interop4.groupH.complexRPCenc.ComplexRpcEncPortType binding; try { - binding = new test.wsdl.interop4.groupH.complexRPCenc.ComplexRpcEncServiceLocator().getComplexRpcEncPort(); + binding = new test.wsdl.interop4.groupH.complexRPCenc.ComplexRpcEncServiceLocator().getComplexRpcEncPort(url); } catch (javax.xml.rpc.ServiceException jre) { if(jre.getLinkedCause()!=null) @@ -62,7 +62,7 @@ public void test2ComplexRpcEncPortEchoBaseStructFault() throws Exception { test.wsdl.interop4.groupH.complexRPCenc.ComplexRpcEncPortType binding; try { - binding = new test.wsdl.interop4.groupH.complexRPCenc.ComplexRpcEncServiceLocator().getComplexRpcEncPort(); + binding = new test.wsdl.interop4.groupH.complexRPCenc.ComplexRpcEncServiceLocator().getComplexRpcEncPort(url); } catch (javax.xml.rpc.ServiceException jre) { if(jre.getLinkedCause()!=null) @@ -87,7 +87,7 @@ public void test3ComplexRpcEncPortEchoExtendedStructFault() throws Exception { test.wsdl.interop4.groupH.complexRPCenc.ComplexRpcEncPortType binding; try { - binding = new test.wsdl.interop4.groupH.complexRPCenc.ComplexRpcEncServiceLocator().getComplexRpcEncPort(); + binding = new test.wsdl.interop4.groupH.complexRPCenc.ComplexRpcEncServiceLocator().getComplexRpcEncPort(url); } catch (javax.xml.rpc.ServiceException jre) { if(jre.getLinkedCause()!=null) @@ -118,7 +118,7 @@ public void test4ComplexRpcEncPortEchoMultipleFaults1() throws Exception { test.wsdl.interop4.groupH.complexRPCenc.ComplexRpcEncPortType binding; try { - binding = new test.wsdl.interop4.groupH.complexRPCenc.ComplexRpcEncServiceLocator().getComplexRpcEncPort(); + binding = new test.wsdl.interop4.groupH.complexRPCenc.ComplexRpcEncServiceLocator().getComplexRpcEncPort(url); } catch (javax.xml.rpc.ServiceException jre) { if(jre.getLinkedCause()!=null) @@ -158,7 +158,7 @@ public void test5ComplexRpcEncPortEchoMultipleFaults2() throws Exception { test.wsdl.interop4.groupH.complexRPCenc.ComplexRpcEncPortType binding; try { - binding = new test.wsdl.interop4.groupH.complexRPCenc.ComplexRpcEncServiceLocator().getComplexRpcEncPort(); + binding = new test.wsdl.interop4.groupH.complexRPCenc.ComplexRpcEncServiceLocator().getComplexRpcEncPort(url); } catch (javax.xml.rpc.ServiceException jre) { if(jre.getLinkedCause()!=null) 1.3 +5 -5 xml-axis/java/test/wsdl/interop4/groupH/complexDocLit/ComplexDocLitServiceTestCase.java Index: ComplexDocLitServiceTestCase.java =================================================================== RCS file: /home/cvs/xml-axis/java/test/wsdl/interop4/groupH/complexDocLit/ComplexDocLitServiceTestCase.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- ComplexDocLitServiceTestCase.java 8 Oct 2002 03:31:34 -0000 1.2 +++ ComplexDocLitServiceTestCase.java 6 Nov 2002 17:23:17 -0000 1.3 @@ -32,7 +32,7 @@ public void test1ComplexDocLitPortEchoSOAPStructFault() throws Exception { ComplexDocLitPortType binding; try { - binding = new ComplexDocLitServiceLocator().getComplexDocLitPort(); + binding = new ComplexDocLitServiceLocator().getComplexDocLitPort(url); } catch (javax.xml.rpc.ServiceException jre) { if(jre.getLinkedCause()!=null) @@ -61,7 +61,7 @@ public void test2ComplexDocLitPortEchoBaseStructFault() throws Exception { ComplexDocLitPortType binding; try { - binding = new ComplexDocLitServiceLocator().getComplexDocLitPort(); + binding = new ComplexDocLitServiceLocator().getComplexDocLitPort(url); } catch (javax.xml.rpc.ServiceException jre) { if(jre.getLinkedCause()!=null) @@ -90,7 +90,7 @@ public void test3ComplexDocLitPortEchoExtendedStructFault() throws Exception { ComplexDocLitPortType binding; try { - binding = new ComplexDocLitServiceLocator().getComplexDocLitPort(); + binding = new ComplexDocLitServiceLocator().getComplexDocLitPort(url); } catch (javax.xml.rpc.ServiceException jre) { if(jre.getLinkedCause()!=null) @@ -127,7 +127,7 @@ public void test4ComplexDocLitPortEchoMultipleFaults1() throws Exception { ComplexDocLitPortType binding; try { - binding = new ComplexDocLitServiceLocator().getComplexDocLitPort(); + binding = new ComplexDocLitServiceLocator().getComplexDocLitPort(url); } catch (javax.xml.rpc.ServiceException jre) { if(jre.getLinkedCause()!=null) @@ -179,7 +179,7 @@ public void test5ComplexDocLitPortEchoMultipleFaults2() throws Exception { ComplexDocLitPortType binding; try { - binding = new ComplexDocLitServiceLocator().getComplexDocLitPort(); + binding = new ComplexDocLitServiceLocator().getComplexDocLitPort(url); } catch (javax.xml.rpc.ServiceException jre) { if(jre.getLinkedCause()!=null)