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 na...@apache.org on 2005/12/22 22:58:00 UTC

svn commit: r358643 - /webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/InteropTestRound1Client.cpp

Author: nadiramra
Date: Thu Dec 22 13:57:57 2005
New Revision: 358643

URL: http://svn.apache.org/viewcvs?rev=358643&view=rev
Log:
getSize method call should be getSize(). 

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

Modified: webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/InteropTestRound1Client.cpp
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/InteropTestRound1Client.cpp?rev=358643&r1=358642&r2=358643&view=diff
==============================================================================
--- webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/InteropTestRound1Client.cpp (original)
+++ webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/InteropTestRound1Client.cpp Thu Dec 22 13:57:57 2005
@@ -206,7 +206,7 @@
     xsd__hexBinary hbResult = ws.echoHexBinary(hb);
     size = 0;
     data = hbResult.get(size);
-	if (hb.getSize == size)
+	if (hb.getSize() == size)
 	{
 		printf("successful\n");
 		printf("Returned String :\n%s\n", asciiToString((char *)data));