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 2006/02/21 02:30:19 UTC

svn commit: r379306 - /webservices/axis2/trunk/c/test/xml/soap/test_soap.c

Author: samisa
Date: Mon Feb 20 17:30:18 2006
New Revision: 379306

URL: http://svn.apache.org/viewcvs?rev=379306&view=rev
Log:
Fixed the build problems

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

Modified: webservices/axis2/trunk/c/test/xml/soap/test_soap.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/test/xml/soap/test_soap.c?rev=379306&r1=379305&r2=379306&view=diff
==============================================================================
--- webservices/axis2/trunk/c/test/xml/soap/test_soap.c (original)
+++ webservices/axis2/trunk/c/test/xml/soap/test_soap.c Mon Feb 20 17:30:18 2006
@@ -174,13 +174,13 @@
     env_ns = axis2_om_namespace_create(env, "http://www.w3.org/2003/05/soap-envelope", "env");
     soap_envelope = axis2_soap_envelope_create(env, env_ns);
     
-    soap_header = axis2_soap12_header_create_with_parent(env, soap_envelope);
+    soap_header = axis2_soap_header_create_with_parent(env, soap_envelope);
     
     test_ns = axis2_om_namespace_create(env, "http://example.org/ts-tests", "test");
     role_ns = axis2_om_namespace_create(env, "http://www.w3.org/2003/05/soap-envelope/role/next","role");
 
    
-    hb1 = axis2_soap12_header_block_create_with_parent(env, "echoOk", role_ns , soap_header);
+    hb1 = axis2_soap_header_block_create_with_parent(env, "echoOk", role_ns , soap_header);
     hb_node = AXIS2_SOAP_HEADER_BLOCK_GET_BASE_NODE(hb1, env);
     hb_ele = AXIS2_OM_NODE_GET_DATA_ELEMENT(hb_node, env);