Return-Path: Delivered-To: apmail-ws-axis-dev-archive@www.apache.org Received: (qmail 61000 invoked from network); 25 May 2007 09:31:58 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 25 May 2007 09:31:58 -0000 Received: (qmail 47441 invoked by uid 500); 25 May 2007 09:32:03 -0000 Delivered-To: apmail-ws-axis-dev-archive@ws.apache.org Received: (qmail 47340 invoked by uid 500); 25 May 2007 09:32:02 -0000 Mailing-List: contact axis-cvs-help@ws.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list axis-cvs@ws.apache.org Received: (qmail 47329 invoked by uid 500); 25 May 2007 09:32:02 -0000 Delivered-To: apmail-ws-axis2-cvs@ws.apache.org Received: (qmail 47326 invoked by uid 99); 25 May 2007 09:32:02 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 25 May 2007 02:32:02 -0700 X-ASF-Spam-Status: No, hits=-99.5 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 25 May 2007 02:31:57 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id E59DE1A981A; Fri, 25 May 2007 02:31:36 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r541597 - in /webservices/axis2/scratch/c/neethi/rampart/src/util: rampart_context.c rampart_engine.c Date: Fri, 25 May 2007 09:31:36 -0000 To: axis2-cvs@ws.apache.org From: manjula@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20070525093136.E59DE1A981A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: manjula Date: Fri May 25 02:31:33 2007 New Revision: 541597 URL: http://svn.apache.org/viewvc?view=rev&rev=541597 Log: Adding replay detection updates. Modified: webservices/axis2/scratch/c/neethi/rampart/src/util/rampart_context.c webservices/axis2/scratch/c/neethi/rampart/src/util/rampart_engine.c Modified: webservices/axis2/scratch/c/neethi/rampart/src/util/rampart_context.c URL: http://svn.apache.org/viewvc/webservices/axis2/scratch/c/neethi/rampart/src/util/rampart_context.c?view=diff&rev=541597&r1=541596&r2=541597 ============================================================================== --- webservices/axis2/scratch/c/neethi/rampart/src/util/rampart_context.c (original) +++ webservices/axis2/scratch/c/neethi/rampart/src/util/rampart_context.c Fri May 25 02:31:33 2007 @@ -1416,7 +1416,7 @@ if(!config) return AXIS2_FAILURE; - /*rd_val = rp_rampart_config_get_rd_val(config,env);*/ + rd_val = rp_rampart_config_get_rd_val(config,env); rampart_context->rd_val = rd_val; return AXIS2_SUCCESS; Modified: webservices/axis2/scratch/c/neethi/rampart/src/util/rampart_engine.c URL: http://svn.apache.org/viewvc/webservices/axis2/scratch/c/neethi/rampart/src/util/rampart_engine.c?view=diff&rev=541597&r1=541596&r2=541597 ============================================================================== --- webservices/axis2/scratch/c/neethi/rampart/src/util/rampart_engine.c (original) +++ webservices/axis2/scratch/c/neethi/rampart/src/util/rampart_engine.c Fri May 25 02:31:33 2007 @@ -57,8 +57,25 @@ axis2_status_t status = AXIS2_SUCCESS; axis2_op_t *op = NULL; axis2_msg_t *msg = NULL; + /*axis2_conf_t *conf = NULL; + struct axis2_conf_ctx *conf_ctx = NULL; + */ + + /* + conf_ctx = axis2_msg_ctx_get_conf_ctx(msg_ctx,env); + if(!conf_ctx) + { + AXIS2_LOG_INFO(env->log, "[rampart][rhu] Conf context is NULL "); + return NULL; + } + conf = axis2_conf_ctx_get_conf(conf_ctx, env); + if(!conf) + { + AXIS2_LOG_INFO(env->log, "[rampart][rhu] Cannot get the axis2 conf from conf context. "); + return NULL; + } + */ - svc = axis2_msg_ctx_get_svc(msg_ctx,env); if(!svc) { --------------------------------------------------------------------- To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org For additional commands, e-mail: axis-cvs-help@ws.apache.org