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/05/19 06:28:52 UTC

svn commit: r407704 - in /webservices/axis2/trunk/c: axiom/soap/ modules/core/clientapi/

Author: nandika
Date: Thu May 18 21:28:51 2006
New Revision: 407704

URL: http://svn.apache.org/viewvc?rev=407704&view=rev
Log:
compilation problems and warnings fixed

Modified:
    webservices/axis2/trunk/c/axiom/soap/soap_header_block.c
    webservices/axis2/trunk/c/modules/core/clientapi/call.c
    webservices/axis2/trunk/c/modules/core/clientapi/callback_recv.c
    webservices/axis2/trunk/c/modules/core/clientapi/listener_manager.c
    webservices/axis2/trunk/c/modules/core/clientapi/msg_sender.c
    webservices/axis2/trunk/c/modules/core/clientapi/op_client.c
    webservices/axis2/trunk/c/modules/core/clientapi/svc_client.c

Modified: webservices/axis2/trunk/c/axiom/soap/soap_header_block.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/axiom/soap/soap_header_block.c?rev=407704&r1=407703&r2=407704&view=diff
==============================================================================
--- webservices/axis2/trunk/c/axiom/soap/soap_header_block.c (original)
+++ webservices/axis2/trunk/c/axiom/soap/soap_header_block.c Thu May 18 21:28:51 2006
@@ -506,18 +506,18 @@
     header_node = AXIS2_OM_NODE_GET_PARENT(header_block_impl->om_ele_node, env);
     if(!header_node)
     {
-        return AXIS2_FAILURE;    
+        return NULL;    
     }
     if(AXIS2_OM_NODE_GET_NODE_TYPE(header_node, env) == AXIS2_OM_ELEMENT)
     {
         header_ele = (axis2_om_element_t*)AXIS2_OM_NODE_GET_DATA_ELEMENT(header_node, env);        
         if(!header_ele)
         {
-            return AXIS2_FAILURE;
+            return NULL;
         }
         header_ns = AXIS2_OM_ELEMENT_GET_NAMESPACE(header_ele, env, header_node); 
         if(!header_ns)
-            return AXIS2_FAILURE;
+            return NULL;
         prefix = AXIS2_OM_NAMESPACE_GET_PREFIX(header_ns, env);            
     }
     qn = axis2_qname_create(env, attr_name, soap_envelope_namespace_uri, prefix);

Modified: webservices/axis2/trunk/c/modules/core/clientapi/call.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/modules/core/clientapi/call.c?rev=407704&r1=407703&r2=407704&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/core/clientapi/call.c (original)
+++ webservices/axis2/trunk/c/modules/core/clientapi/call.c Thu May 18 21:28:51 2006
@@ -19,8 +19,8 @@
 #include <axis2_transport_receiver.h>
 #include <axis2_transport_in_desc.h>
 #include <axis2_transport_out_desc.h>
-#include <listener_manager.h>
-#include <callback_recv.h>
+#include "listener_manager.h"
+#include "callback_recv.h"
 #include <axis2_engine.h>
 #include <axis2_soap_body.h>
 #include <axis2_conf_init.h>

Modified: webservices/axis2/trunk/c/modules/core/clientapi/callback_recv.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/modules/core/clientapi/callback_recv.c?rev=407704&r1=407703&r2=407704&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/core/clientapi/callback_recv.c (original)
+++ webservices/axis2/trunk/c/modules/core/clientapi/callback_recv.c Thu May 18 21:28:51 2006
@@ -14,7 +14,7 @@
  * limitations under the License.
  */
 
-#include <callback_recv.h>
+#include "callback_recv.h"
 #include <axis2_const.h>
 #include <axis2_hash.h>
 

Modified: webservices/axis2/trunk/c/modules/core/clientapi/listener_manager.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/modules/core/clientapi/listener_manager.c?rev=407704&r1=407703&r2=407704&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/core/clientapi/listener_manager.c (original)
+++ webservices/axis2/trunk/c/modules/core/clientapi/listener_manager.c Thu May 18 21:28:51 2006
@@ -14,7 +14,7 @@
  * limitations under the License.
  */
 
-#include <listener_manager.h>
+#include "listener_manager.h"
 #include <axis2_const.h>
 #include <axis2_hash.h>
 #include <axis2_transport_receiver.h>

Modified: webservices/axis2/trunk/c/modules/core/clientapi/msg_sender.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/modules/core/clientapi/msg_sender.c?rev=407704&r1=407703&r2=407704&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/core/clientapi/msg_sender.c (original)
+++ webservices/axis2/trunk/c/modules/core/clientapi/msg_sender.c Thu May 18 21:28:51 2006
@@ -14,7 +14,7 @@
  * limitations under the License.
  */
 
-#include <axis2_msg_sender.h>
+#include "axis2_msg_sender.h"
 #include <axis2_msg_ctx.h>
 #include <axis2_svc_ctx.h>
 #include <axis2_engine.h>

Modified: webservices/axis2/trunk/c/modules/core/clientapi/op_client.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/modules/core/clientapi/op_client.c?rev=407704&r1=407703&r2=407704&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/core/clientapi/op_client.c (original)
+++ webservices/axis2/trunk/c/modules/core/clientapi/op_client.c Thu May 18 21:28:51 2006
@@ -19,9 +19,9 @@
 #include <axis2_hash.h>
 #include <axis2_mep_client.h>
 #include <axis2_uuid_gen.h>
-#include <listener_manager.h> 
+#include "listener_manager.h"
 #include <axis2_engine.h>
-#include <callback_recv.h>
+#include "callback_recv.h"
 #include <axis2_xml_reader.h>
 
 typedef struct axis2_op_client_impl

Modified: webservices/axis2/trunk/c/modules/core/clientapi/svc_client.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/modules/core/clientapi/svc_client.c?rev=407704&r1=407703&r2=407704&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/core/clientapi/svc_client.c (original)
+++ webservices/axis2/trunk/c/modules/core/clientapi/svc_client.c Thu May 18 21:28:51 2006
@@ -17,10 +17,10 @@
 #include <axis2_svc_client.h>
 #include <axis2_const.h>
 #include <axis2_hash.h>
-#include <callback_recv.h>
+#include "callback_recv.h"
 #include <axis2_soap_const.h>
 #include <axis2_soap_body.h>
-#include <listener_manager.h>
+#include "listener_manager.h"
 #include <axis2_module_desc.h>
 #include <axis2_array_list.h>
 #include <axis2_options.h>



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