正しい形式は次のとおりです。
<AssignUserRole xmlns="http://tempuri.org/">
<roleIDs xmlns:a="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<a:int>7</a:int>
<a:int>8</a:int>
</roleIDs>
</AssignUserRole>
特定の操作で予想される形式を確認する簡単な方法の1つは、同じコントラクトを持つWCFクライアントを使用し、それを使用してメッセージを送信し、Fiddlerを使用して操作を確認することです。以下のプログラムはそれを行います。
public class StackOverflow_6339286
{
[ServiceContract]
public interface ITest
{
[WebInvoke(Method = "PUT", UriTemplate = "users/role/{userID}", BodyStyle = WebMessageBodyStyle.WrappedRequest)]
[OperationContract]
bool AssignUserRole(string userID, Collection<int> roleIDs);
}
public class Service : ITest
{
public bool AssignUserRole(string userID, Collection<int> roleIDs)
{
return true;
}
}
public static void Test()
{
string baseAddress = "http://" + Environment.MachineName + ":8000/Service";
WebServiceHost host = new WebServiceHost(typeof(Service), new Uri(baseAddress));
host.Open();
Console.WriteLine("Host opened");
WebChannelFactory<ITest> factory = new WebChannelFactory<ITest>(new Uri(baseAddress));
ITest proxy = factory.CreateChannel();
proxy.AssignUserRole("1234", new Collection<int> { 1, 2, 3, 4 });
((IClientChannel)proxy).Close();
factory.Close();
Console.Write("Press ENTER to close the host");
Console.ReadLine();
host.Close();
}
}
また、UriTemplateに問題があることに注意してください。パス変数{userId}は型にすることはできませんint
(文字列である必要があります)。これは、上記のサンプルコードで修正されています。
もう1つ、コレクション/配列にデフォルトの名前空間を使用したくない場合は、[CollectionDataContract]
クラスを使用して変更できます。コレクションを使用する代わりに、以下のクラスを使用した場合、最初に試したボディは機能するはずです。
[CollectionDataContract(Namespace = "http://tempuri.org/", ItemName = "roleID")]
public class MyCollection : Collection<int> { }