RE: axis 1.4 and ws-addressing

2008-03-17 Thread Erwin Reinhoud
Hello All,

Does anyone have an answer?

Thanks in advance.

Kind regards,
Erwin

-Oorspronkelijk bericht-
Van: Erwin Reinhoud 
Verzonden: donderdag 13 maart 2008 8:53
Aan: axis-user@ws.apache.org
Onderwerp: axis 1.4 and ws-addressing


Hello All,

Does anybody have a link to apply ws-addressing? I looked at the site and did a 
search but could not find it. Axis 1.4 does support ws-addressing?

Thanks in advance.

Kind regards,

Erwin

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: axis 1.4 and ws-addressing

2008-03-17 Thread Rushikesh Thakkar
Chek out http://ws.apache.org/sandesha/sandesha1.html to use WS-Addressing
with Axis 1.4

-Rushikesh

On Mon, Mar 17, 2008 at 9:53 AM, Erwin Reinhoud [EMAIL PROTECTED]
wrote:

 Hello All,

 Does anyone have an answer?

 Thanks in advance.

 Kind regards,
 Erwin

 -Oorspronkelijk bericht-
 Van: Erwin Reinhoud
 Verzonden: donderdag 13 maart 2008 8:53
 Aan: axis-user@ws.apache.org
 Onderwerp: axis 1.4 and ws-addressing


 Hello All,

 Does anybody have a link to apply ws-addressing? I looked at the site and
 did a search but could not find it. Axis 1.4 does support ws-addressing?

 Thanks in advance.

 Kind regards,

 Erwin

 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]


 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]




Re: axis 1.4 and ws-addressing

2008-03-17 Thread Doug Davis
Actually, WSA is supported natively in the latest version. See the sample:
http://svn.apache.org/viewvc/webservices/axis/trunk/java/samples/wsa/

thanks
-Doug
__
STSM  |  Web Services Architect  |  IBM Software Group
(919) 254-6905  |  IBM T/L 444-6905  |  [EMAIL PROTECTED]



Rushikesh Thakkar [EMAIL PROTECTED] 
03/17/2008 10:16 AM
Please respond to
axis-user@ws.apache.org


To
axis-user@ws.apache.org
cc

Subject
Re: axis 1.4 and ws-addressing







Chek out http://ws.apache.org/sandesha/sandesha1.html to use WS-Addressing 
with Axis 1.4

-Rushikesh

On Mon, Mar 17, 2008 at 9:53 AM, Erwin Reinhoud [EMAIL PROTECTED] 
wrote:
Hello All,

Does anyone have an answer?

Thanks in advance.

Kind regards,
Erwin

-Oorspronkelijk bericht-
Van: Erwin Reinhoud
Verzonden: donderdag 13 maart 2008 8:53
Aan: axis-user@ws.apache.org
Onderwerp: axis 1.4 and ws-addressing


Hello All,

Does anybody have a link to apply ws-addressing? I looked at the site and 
did a search but could not find it. Axis 1.4 does support ws-addressing?

Thanks in advance.

Kind regards,

Erwin

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




RE: [Axis 1.4 WSS4J] - WS-Addressing

2007-02-14 Thread Alick Buckley
Hi Jose,
 
I have used WS-Addressing and WS-Security with Axis 1.4 as an Agent to talk
to a .NET server.
 
I used WSSJ4 1.5.1, XMLSecurity 1.4 and the addressing-SNAPSHOT.jar from
Sandesha 1.0
 
WS-Addressing is using the 2004/08 namespace and .NET expects the older
2004/03 namespace, so use the following to change it.
stub._setProperty (
org.apache.axis.message.addressing.Constants.ENV_ADDRESSING_NAMESPACE_URI,
org.apache.axis.message.addressing.Constants.NS_URI_ADDRESSING_2004_03 ) ;

The biggest headache is the SOAP message failing the .NET policy checks and
.NET not telling you what it is complaining about.

==

 
deployment name=defaultClientConfig xmlns=
http://xml.apache.org/axis/wsdd/ http://xml.apache.org/axis/wsdd/ 
xmlns:java= http://xml.apache.org/axis/wsdd/providers/java
http://xml.apache.org/axis/wsdd/providers/java 
 
 globalConfiguration
   parameter name=disablePrettyXML value=true/
   parameter name=addressing.sendReplyTo value=true/
   parameter name=enableNamespacePrefixOptimization value=false/
 /globalConfiguration
 
 service name=XXPort
   requestFlow
 handler
type=java:org.apache.axis.message.addressing.handler.AddressingHandler
   !-- Reference elements are added in the same order --
   parameter name=referencePropertyNames
 
value={Element}{http://schemas.xmlsoap.org/ws/2004/03/addressing}Action;
 
{Element}{http://schemas.xmlsoap.org/ws/2004/03/addressing}MessageID;
 
{Element}{http://schemas.xmlsoap.org/ws/2004/03/addressing}ReplyTo;
 
{Element}{http://schemas.xmlsoap.org/ws/2004/03/addressing}To;
 
{Element}{http://schemas.xmlsoap.org/ws/2004/03/addressing}From/
 /handler
 handler type=java:org.apache.ws.axis.security.WSDoAllSender
   !-- action order is important, do Timestamp then Signature if
signing Timestamp --
   parameter name=action value=Timestamp Signature/
   parameter name=user value=/
   parameter name=passwordCallbackClass
value=com.acme.security.PasswordCallback/
   parameter name=signatureKeyIdentifier value=DirectReference/
   parameter name=signaturePropFile value=security.properties/
   parameter name=timeToLive value=300/
   parameter name=precisionInMilliseconds value=false /
   !-- Reference elements are added in the same order --
   parameter name=signatureParts
 
value={Element}{http://schemas.xmlsoap.org/ws/2004/03/addressing}Action;
 
{Element}{http://schemas.xmlsoap.org/ws/2004/03/addressing}MessageID;
 
{Element}{http://schemas.xmlsoap.org/ws/2004/03/addressing}ReplyTo;
 
{Element}{http://schemas.xmlsoap.org/ws/2004/03/addressing}To;
 
{Element}{http://schemas.xmlsoap.org/ws/2004/03/addressing}From;
 
{Element}{http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity
-utility-1.0.xsd}Timestamp;
 
{Element}{http://schemas.xmlsoap.org/soap/envelope/}Body/
 /handler
   /requestFlow
 /service
 
 transport name=http
pivot=java:org.apache.axis.transport.http.HTTPSender/
 transport name=java
pivot=java:org.apache.axis.transport.java.JavaSender/
 transport name=local
pivot=java:org.apache.axis.transport.local.LocalSender/
 
/deployment

==

-Original Message-
From: José Ferreiro [mailto:[EMAIL PROTECTED]
Sent: Thursday, 15 February 2007 7:22 AM
To: axis-user@ws.apache.org; wss4j-dev@ws.apache.org
Subject: [Axis 1.4  WSS4J] - WS-Addressing


Hello,
 
Did someone try to implement WS-addressing using Axis 1.4 and WSS4J?
I am working in a prototype for interoperability ( C#, .net 2.0, and WSE 3.0
).
 
Any coments, suggestions are welcome.
 
Regards

-- 
José Ferreiro
EPFL Communication Systems engineer
ing.sys.com.dipl.EPFL