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 2005/12/14 03:06:04 UTC

svn commit: r356705 - /webservices/axis2/trunk/c/modules/core/context/src/svc_ctx.c

Author: samisa
Date: Tue Dec 13 18:05:58 2005
New Revision: 356705

URL: http://svn.apache.org/viewcvs?rev=356705&view=rev
Log:
Removed comments due to dependancie.

Modified:
    webservices/axis2/trunk/c/modules/core/context/src/svc_ctx.c

Modified: webservices/axis2/trunk/c/modules/core/context/src/svc_ctx.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/core/context/src/svc_ctx.c?rev=356705&r1=356704&r2=356705&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/core/context/src/svc_ctx.c (original)
+++ webservices/axis2/trunk/c/modules/core/context/src/svc_ctx.c Tue Dec 13 18:05:58 2005
@@ -15,6 +15,7 @@
  */
 
 #include <axis2_svc_ctx.h>
+#include <axis2_conf_ctx.h>
 #include <axis2.h>
 #include <axis2_hash.h>
 
@@ -209,7 +210,7 @@
                                             axis2_env_t **env) 
 {
     AXIS2_FUNC_PARAM_CHECK(svc_ctx, env, NULL);
-    return NULL; /*(struct axis2_conf_ctx *) AXIS2_SVC_GRP_CTX_GET_PARENT(AXIS2_INTF_TO_IMPL(svc_ctx)->parent, env);*/
+    return AXIS2_SVC_GRP_CTX_GET_PARENT(AXIS2_INTF_TO_IMPL(svc_ctx)->parent, env);
 }
 
 axis2_op_ctx_t* AXIS2_CALL axis2_svc_ctx_create_op_ctx(struct axis2_svc_ctx *svc_ctx, 
@@ -224,8 +225,8 @@
     
     if (svc_ctx_impl->svc)
     {
-        /*op = AXIS2_SVC_GET_OP_WITH_QNAME(svc_ctx_impl->svc, env, qname);
-        return axis2_op_ctx_create(env, op, svc_ctx);*/
+        op = AXIS2_SVC_GET_OP_WITH_QNAME(svc_ctx_impl->svc, env, qname);
+        return axis2_op_ctx_create(env, op, svc_ctx);
     }
     
     return NULL;