Author: nandika
Date: Mon Jan 23 20:09:31 2006
New Revision: 371798
URL: http://svn.apache.org/viewcvs?rev=371798&view=rev
Log: (empty)
Modified:
webservices/axis2/trunk/c/modules/xml/om/om_children_qname_iterator.c
webservices/axis2/trunk/c/modules/xml/soap/soap_envelope.c
webservices/axis2/trunk/c/test/xml/om/test.xml
Modified: webservices/axis2/trunk/c/modules/xml/om/om_children_qname_iterator.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/xml/om/om_children_qname_iterator.c?rev=371798&r1=371797&r2=371798&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/xml/om/om_children_qname_iterator.c (original)
+++ webservices/axis2/trunk/c/modules/xml/om/om_children_qname_iterator.c Mon Jan 23 20:09:31
2006
@@ -111,8 +111,8 @@
iterator_impl->current_child = current_child;
if(given_qname)
{
- /* iterator_impl->given_qname = AXIS2_QNAME_CLONE(given_qname, env); */
- iterator_impl->given_qname = given_qname;
+ iterator_impl->given_qname = AXIS2_QNAME_CLONE(given_qname, env);
+ /* iterator_impl->given_qname = given_qname; */
}
iterator_impl->iterator.ops->free_fn =
axis2_om_children_qname_iterator_free;
@@ -136,13 +136,11 @@
if(iterator->ops)
AXIS2_FREE((*env)->allocator, iterator->ops);
- /*
if(iterator_impl->given_qname)
{
AXIS2_QNAME_FREE(iterator_impl->given_qname, env);
iterator_impl->given_qname = NULL;
}
- */
AXIS2_FREE((*env)->allocator, iterator_impl);
return AXIS2_SUCCESS;
}
Modified: webservices/axis2/trunk/c/modules/xml/soap/soap_envelope.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/xml/soap/soap_envelope.c?rev=371798&r1=371797&r2=371798&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/xml/soap/soap_envelope.c (original)
+++ webservices/axis2/trunk/c/modules/xml/soap/soap_envelope.c Mon Jan 23 20:09:31 2006
@@ -541,8 +541,8 @@
axis2_soap_fault_t *soap_fault = NULL;
axis2_soap_body_t *soap_body = NULL;
axis2_soap_fault_code_t *fault_code = NULL;
- axis2_om_node_t *om_node = NULL;
- axis2_om_element_t *om_ele = NULL;
+ axis2_om_node_t *fault_node = NULL;
+ axis2_om_element_t *fault_ele = NULL;
axis2_om_node_t *om_node1 = NULL;
axis2_om_element_t *om_ele1 = NULL;
@@ -609,8 +609,9 @@
return AXIS2_SUCCESS;
}
-axis2_om_namespace_t* AXIS2_CALL axis2_soap_envelope_get_namespace(axis2_soap_envelope_t
*envelope,
- axis2_env_t **env)
+axis2_om_namespace_t* AXIS2_CALL
+axis2_soap_envelope_get_namespace(axis2_soap_envelope_t *envelope,
+ axis2_env_t **env)
{
axis2_soap_envelope_impl_t *envelope_impl = NULL;
AXIS2_FUNC_PARAM_CHECK(envelope, env, NULL);
Modified: webservices/axis2/trunk/c/test/xml/om/test.xml
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/test/xml/om/test.xml?rev=371798&r1=371797&r2=371798&view=diff
==============================================================================
--- webservices/axis2/trunk/c/test/xml/om/test.xml (original)
+++ webservices/axis2/trunk/c/test/xml/om/test.xml Mon Jan 23 20:09:31 2006
@@ -1,5 +1,5 @@
<?xml version="1.0" ?>
-<book xmlns:axiomc="http://ws.apache.org/axis2/c/om" xmlns:isbn="urn:ISBN:0-395-74341-6">
+<axiomc:book xmlns:axiomc="http://ws.apache.org/axis2/c/om" xmlns:isbn="urn:ISBN:0-395-74341-6">
<axiomc:title>Axis2C OM HOWTO</axiomc:title>
<isbn:number>1748491379</isbn:number>
<author title="Mr" name="Axitoc Oman"/>
@@ -9,4 +9,4 @@
This is vey good book on OM!
</p>
</notes>
-</book>
+</axiomc:book>
|