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 na...@apache.org on 2006/05/09 03:13:07 UTC

svn commit: r405261 - /webservices/axis/trunk/c/tests/auto_build/testcases/client/c/CommonClientTestCode.h

Author: nadiramra
Date: Mon May  8 18:13:05 2006
New Revision: 405261

URL: http://svn.apache.org/viewcvs?rev=405261&view=rev
Log:
C support fixes/enhancements. Testcases for C bindings.

Modified:
    webservices/axis/trunk/c/tests/auto_build/testcases/client/c/CommonClientTestCode.h

Modified: webservices/axis/trunk/c/tests/auto_build/testcases/client/c/CommonClientTestCode.h
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/c/tests/auto_build/testcases/client/c/CommonClientTestCode.h?rev=405261&r1=405260&r2=405261&view=diff
==============================================================================
--- webservices/axis/trunk/c/tests/auto_build/testcases/client/c/CommonClientTestCode.h (original)
+++ webservices/axis/trunk/c/tests/auto_build/testcases/client/c/CommonClientTestCode.h Mon May  8 18:13:05 2006
@@ -149,8 +149,7 @@
 void exceptionHandler(int errorCode, const char *errorString)
 {
     exceptionOccurred = C_TRUE;    
-    printf("TEST EXCEPTION HANDLER: ERROR-CODE=%d, ERROR-STRING=%s\n", 
-           errorCode, errorString);
+    printf("AxisException : %s\n", errorString);
 }
 
 #endif