Questions tagged [ws-addressing]

Web Services Addressing (WS-Addressing) is a specification of transport-neutral mechanism that allows web services to communicate addressing information.

Web Services Addressing (WS-Addressing) is a specification of transport-neutral mechanism that allows web services to communicate addressing information.

More Info

98 questions
3
votes
1 answer

WS-Addressing ReplyTo for callbacks in asynchronous bpel-processes

I have an asynchronous bpel-processes that invokes a cllback-service on the client to transmit its response. At the moment, I statically defined the client's endpoint in the corresponding wsdl-file and everything works fine. Now I am trying to have…
Simon
  • 3,509
  • 18
  • 21
3
votes
2 answers

How do I set the WS-Addressing MessageId header when using CXF with Apache Camel?

I'm invoking a web service that requires WS-Addressing SOAP headers. I'm using Apache Camel with CXF to invoke the web service. When I configure the CXF endpoint with the web service's WSDL, it's smart enough to automatically add WS-Adressing SOAP…
DavidS
  • 5,022
  • 2
  • 28
  • 55
3
votes
2 answers

WS Addressing and Multiple "ReplyTo"

Please any one clarify me WS Addressing in WCF does support the multiple ReplyTo or not?.
sekar
3
votes
1 answer

Why is the wsa:To header in my reply message removed by WCF?

I have a WCF service with an IDispatchMessageInspector and a BeforeSendReply method which modifies the message's WS-Addressing headers. This works for all headers, except for wsa:To, which is being stripped from the reply... public void…
Vincent Van Den Berghe
  • 5,425
  • 2
  • 31
  • 40
3
votes
2 answers

How do I implement the WS addressing using WCF?

How do I implement the WS addressing using WCF?
sekar
3
votes
2 answers

How do I specify the WS-Addressing version with a JAX-WS client?

I generated a SOAP 1.2 web service client with wsimport (JDK 1.7). I need it to explicitly use WS-Addressing 2004/08 and not 2005/08. The closest I could find for instanciating the client was import MyService.*; import…
Foran
  • 182
  • 3
  • 10
3
votes
1 answer

WSDL : WSAM:input action implicitly generated

I created a webservice using JAX WS in Eclipse and deployed to Weblogic 12c app server. The @Webservice class and WSDL is shown below. The issue was when i use the WSDL for wsimport i get error due to the WSAM:input/ouput action . I understand that…
user3005662
  • 83
  • 2
  • 6
3
votes
1 answer

ReplyTo property missing in SOAPHeader

I have created a WS-BPEL workflow that would call an asynchronous web service and wait for a callback response. The carbon application is successfully deployed into BPS as well. Details on my external Asynchronous web service 1. It requires basic…
3
votes
1 answer

Using WSDL to Indicate WS-A Headers

I'm implementing a SOAP-based web-service and have got WS-Addressing working. However, I can't see how to get the WSDL to publish what the client should use as the value of the wsa:To element. I have used the snippet below in my WSDL, and used…
elgaz
  • 121
  • 2
  • 9
2
votes
3 answers

How do I add an attribute to a SOAP header with Savon?

I need to add this attribute (xmlns:wsa="http://www.w3.org/2005/08/addressing") to the soap header, like this: How do I do this, using Savon?
Magne
  • 16,401
  • 10
  • 68
  • 88
2
votes
1 answer

Apache CXF and WS-A properties

Can anyone please tell me how to resolve this warning message I am receiving? WARN 13 Oct 2011 15:23:46,024 ContextUtils - WS-Addressing - failed to retrieve Message Addressing Properties from context It doesn't seem to have any negative side…
Mouscellaneous
  • 2,584
  • 3
  • 27
  • 37
2
votes
1 answer

How do I use WS-* Standards with Delphi 2010

Web Service requirements are specified in documents. WS-Security 1.1 WS-Trust 1.3 WS-SecurityPolicy 1.2 Can I use Delphi 2010 and this web service or Can I create a dll with any other native…
Delphi2010
  • 53
  • 1
  • 4
2
votes
1 answer

Route WS-Addressing response with Spring-WS

I haven't much experience with SOAP Web Services and in particular with WS-Addressing. I'm trying to create example where according to WS-Addressing spec a response from server routes to another server instead of client. But I faced some issues…
MarkHuntDev
  • 181
  • 3
  • 21
2
votes
1 answer

In sending a soap message "manually" I get AddressingNone error with WCF

I'm trying to send through a SOAP message (that I've extracted) to my WCF service without using the WCF client infrastructure. Without using my production messages (and code), I've been able to setup a dummy version of the same problem (thanks to…
Dandré
  • 2,053
  • 3
  • 18
  • 38
2
votes
0 answers

Spring Boot Web Service fails with mustUnderstand headers: {http://www.w3.org/2005/08/addressing}Action

Using the example provided here https://spring.io/guides/gs/producing-web-service/ I built a web service from a provided WSDL file. The service needed to support SOAP12 as shown in the code, this is done. @EnableWs @Configuration public class…
user815809
  • 351
  • 5
  • 24