2

我在 WebServiceHost 中使用 WCF .NET 4.0 托管。Normaly 一切正常,直到我在类中使用我自己定义的类数组。

服务器端功能

[WebInvoke(Method = "POST", RequestFormat = WebMessageFormat.Json, ResponseFormat = WebMessageFormat.Json, UriTemplate = "foo")]
[OperationContract]
void Foo(FooQuery query);

课程

[DataContract(Namespace="")]
public class FooQuery
{
    [DataMember]
    public MyFoo[] FooArray;
}

[DataContract(Namespace = "")]
public class MyFoo
{
    [DataMember]
    public string[] items;
}

客户端:

        //create object
        FooQuery myOriginalFoo = new FooQuery();
        MyFoo _myFoo = new MyFoo();
        _myFoo.items = new string[] { "one", "two" };
        myOriginalFoo.FooArray = new MyFoo[] { _myFoo };

        //serialize
        var json = new JavaScriptSerializer().Serialize(myOriginalFoo);
        string _text = json.ToString();
        //output:
        // {"FooArray":[{"items":["one","two"]}]}

        var httpWebRequest = (HttpWebRequest)WebRequest.Create("http://localhost:2213/foo");
        httpWebRequest.ContentType = "application/json";
        httpWebRequest.Method = "POST";

        using (var streamWriter = new StreamWriter(httpWebRequest.GetRequestStream()))
        {
            streamWriter.Write(_text);
            streamWriter.Flush();
            streamWriter.Close();
        }

        //here server give back: 400 Bad Request.
        var httpResponse = (HttpWebResponse)httpWebRequest.GetResponse();

我还尝试使用 System.Runtime.Serialization.Json.DataContractJsonSerializer 操作我的类 - 一切都很好,直到我发送到服务器并 webinvoke 返回错误 400。为什么 webInvoke 不知道如何反序列化它或有任何其他错误?

4

3 回答 3

1

我发现了一个名为CollectionDataContract的魔法属性,这很有趣。

添加新的集合类:

[CollectionDataContract(Namespace = "")]
public class MyFooCollection : List<MyFoo>
{
}

更改查询类

[DataContract(Namespace="")]
public class FooQuery
{
    [DataMember]
    public /*MyFoo[]*/MyFooCollection FooArray;
}

客户端代码更改:

MyFooCollection _collection = new MyFooCollection();
_collection.Add(_myFoo);
myOriginalFoo.FooArray = _collection; //new MyFoo[] { _myFoo };

现在所有变量都序列化了:) 是的.. 需要很多小时才能弄清楚。

于 2013-11-05T20:10:35.840 回答
0

由于它是一个网络请求,请尝试 GET:

[WebGet(ResponseFormat = WebMessageFormat.Json)]
于 2013-11-05T09:49:45.260 回答
0

如下所示将 WebMessageBodyStyle 设置为 WrappedRequest,以使 WCF 服务期望封装的 JSON 字符串。默认情况下,它需要一个纯字符串。

 [WebInvoke(Method = "POST", ResponseFormat = WebMessageFormat.Json, BodyStyle = WebMessageBodyStyle.WrappedRequest)]
于 2013-11-05T10:30:28.140 回答