Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible to configure a WCF proxy such that it is able to understand SOAP 1.1 and SOAP 1.2 messages at the same time? In other words, I want to be able to connect to a web service that may return at any time, SOAP 1.1 or 1.2 based messages.

Thanks.

share|improve this question

1 Answer

up vote 3 down vote accepted

You would have to have two different WCF End Points for the two different SOAP versions. You would also have to know which version of SOAP response is going to be returned ahead of time by the call.

There's no way in WCF to make a single end-point flip between the two versions automatically.

share|improve this answer
That's what I thought, but I was hoping there was something I'm missing. I think I can solve my problem another way, but that's the exact issue. I can't know which version of message I'm going to get back. – chtmd Jan 6 '10 at 19:59

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.