AddressFilter mismatch at the EndpointDispatcher - the msg with To

前端 未结 12 1839
一个人的身影
一个人的身影 2020-12-14 06:21

Any ideas how I correct this.. calling a service via js

The message with To \'http://MySite.svc/GetStateXML\' cannot be processed at the receiver, due

12条回答
  •  长情又很酷
    2020-12-14 06:56

    I just ran into this as well while going through an example in the Learning WCF book by Bustamante. I had used the WCF Config Editor to fill out my config on my host and had put the value in the name attribute for my endpoint rather than the address attribute. Once I fixed it things worked. I found another post that suggested using:

    [ServiceBehavior(AddressFilterMode = AddressFilterMode.Any)] 
    

    on the implementation class, which worked but wasn't the root cause.

    Bottom line appears to be: make sure your client and server configs match.

提交回复
热议问题