8

ユーザーを更新するメソッド(PUT)を作成したWCFでRESTサービスを作成しました。このメソッドでは、複数の本体パラメータを渡す必要があります

[WebInvoke(Method = "PUT", UriTemplate = "users/user",BodyStyle=WebMessageBodyStyle.WrappedRequest)]
[OperationContract]
public bool UpdateUserAccount(User user,int friendUserID)
{
    //do something
    return restult;
}

パラメータが1つしかない場合は、ユーザークラスのXMLエンティティを渡すことができますが。次のように:

var myRequest = (HttpWebRequest)WebRequest.Create(serviceUrl);
myRequest.Method = "PUT";
myRequest.ContentType = "application/xml";
byte[] data = Encoding.UTF8.GetBytes(postData);
myRequest.ContentLength = data.Length;
//add the data to be posted in the request stream
var requestStream = myRequest.GetRequestStream();
requestStream.Write(data, 0, data.Length);
requestStream.Close();

しかし、別のパラメータ(friendUserID)値を渡す方法は? 誰でも私を助けることができますか?

4

1 に答える 1

12

GET を除くすべてのメソッド タイプで、データ項目として送信できるパラメータは 1 つだけです。したがって、パラメーターをクエリ文字列に移動します

[WebInvoke(Method = "PUT", UriTemplate = "users/user/{friendUserID}",BodyStyle=WebMessageBodyStyle.WrappedRequest)]
[OperationContract]
public bool UpdateUserAccount(User user, int friendUserID)
{
    //do something
    return restult;
}

または、リクエストデータにパラメーターをノードとして追加します

<UpdateUserAccount xmlns="http://tempuri.org/">
    <User>
        ...
    </User>
    <friendUserID>12345</friendUserID>
</UUpdateUserAccount>
于 2011-03-12T07:57:10.410 に答える