我正在构建RESTful WCF主机,但我不知道如何让它在mono下返回值。 下面的代码在.NET下工作正常,但在mono(v3.3.0)
下失败任何出路?谢谢!
接口
[WebInvoke(Method = "POST", UriTemplate="Test", RequestFormat = WebMessageFormat.Json, ResponseFormat = WebMessageFormat.Json, BodyStyle = WebMessageBodyStyle.Wrapped)]
string Test(int n1, int n2, int n3, int n4, out int o1, out int o2, out int o3, out int o4);
主机
Fiddler POST(.net)
Fiddler POST(单声道)
例外(mono linux)