WCF timeout exception detailed investigation

后端 未结 11 1283
失恋的感觉
失恋的感觉 2020-11-29 16:44

We have an application that has a WCF service (*.svc) running on IIS7 and various clients querying the service. The server is running Win 2008 Server. The clients are runnin

11条回答
  •  清酒与你
    2020-11-29 17:16

    You will also receive this error if you are passing an object back to the client that contains a property of type enum that is not set by default and that enum does not have a value that maps to 0. i.e enum MyEnum{ a=1, b=2};

提交回复
热议问题