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 sa...@apache.org on 2006/01/16 06:01:19 UTC

svn commit: r369345 - in /webservices/axis2/trunk/c: include/axis2_soap_builder.h modules/core/phaseresolver/phase_resolver.c modules/core/transport/axis2_transport_listener.h modules/core/transport/axis2_transport_sender.h modules/xml/soap/soap_builder.c

Author: samisa
Date: Sun Jan 15 21:01:09 2006
New Revision: 369345

URL: http://svn.apache.org/viewcvs?rev=369345&view=rev
Log:
Fixed warnings and compilation problems

Modified:
    webservices/axis2/trunk/c/include/axis2_soap_builder.h
    webservices/axis2/trunk/c/modules/core/phaseresolver/phase_resolver.c
    webservices/axis2/trunk/c/modules/core/transport/axis2_transport_listener.h
    webservices/axis2/trunk/c/modules/core/transport/axis2_transport_sender.h
    webservices/axis2/trunk/c/modules/xml/soap/soap_builder.c

Modified: webservices/axis2/trunk/c/include/axis2_soap_builder.h
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/include/axis2_soap_builder.h?rev=369345&r1=369344&r2=369345&view=diff
==============================================================================
--- webservices/axis2/trunk/c/include/axis2_soap_builder.h (original)
+++ webservices/axis2/trunk/c/include/axis2_soap_builder.h Sun Jan 15 21:01:09 2006
@@ -146,4 +146,8 @@
  
 
 
-#endif /* AXIS2_SOAP_BUILDER_H */
\ No newline at end of file
+#endif /* AXIS2_SOAP_BUILDER_H */
+
+
+
+

Modified: webservices/axis2/trunk/c/modules/core/phaseresolver/phase_resolver.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/core/phaseresolver/phase_resolver.c?rev=369345&r1=369344&r2=369345&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/core/phaseresolver/phase_resolver.c (original)
+++ webservices/axis2/trunk/c/modules/core/phaseresolver/phase_resolver.c Sun Jan 15 21:01:09 2006
@@ -1057,7 +1057,6 @@
 {
     axis2_phase_resolver_impl_t *resolver_impl = NULL;
     int type = 0;
-    axis2_status_t status = AXIS2_FAILURE;
     
     resolver_impl = AXIS2_INTF_TO_IMPL(phase_resolver);
     

Modified: webservices/axis2/trunk/c/modules/core/transport/axis2_transport_listener.h
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/core/transport/axis2_transport_listener.h?rev=369345&r1=369344&r2=369345&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/core/transport/axis2_transport_listener.h (original)
+++ webservices/axis2/trunk/c/modules/core/transport/axis2_transport_listener.h Sun Jan 15 21:01:09 2006
@@ -41,6 +41,8 @@
 struct axis2_ctx;    
 typedef struct axis2_transport_listener axis2_transport_listener_t;
 typedef struct axis2_transport_listener_ops axis2_transport_listener_ops_t;
+struct axis2_conf_ctx;
+struct axis2_transport_in_desc;
 
 /** @defgroup axis2_transport_listener Transport Listener
  * @ingroup axis2_description
@@ -74,7 +76,7 @@
     axis2_status_t (AXIS2_CALL * 
     init) (axis2_transport_listener_t *transport_listener,
                                 axis2_env_t **env,
-                                struct axis2_ctx *conf_ctx,
+                                struct axis2_conf_ctx *conf_ctx,
                                 struct axis2_transport_in_desc *transport_in);
 };
 

Modified: webservices/axis2/trunk/c/modules/core/transport/axis2_transport_sender.h
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/core/transport/axis2_transport_sender.h?rev=369345&r1=369344&r2=369345&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/core/transport/axis2_transport_sender.h (original)
+++ webservices/axis2/trunk/c/modules/core/transport/axis2_transport_sender.h Sun Jan 15 21:01:09 2006
@@ -72,7 +72,7 @@
     axis2_status_t (AXIS2_CALL * 
     init) (axis2_transport_sender_t *transport_sender,
                                 axis2_env_t **env,
-                                struct axis2_ctx *conf_ctx,
+                                struct axis2_conf_ctx *conf_ctx,
                                 struct axis2_transport_out_desc *transport_out);
     /**
      * Clean up

Modified: webservices/axis2/trunk/c/modules/xml/soap/soap_builder.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/xml/soap/soap_builder.c?rev=369345&r1=369344&r2=369345&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/xml/soap/soap_builder.c (original)
+++ webservices/axis2/trunk/c/modules/xml/soap/soap_builder.c Sun Jan 15 21:01:09 2006
@@ -268,8 +268,6 @@
     if(!(builder_impl->om_builder))
         return NULL;
     
- //   value = axis2_soap_builder_next(builder, env);        
-
     while(!(builder_impl->soap_envelope) || 
         AXIS2_OM_STAX_BUILDER_IS_COMPLETE(builder_impl->om_builder, env))
     {
@@ -658,4 +656,6 @@
     AXIS2_FUNC_PARAM_CHECK(builder, env, AXIS2_FALSE);
      builder_impl = AXIS2_INTF_TO_IMPL(builder);
     return builder_impl->soap_version ;
-}                                                                                     
\ No newline at end of file
+}
+
+