Hemant Kumar
Hemant Kumar

Reputation: 4611

how to resolve this issue in SoapFaultException contract and binding mismatch between sender&recivr?

SoapFaultException when invoking Myservice, saying “contract and binding mismatch between sender and receiver"?

above is my problem, i have created WCF services and tested in Local(.net it is working fine.so hosted in Remote server. my client is using Java, when ever he is accessing the Wcf services ,he is getting error like" SoapFaultException saying “contract and binding mismatch between sender and receiver"

help me. Thanks in advance

Upvotes: 0

Views: 349

Answers (1)

krisragh MSFT
krisragh MSFT

Reputation: 1918

This sometimes happens if you are trying to call an old instance of your service with a proxy created for a new instance of your service. Or vice-versa.

If you are 100% sure that the service you are calling has the new method installed and running, then you should be able to diagnose this further by turning on tracing on the service.

Here is what I suggest, which I also suggested in another post:

Generally, once you do this, you should plenty of more info on what's going funky at the service side and can diagnose the issue pretty quickly. Try it, and please report back! :)

Upvotes: 0

Related Questions