You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by ro...@apache.org on 2004/06/25 06:00:26 UTC

cvs commit: ws-axis/c/tests/client/soapHeader/test6/rpc TestClient.cpp

roshan      2004/06/24 21:00:26

  Modified:    c/tests/client/soapHeader/test6/rpc TestClient.cpp
  Log:
  minor changes
  
  Revision  Changes    Path
  1.2       +0 -8      ws-axis/c/tests/client/soapHeader/test6/rpc/TestClient.cpp
  
  Index: TestClient.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/client/soapHeader/test6/rpc/TestClient.cpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- TestClient.cpp	24 Jun 2004 07:45:02 -0000	1.1
  +++ TestClient.cpp	25 Jun 2004 04:00:26 -0000	1.2
  @@ -43,7 +43,6 @@
   	port = argv[2];
       }
       printf("Usage :\n %s <server> <port>\n\n", argv[0]);
  -    //sprintf(endpoint, "http://%s:%s/axis/base", server, port);
       //endpoint for Axis CPP sample
       sprintf(endpoint, "http://%s:%s/axis/base", server, port);
       InteropTestPortType ws(endpoint, APTHTTP);
  @@ -51,10 +50,6 @@
       /*create a header of the form:
          <SOAP-ENV:Header>
          <th:newName xmlns:th="http://ws.apache.org/axisCppTest/">
  -       <TestAuthHeader>
  -       <username>Test User</username>
  -       <password>Test Password</password>
  -       </TestAuthHeader>
          </th:newName>
          </SOAP-ENV:Header>
        */
  @@ -69,10 +64,8 @@
       //set second SOAP headers
       phb = ws.createSOAPHeaderBlock("TestHeader2",
                                      "http://ws.apache.org/axisCppTest/");
  -                                                                                                                                                                           
       phb->addChild(NULL);
   
  -
       printf("Sending Requests to end point %s \n\n", endpoint);
       printf("invoking echoString...\n");
       //testing echoString 
  @@ -91,7 +84,6 @@
           printf("successful\n");
       else
           printf("failed\n");
  -
   
       printf("Soap Header test end\n");
       return 0;