dims        2002/10/28 07:43:46

  Modified:    java/test/dynamic TestDynamicInvoker.java
  Log:
  Forgot to check-in the updated Test case.
  
  Revision  Changes    Path
  1.5       +4 -8      xml-axis/java/test/dynamic/TestDynamicInvoker.java
  
  Index: TestDynamicInvoker.java
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/test/dynamic/TestDynamicInvoker.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- TestDynamicInvoker.java   25 Oct 2002 19:54:27 -0000      1.4
  +++ TestDynamicInvoker.java   28 Oct 2002 15:43:46 -0000      1.5
  @@ -69,8 +69,7 @@
       public void test1() throws Exception {
           try {
               String[] args = new 
String[]{"http://www.xmethods.net/sd/2001/TemperatureService.wsdl";, "getTemp", 
"02067"};
  -            DynamicInvoker invoker = new DynamicInvoker();
  -            invoker.main(args);
  +            DynamicInvoker.main(args);
           }  catch (java.rmi.RemoteException re) {
               if (re instanceof AxisFault) {
                   AxisFault fault = (AxisFault) re;
  @@ -87,8 +86,7 @@
       public void test2() throws Exception {
           try {
               String[] args = new 
String[]{"http://services.xmethods.net/soap/urn:xmethods-delayed-quotes.wsdl";, 
"getQuote", "IBM"};
  -            DynamicInvoker invoker = new DynamicInvoker();
  -            invoker.main(args);
  +            DynamicInvoker.main(args);
           }  catch (java.rmi.RemoteException re) {
               if (re instanceof AxisFault) {
                   AxisFault fault = (AxisFault) re;
  @@ -105,8 +103,7 @@
       public void test3() throws Exception {
           try {
               String[] args = new 
String[]{"http://mssoapinterop.org/asmx/xsd/round4XSD.wsdl";, 
"echoString(Round4XSDTestSoap)", "Hello World!!!"};
  -            DynamicInvoker invoker = new DynamicInvoker();
  -            invoker.main(args);
  +            DynamicInvoker.main(args);
           }  catch (java.rmi.RemoteException re) {
               if (re instanceof AxisFault) {
                   AxisFault fault = (AxisFault) re;
  @@ -126,8 +123,7 @@
                                           "Add", 
                                           "3", 
                                           "4"};
  -            DynamicInvoker invoker = new DynamicInvoker();
  -            invoker.main(args);
  +            DynamicInvoker.main(args);
           }  catch (java.rmi.RemoteException re) {
               if (re instanceof AxisFault) {
                   AxisFault fault = (AxisFault) re;
  
  
  


Reply via email to