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
2
votes
1 answer

CXF Client and WS-Addressing attributes

I have a webservice that I'm trying to invoke with the following client-side code: import com.test.wsdl.CxfAdd; import com.test.wsdl.CxfAddService; import java.util.Map; import javax.xml.ws.BindingProvider; import…
aries23
  • 326
  • 1
  • 5
  • 11
2
votes
0 answers

Java SOAP Client: WS-A and WS-S problems with CXF

I'm trying to consume a SOAP webservice that expects WS-Security and WS-Adressing headers as SOAPHeaders. Similar to Java SOAP-WS client horror I was not able to get all these headers in my request. I'm using CXF and have generated a webservice…
2
votes
1 answer

How to create a valid WS-A request with SOAP UI

My webservice defines a WS Addressing policy in its WSDL with
Stefan K.
  • 7,701
  • 6
  • 52
  • 64
2
votes
1 answer

Asynchronus Web service using WS Addressing

I need to implement an WCF WS Addressing enabled web service that performs a long running process based on the method's arguments. The client does not need to wait for the result, because it will be delivered directly to a database table. However,…
sekar
2
votes
0 answers

WCF disable WS-Addressing

I am trying to disable a web service WS-Addressing. I followed the steps passed by Serene Trees in microsoft forum. She says basicaly to create a custom binding and set messageVersion on the textMessageEncoding element to "Soap12". But my service…
2
votes
1 answer

WCF - How to include/Add a WS-Addressing "TO" header to the service response

I have a WCF host service I am working on which needs to be created to a specific standard. I am using a custom binding to achieve most of the requirements of the standard. WS-Addressing headers are required in the response and request headers, and…
2
votes
0 answers

WCF, wsHttpBinding and ws-addressing: The field is missing from the soap messages

I implemented a wcf web service by using wsHttpBinding. The SOAP message perfectly includes some of the important ws-addressing fields inlcuing wsa:MessageID, wsa:ReplyTo, wsa:To and wsa:Action. The problem is that wsa:From filed is missing from the…
Allan Xu
  • 7,998
  • 11
  • 51
  • 122
2
votes
1 answer

In proxy mediation get-property('To') returns unexpected value

I have a strange problem with WSO2 ESB mediation. Product version: WSO2 ESB 4.5.1 The mediation code is look like this:
1
vote
2 answers

Soap UI and WS-A options

I'm developing a simple web service using MS Visual Studio 2008, C# and .net 4. I used the WCF project template, and thru this, I was able to create a site and deploy it to IIS 7.5. It pretty much has all the default settings that, just that I…
Sai Jin
  • 405
  • 3
  • 11
1
vote
1 answer

Manual addressing with secure customBinding on WCF service

I'm developing a web service for a WSDL defined externally. Access is done with HTTP/S (server and client certificates) and both the request and response are signed with the respective certificate. I have imported the WSDL in VS2010 with a service…
1
vote
1 answer

Trying to use gSoap with WCF and WSHttpBinding

I am attempting to use the gSoap library to talk to a WCF server with the WSHttpBinding. I seem to be running into a problem with the WS-Addressing plugin for gSoap. When I enable the WS-Addressing plugin, by using #import "wsa5.h" I can no longer…
IslandCow
  • 3,412
  • 3
  • 19
  • 24
1
vote
1 answer

CXF: Providing decoupled endpoint via existing Servlet transport

I have an application which provides services using CXF's Servlet transport and Jetty 6.1. This application also needs to consume external services. All services support WS-Addressing specification (and WS-RM on top). To consume an external service,…
1
vote
0 answers

How can I sign the wsa:To, wsa:Action and wsa:MessageID elements in WS-Security header in SOAP request with python zeep

I am trying to connect to a SOAP dataservice that requires both WS-Addressing and WS-Security. So far, I have managed to get a request with a signed body and a signed timestamp. But I also need to add signatures for the wsa:To, wsa:MessageID and…
KSchouten
  • 11
  • 2
1
vote
1 answer

asp net core soap request ws-addressing

I am creating a wcf client on core. I create a binding. var binding = new System.ServiceModel.BasicHttpsBinding(); I need to add MessageID, ReplyTo fields to the request for ws-addressing. How to do it correctly? I tried to overwrite request - it…
sir
  • 51
  • 6
1
vote
1 answer

Create WCF addressing headers for reply message

I have a generic service with this interface [OeprationContract(Action="*", ReplyAction="*")] Message ProcessMessage(Message message); In the implementation, I have to set up the headers of the reply message. Is there a way to create the right…
PeeWee2201
  • 1,464
  • 2
  • 15
  • 23