Content Type text/xml; charset=utf-8 was not supported by service

前端 未结 10 1750
北海茫月
北海茫月 2020-12-01 09:59

I have a problem with a WCF service. I have a console application and I need to consume the service without using app.config, so I had to set the endpoint, etc. by code. I d

10条回答
  •  有刺的猬
    2020-12-01 10:30

    I had this error and all the configurations mentioned above were correct however I was still getting "The client and service bindings may be mismatched" error.

    What resolved my error, was matching the messageEncoding attribute values in the following node of service and client config files. They were different in mine, service was Text and client Mtom. Changing service to Mtom to match client's, resolved the issue.

    
      
          
               
                  
                  ...
                  
               
          
      
    
    

提交回复
热议问题