You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by du...@apache.org on 2005/11/29 10:38:47 UTC

svn commit: r349686 - /webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/ComplexTypeChoice2Client.cpp

Author: dushshantha
Date: Tue Nov 29 01:38:38 2005
New Revision: 349686

URL: http://svn.apache.org/viewcvs?rev=349686&view=rev
Log:
made a modification to the client/cpp/ComplexTypeChoice2Client.cpp

Modified:
    webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/ComplexTypeChoice2Client.cpp

Modified: webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/ComplexTypeChoice2Client.cpp
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/ComplexTypeChoice2Client.cpp?rev=349686&r1=349685&r2=349686&view=diff
==============================================================================
--- webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/ComplexTypeChoice2Client.cpp (original)
+++ webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/ComplexTypeChoice2Client.cpp Tue Nov 29 01:38:38 2005
@@ -14,7 +14,7 @@
 // limitations under the License.
 
 #include <axis/AxisException.hpp>
-#include "operations.hpp" 
+#include "ComplexTypeChoice.hpp" 
 
 #include <stdlib.h> // For malloc(), calloc(), strdup() and free()
 #include <iostream>
@@ -33,7 +33,7 @@
 int main(int argc, char* argv[])
 { 
 	
-  operations *ws;
+  ComplexTypeChoice *ws;
 
   char *endpoint = WSDL_DEFAULT_ENDPOINT;
   bool endpoint_set = false;
@@ -49,11 +49,11 @@
 			try {
 	  
 					if(endpoint_set) {
-					ws = new operations(endpoint, APTHTTP1_1);
+					ws = new ComplexTypeChoice(endpoint, APTHTTP1_1);
 					free(endpoint);
 					endpoint_set = false;
 					} else
-						ws = new operations();
+						ws = new ComplexTypeChoice();
 
 					aRecord* input=new aRecord(); 
 					xsd__int* fieldone=new xsd__int();