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));