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/11 17:25:57 UTC

svn commit: r368056 - in /webservices/axis2/trunk/c/include: axis2_error.h axis2_http_worker.h axis2_simple_http_svr_conn.h

Author: samisa
Date: Wed Jan 11 08:25:52 2006
New Revision: 368056

URL: http://svn.apache.org/viewcvs?rev=368056&view=rev
Log:
Added functionality

Modified:
    webservices/axis2/trunk/c/include/axis2_error.h
    webservices/axis2/trunk/c/include/axis2_http_worker.h
    webservices/axis2/trunk/c/include/axis2_simple_http_svr_conn.h

Modified: webservices/axis2/trunk/c/include/axis2_error.h
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/include/axis2_error.h?rev=368056&r1=368055&r2=368056&view=diff
==============================================================================
--- webservices/axis2/trunk/c/include/axis2_error.h (original)
+++ webservices/axis2/trunk/c/include/axis2_error.h Wed Jan 11 08:25:52 2006
@@ -380,7 +380,9 @@
         /* Invalid messge addition , operation context completed */
         AXIS2_ERROR_INVALID_MESSAGE_ADDITION,
         
-        AXIS2_ERROR_INVALID_SOAP_NAMESPACE_URI
+        AXIS2_ERROR_INVALID_SOAP_NAMESPACE_URI,
+        /* Error in writing the response in response writer */
+        AXIS2_ERROR_WRITING_RESPONSE
     };
 
 /** @} */

Modified: webservices/axis2/trunk/c/include/axis2_http_worker.h
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/include/axis2_http_worker.h?rev=368056&r1=368055&r2=368056&view=diff
==============================================================================
--- webservices/axis2/trunk/c/include/axis2_http_worker.h (original)
+++ webservices/axis2/trunk/c/include/axis2_http_worker.h Wed Jan 11 08:25:52 2006
@@ -30,6 +30,7 @@
 #include <axis2_http_simple_response.h>
 #include <axis2_http_simple_request.h>
 #include <axis2_conf_ctx.h>
+#include <axis2_http_worker.h>
 
 
 #ifdef __cplusplus

Modified: webservices/axis2/trunk/c/include/axis2_simple_http_svr_conn.h
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/include/axis2_simple_http_svr_conn.h?rev=368056&r1=368055&r2=368056&view=diff
==============================================================================
--- webservices/axis2/trunk/c/include/axis2_simple_http_svr_conn.h (original)
+++ webservices/axis2/trunk/c/include/axis2_simple_http_svr_conn.h Wed Jan 11 08:25:52 2006
@@ -72,7 +72,7 @@
         axis2_status_t (AXIS2_CALL *write_response)
                         (axis2_simple_http_svr_conn_t *svr_conn, 
                         axis2_env_t **env, 
-                        const axis2_http_simple_response_t *response);
+                        axis2_http_simple_response_t *response);
         int (AXIS2_CALL *get_snd_timeout) 
                         (axis2_simple_http_svr_conn_t *svr_conn, 
                         axis2_env_t **env);