You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by sh...@apache.org on 2008/07/22 14:27:10 UTC

svn commit: r678736 - /webservices/axis2/trunk/c/src/core/description/svc.c

Author: shankar
Date: Tue Jul 22 05:27:09 2008
New Revision: 678736

URL: http://svn.apache.org/viewvc?rev=678736&view=rev
Log:
reverting last modification.

Modified:
    webservices/axis2/trunk/c/src/core/description/svc.c

Modified: webservices/axis2/trunk/c/src/core/description/svc.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/src/core/description/svc.c?rev=678736&r1=678735&r2=678736&view=diff
==============================================================================
--- webservices/axis2/trunk/c/src/core/description/svc.c (original)
+++ webservices/axis2/trunk/c/src/core/description/svc.c Tue Jul 22 05:27:09 2008
@@ -1276,14 +1276,8 @@
     AXIS2_PARAM_CHECK(env->error, mapping_key, AXIS2_FAILURE);
     AXIS2_PARAM_CHECK(env->error, op_desc, AXIS2_FAILURE);
 
-    /* If service defines the operation, then we should not override with module level 
-     * operation. Module operations are global. If any setting to be modified, those operations
-     * can be defined in service */
-    if(!axutil_hash_get(svc->op_action_map, mapping_key, AXIS2_HASH_KEY_STRING))
-    {
-        axutil_hash_set(svc->op_action_map, axutil_strdup(env, mapping_key), 
+    axutil_hash_set(svc->op_action_map, axutil_strdup(env, mapping_key), 
             AXIS2_HASH_KEY_STRING, op_desc);
-    }
     return AXIS2_SUCCESS;
 }