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/27 13:34:37 UTC

svn commit: r372824 - in /webservices/axis2/trunk/c: include/axis2_error.h modules/util/error.c

Author: sahan
Date: Fri Jan 27 04:34:29 2006
New Revision: 372824

URL: http://svn.apache.org/viewcvs?rev=372824&view=rev
Log:
Added error codes for null soap envelope

Modified:
    webservices/axis2/trunk/c/include/axis2_error.h
    webservices/axis2/trunk/c/modules/util/error.c

Modified: webservices/axis2/trunk/c/include/axis2_error.h
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/include/axis2_error.h?rev=372824&r1=372823&r2=372824&view=diff
==============================================================================
--- webservices/axis2/trunk/c/include/axis2_error.h (original)
+++ webservices/axis2/trunk/c/include/axis2_error.h Fri Jan 27 04:34:29 2006
@@ -455,6 +455,8 @@
         AXIS2_ERROR_FILE_NAME_NOT_SET,
         AXIS2_ERROR_REPOS_LISTENER_INIT_FAILED,
         AXIS2_ERROR_INVALID_STATE_DLL_DESC,
+        /* Null soap envelope in msg_ctx */
+        AXIS2_ERROR_NULL_SOAP_ENVELOPE_IN_MSG_CTX,
         /** The following has to be the last error value all the time.
             All other error codes should appear above this.
             AXIS2_ERROR_LAST is used to track the number of error codes present

Modified: webservices/axis2/trunk/c/modules/util/error.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/util/error.c?rev=372824&r1=372823&r2=372824&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/util/error.c (original)
+++ webservices/axis2/trunk/c/modules/util/error.c Fri Jan 27 04:34:29 2006
@@ -387,7 +387,8 @@
     axis2_error_messages[AXIS2_ERROR_INVALID_STATE_DLL_DESC] =
     "dll description has invalid state of not having valid dll create function, \
         of valid delete function or valid dll_handler";
-
+    axis2_error_messages[AXIS2_ERROR_NULL_SOAP_ENVELOPE_IN_MSG_CTX] =
+    "Null soap envelope in msg_ctx";
     return AXIS2_SUCCESS;
 }