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 2007/09/03 04:54:46 UTC

svn commit: r572221 - /webservices/axis2/trunk/c/axiom/test/soap/test_soap.c

Author: samisa
Date: Sun Sep  2 19:54:46 2007
New Revision: 572221

URL: http://svn.apache.org/viewvc?rev=572221&view=rev
Log:
Fixed the build break

Modified:
    webservices/axis2/trunk/c/axiom/test/soap/test_soap.c

Modified: webservices/axis2/trunk/c/axiom/test/soap/test_soap.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/axiom/test/soap/test_soap.c?rev=572221&r1=572220&r2=572221&view=diff
==============================================================================
--- webservices/axis2/trunk/c/axiom/test/soap/test_soap.c (original)
+++ webservices/axis2/trunk/c/axiom/test/soap/test_soap.c Sun Sep  2 19:54:46 2007
@@ -434,8 +434,8 @@
     soap_fault = axiom_soap_body_get_fault(soap_body, env);
 
     fault_node = axiom_soap_fault_node_create_with_parent(env, soap_fault);
-    status = axiom_soap_fault_node_set_value(soap_fault, env, "MyFaultNode");
-    node_text = axiom_soap_fault_node_get_value(soap_fault, env);
+    status = axiom_soap_fault_node_set_value(fault_node, env, "MyFaultNode");
+    node_text = axiom_soap_fault_node_get_value(fault_node, env);
     
     printf("Actual = %s Expected = %s |", node_text, "MyFaultNode");
     if (0 == strcmp(node_text, "MyFaultNode"))



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-cvs-help@ws.apache.org