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 sa...@apache.org on 2004/11/08 12:08:13 UTC

cvs commit: ws-axis/c/samples/client/interoptests/base InteropBaseClient.cpp

samisa      2004/11/08 03:08:13

  Modified:    c/samples/client/interoptests/base InteropBaseClient.cpp
  Log:
  Changes to demo changing trasport protocol.
  
  Revision  Changes    Path
  1.27      +2 -1      ws-axis/c/samples/client/interoptests/base/InteropBaseClient.cpp
  
  Index: InteropBaseClient.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/samples/client/interoptests/base/InteropBaseClient.cpp,v
  retrieving revision 1.26
  retrieving revision 1.27
  diff -u -r1.26 -r1.27
  --- InteropBaseClient.cpp	27 Oct 2004 13:07:00 -0000	1.26
  +++ InteropBaseClient.cpp	8 Nov 2004 11:08:12 -0000	1.27
  @@ -74,7 +74,7 @@
   	cout << endl << " Using service at " << endpoint << endl << endl;
   
   
  -    InteropTestPortType ws (endpoint);
  +    InteropTestPortType ws (endpoint, APTHTTP1_0);
   
   	//testing echoString 
   	printf ("invoking echoString...\n");
  @@ -113,6 +113,7 @@
           // Clean memory
           delete [] arrstr.m_Array;
   
  +        ws.setTransportProtocol(APTHTTP1_1);
   	// testing echoInteger 
   	printf ("invoking echoInteger...\n");
   	if (ws.echoInteger (56) == 56)