This could be due to the service endpoint binding not using the HTTP protocol

前端 未结 22 2406
梦谈多话
梦谈多话 2020-12-22 23:10

I have a WCF Service running fine on my local machine. I put it on the servers, and I am receiving the following error:

An error occurred while receiv

22条回答
  •  太阳男子
    2020-12-23 00:14

    This might not be relevant to your specific problem, but the error message you mentioned has many causes, one of them is using a return type for an [OperationContract] that is either abstract, interface, or not known to the WCF client code.

    Check the post (and solution) below

    https://stackoverflow.com/a/5310951/74138

提交回复
热议问题