Tagged Questions

4
votes
3answers
4k views

Interesting issue with WCF wsHttpBinding through a Firewall

I have a web application deployed in an internet hosting provider. This web application consumes a WCF Service deployed at an IIS server located at my company’s application server, in order to have ...
1
vote
1answer
81 views

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 ...
1
vote
2answers
217 views

WS Addressing and Multiple “ReplyTo”

Please any one clarify me WS Addressing in WCF does support the multiple ReplyTo or not?.
1
vote
1answer
185 views

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 ...
0
votes
0answers
23 views

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 ...
0
votes
0answers
78 views

How can I force WCF to _not_ add WS-Addressing “To” header in the reply?

I have a service which operates on custom binding -- basicHttp + WS-Addressing (August 2004). Request part work fine but the response is somewhat strange. WCF internals (I could not find out which ...
0
votes
1answer
84 views

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 ...
0
votes
1answer
268 views

WCF rejects messages with additional signed elements

We have a WCF 4.0 service over https that allows the client to sign the message to identify themselves. We can then use the cert to give the client the proper rights on the back end. This works fine ...
0
votes
2answers
418 views

Multiple Protection Levels does not work in WCF

I am facing a problem in the security part of WCF. The problem is: Partial encryption is not working for the message payload. It either encrypts the payload completely or keeps unencrypted the whole ...
0
votes
2answers
79 views

How can I control the URI of a service method?

I'm trying to create a WCF client to send XML messages to a CGI script. The script functions in a request-response pattern, where the contents of the XML message will determine the action to invoke. ...
0
votes
2answers
954 views

WS addressing using WCF

How to implement the WS Addressing using WCF ? Thanks in Advance Sekar
0
votes
1answer
447 views

Specify parts of the header that have to be signed and/or encrypted in WCF with binding that support standards

Using Ws2007HttpBinding and securing the service, the WSDL file generated shows in the policy section that all the ws-addressing headers and the body will be signed, and that the body will be ...