Return-Path: Delivered-To: apmail-ws-axis-user-archive@www.apache.org Received: (qmail 90483 invoked from network); 30 Apr 2006 20:21:28 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 30 Apr 2006 20:21:28 -0000 Received: (qmail 36203 invoked by uid 500); 30 Apr 2006 20:21:21 -0000 Delivered-To: apmail-ws-axis-user-archive@ws.apache.org Received: (qmail 36183 invoked by uid 500); 30 Apr 2006 20:21:20 -0000 Mailing-List: contact axis-user-help@ws.apache.org; run by ezmlm Precedence: bulk Reply-To: axis-user@ws.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list axis-user@ws.apache.org Received: (qmail 36172 invoked by uid 99); 30 Apr 2006 20:21:20 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 30 Apr 2006 13:21:20 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of tungtt@gmail.com designates 64.233.162.207 as permitted sender) Received: from [64.233.162.207] (HELO nz-out-0102.google.com) (64.233.162.207) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 30 Apr 2006 13:21:19 -0700 Received: by nz-out-0102.google.com with SMTP id i1so2296302nzh for ; Sun, 30 Apr 2006 13:20:59 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=k/6103jssUQ/tAW5gxS//NpdsdyzZ9Ep84JMhH0qAgKzRqAav00J6bQY8A7I/+mQIEtoNVJ8EotJBhSTsrH/BcxEiF11xW4stMbuIMhOBspPQUGgLGtif44+tnTCcK1Z4D8eh6RjUJaG5Thtb4e+4BS+NXlN2XRfR/frDRx2yvU= Received: by 10.65.249.16 with SMTP id b16mr1113284qbs; Sun, 30 Apr 2006 13:20:59 -0700 (PDT) Received: by 10.65.237.19 with HTTP; Sun, 30 Apr 2006 13:20:59 -0700 (PDT) Message-ID: Date: Sun, 30 Apr 2006 16:20:59 -0400 From: "Tung Tran" To: axis-user@ws.apache.org Subject: [Axis2] Obtaining WS-Addressing ReferenceParameters MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: quoted-printable Content-Disposition: inline X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Hello, I'm trying to include some service-unique information as a referenceParameter of the To's EndpointReference. However I can't extract that piece of info with a handler deployed on the server side. Basically, on the client side, I do something like this: referenceParameters.put("param", "xyz"); targetEPR.setReferenceParameters(referenceParameters); options.setTo(targetEPR); sender =3D new ServiceClient(); sender.setOptions(options); sender.sendReceiveNonBlocking(payload, callback); On the server side, I deploy a handler and and try to get the SOAPHeader (from inside the handler's invoke method) with: msgContext.getEnvelope().getHeader() This header, however, is empty. I've expected that the referenceParameter above should be here. The addressing module is engaged on server. I'm not sure if I have to do anything on the client side. Any pointers to the right direction would be greatly appreciated. Thanks all in advance. Tung Tran