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/28 05:30:56 UTC

svn commit: r359390 - in /webservices/axis2/trunk/c: include/axis2_svc_grp.h modules/core/context/src/conf_ctx.c

Author: samisa
Date: Tue Dec 27 20:30:48 2005
New Revision: 359390

URL: http://svn.apache.org/viewcvs?rev=359390&view=rev
Log:
Fixed the TODO items and related bugs in conf context

Modified:
    webservices/axis2/trunk/c/include/axis2_svc_grp.h
    webservices/axis2/trunk/c/modules/core/context/src/conf_ctx.c

Modified: webservices/axis2/trunk/c/include/axis2_svc_grp.h
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/include/axis2_svc_grp.h?rev=359390&r1=359389&r2=359390&view=diff
==============================================================================
--- webservices/axis2/trunk/c/include/axis2_svc_grp.h (original)
+++ webservices/axis2/trunk/c/include/axis2_svc_grp.h Tue Dec 27 20:30:48 2005
@@ -256,8 +256,8 @@
 #define AXIS2_SVC_GRP_GET_MODULES(svc_grp, env) \
         (svc_grp->ops->get_modules(svc_grp, env)) 
  
-#define AXIS2_SVC_GRP_GET_SVC_GRP_CTX(svc_grp, env) \
-        (svc_grp->ops->get_svc_grp_ctx(svc_grp, env))  
+#define AXIS2_SVC_GRP_GET_SVC_GRP_CTX(svc_grp, env, parent) \
+        (svc_grp->ops->get_svc_grp_ctx(svc_grp, env, parent))  
         
         
                             

Modified: webservices/axis2/trunk/c/modules/core/context/src/conf_ctx.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/core/context/src/conf_ctx.c?rev=359390&r1=359389&r2=359390&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/core/context/src/conf_ctx.c (original)
+++ webservices/axis2/trunk/c/modules/core/context/src/conf_ctx.c Tue Dec 27 20:30:48 2005
@@ -520,7 +520,7 @@
     {
         axis2_svc_grp_t *svc_grp = NULL;
         svc_grp = AXIS2_SVC_GET_PARENT(svc, env);
-        /*TODO svc_grp_ctx = AXIS2_SVC_GRP_GET_SVC_GRP_CTX(svc_grp, env);*/
+        svc_grp_ctx = AXIS2_SVC_GRP_GET_SVC_GRP_CTX(svc_grp, env, conf_ctx);
         svc_ctx = AXIS2_SVC_GRP_CTX_GET_SVC_CTX(svc_grp_ctx, env, svc_id);
         if (!svc_ctx)
         {