Return-Path: Delivered-To: apmail-ws-sandesha-dev-archive@www.apache.org Received: (qmail 37121 invoked from network); 7 Oct 2008 09:15:25 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 7 Oct 2008 09:15:25 -0000 Received: (qmail 55208 invoked by uid 500); 7 Oct 2008 09:15:24 -0000 Delivered-To: apmail-ws-sandesha-dev-archive@ws.apache.org Received: (qmail 55148 invoked by uid 500); 7 Oct 2008 09:15:24 -0000 Mailing-List: contact sandesha-dev-help@ws.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list sandesha-dev@ws.apache.org Received: (qmail 55135 invoked by uid 500); 7 Oct 2008 09:15:24 -0000 Delivered-To: apmail-ws-sandesha-cvs@ws.apache.org Received: (qmail 55132 invoked by uid 99); 7 Oct 2008 09:15:24 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 07 Oct 2008 02:15:24 -0700 X-ASF-Spam-Status: No, hits=-1999.9 required=10.0 tests=ALL_TRUSTED,DNS_FROM_SECURITYSAGE X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 07 Oct 2008 09:14:28 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 4F71F2388886; Tue, 7 Oct 2008 02:14:34 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r702405 - in /webservices/sandesha/trunk/c: include/sandesha2_constants.h src/util/ack_mgr.c Date: Tue, 07 Oct 2008 09:14:34 -0000 To: sandesha-cvs@ws.apache.org From: damitha@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20081007091434.4F71F2388886@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: damitha Date: Tue Oct 7 02:14:33 2008 New Revision: 702405 URL: http://svn.apache.org/viewvc?rev=702405&view=rev Log: Adding rampart context to the acknowledgement message Modified: webservices/sandesha/trunk/c/include/sandesha2_constants.h webservices/sandesha/trunk/c/src/util/ack_mgr.c Modified: webservices/sandesha/trunk/c/include/sandesha2_constants.h URL: http://svn.apache.org/viewvc/webservices/sandesha/trunk/c/include/sandesha2_constants.h?rev=702405&r1=702404&r2=702405&view=diff ============================================================================== --- webservices/sandesha/trunk/c/include/sandesha2_constants.h (original) +++ webservices/sandesha/trunk/c/include/sandesha2_constants.h Tue Oct 7 02:14:33 2008 @@ -541,6 +541,7 @@ #define SANDESHA2_MODULE "sandesha2" #define SANDESHA2_ISOLATED_LAST_MSG "isolated_last_msg" #define SANDESHA2_PROPERTY_STRING "propstr" + #define RAMPART_CONTEXT "RampartContext" /** @} */ #ifdef __cplusplus } Modified: webservices/sandesha/trunk/c/src/util/ack_mgr.c URL: http://svn.apache.org/viewvc/webservices/sandesha/trunk/c/src/util/ack_mgr.c?rev=702405&r1=702404&r2=702405&view=diff ============================================================================== --- webservices/sandesha/trunk/c/src/util/ack_mgr.c (original) +++ webservices/sandesha/trunk/c/src/util/ack_mgr.c Tue Oct 7 02:14:33 2008 @@ -83,6 +83,9 @@ } ack_msg_ctx = sandesha2_utils_create_new_related_msg_ctx(env, ref_rm_msg); + property = axis2_msg_ctx_get_property(ref_msg, env, RAMPART_CONTEXT); + axis2_msg_ctx_set_property(ack_msg_ctx, env, RAMPART_CONTEXT, property); + property = axutil_property_create_with_args(env, AXIS2_SCOPE_REQUEST, AXIS2_FALSE, 0, AXIS2_VALUE_TRUE); if(property) --------------------------------------------------------------------- To unsubscribe, e-mail: sandesha-dev-unsubscribe@ws.apache.org For additional commands, e-mail: sandesha-dev-help@ws.apache.org