You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by na...@apache.org on 2006/01/23 07:20:57 UTC

svn commit: r371469 - in /webservices/axis2/trunk/c: modules/xml/om/om_node.c modules/xml/om/om_stax_builder.c modules/xml/soap/soap_envelope.c test/xml/soap/test_soap.c

Author: nandika
Date: Sun Jan 22 22:20:46 2006
New Revision: 371469

URL: http://svn.apache.org/viewcvs?rev=371469&view=rev
Log: (empty)

Modified:
    webservices/axis2/trunk/c/modules/xml/om/om_node.c
    webservices/axis2/trunk/c/modules/xml/om/om_stax_builder.c
    webservices/axis2/trunk/c/modules/xml/soap/soap_envelope.c
    webservices/axis2/trunk/c/test/xml/soap/test_soap.c

Modified: webservices/axis2/trunk/c/modules/xml/om/om_node.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/xml/om/om_node.c?rev=371469&r1=371468&r2=371469&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/xml/om/om_node.c (original)
+++ webservices/axis2/trunk/c/modules/xml/om/om_node.c Sun Jan 22 22:20:46 2006
@@ -596,7 +596,7 @@
     om_node_impl = AXIS2_INTF_TO_IMPL(om_node);
     /**********************************************************/
     while(!(om_node_impl->first_child) && !(om_node_impl->done) 
-        && om_node_impl->builder && !(AXIS2_OM_STAX_BUILDER_IS_COMPLETE(om_node_impl->builder, env)))
+        && om_node_impl->builder)
     {
         AXIS2_OM_STAX_BUILDER_NEXT_WITH_TOKEN(om_node_impl->builder, env);
     }
@@ -630,8 +630,7 @@
     om_node_impl = AXIS2_INTF_TO_IMPL(om_node);
     /*****************************************************/
     while(!(om_node_impl->next_sibling) && om_node_impl->parent &&
-    om_node_impl->builder && !(AXIS2_OM_NODE_GET_BUILD_STATUS(om_node_impl->parent, env)) && 
-        !(AXIS2_OM_STAX_BUILDER_IS_COMPLETE(om_node_impl->builder, env)))
+    om_node_impl->builder && !(AXIS2_OM_NODE_GET_BUILD_STATUS(om_node_impl->parent, env)))
     {
         AXIS2_OM_STAX_BUILDER_NEXT_WITH_TOKEN(om_node_impl->builder, env);
     }

Modified: webservices/axis2/trunk/c/modules/xml/om/om_stax_builder.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/xml/om/om_stax_builder.c?rev=371469&r1=371468&r2=371469&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/xml/om/om_stax_builder.c (original)
+++ webservices/axis2/trunk/c/modules/xml/om/om_stax_builder.c Sun Jan 22 22:20:46 2006
@@ -900,7 +900,7 @@
 
         if(token == -1)
         {
-            builder_impl->done = AXIS2_TRUE;
+          /*  builder_impl->done = AXIS2_TRUE; */
             return -1;
         }
                 

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=371469&r1=371468&r2=371469&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/xml/soap/soap_envelope.c (original)
+++ webservices/axis2/trunk/c/modules/xml/soap/soap_envelope.c Sun Jan 22 22:20:46 2006
@@ -502,7 +502,6 @@
                 return NULL;            
             }
         }               
-    
     }
     */
     return envelope_impl->body;

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=371469&r1=371468&r2=371469&view=diff
==============================================================================
--- webservices/axis2/trunk/c/test/xml/soap/test_soap.c (original)
+++ webservices/axis2/trunk/c/test/xml/soap/test_soap.c Sun Jan 22 22:20:46 2006
@@ -91,7 +91,7 @@
           
     om_node = AXIS2_SOAP_ENVELOPE_GET_BASE_NODE(soap_envelope, env);
     printnode(om_node, env);
-    /*
+
     soap_header = AXIS2_SOAP_ENVELOPE_GET_HEADER(soap_envelope, env);
     if(soap_header)
     {
@@ -127,7 +127,6 @@
         return AXIS2_FAILURE;
     }
     
-    */
 
     while(!(AXIS2_OM_NODE_GET_BUILD_STATUS(om_node, env)) && !(AXIS2_OM_STAX_BUILDER_IS_COMPLETE(om_builder, env)))
     {