如何在restful服务方法中将类对象作为参数传递?

时间:2014-11-19 06:55:28

标签: c# .net wcf rest

我想将restful service方法中的对象作为参数传递。以下是接口代码。

 [OperationContract]
        [WebGet(ResponseFormat = WebMessageFormat.Json,
                    UriTemplate = "searchCMSExposure/{requestObject}")]
        ResponseObject<GenericCollection<CONT_EXPRInfo>> SearchCMSExposure(RequestObject<ProposalInfoParm> requestObject);

正如预期的那样,我收到错误合同'IProposalService'中的'SearchCMSExposure'操作有一个名为'requestObject'的路径变量,它没有'string'类型。 UriTemplate路径段的变量必须具有类型'string'。,因为它需要字符串类型。如何在restful service方法中将object作为参数传递?

1 个答案:

答案 0 :(得分:1)

尝试使用以下代码

     using System.ServiceModel.Dispatcher;
    using System.ServiceModel.Description;
  public class StackOverflow_6783264
{
 public class InputData
{
    public string FirstName;
    public string LastName;
}
[ServiceContract]
public interface ITest
{
    [OperationContract]
    [WebGet(UriTemplate = "/InsertData?param1={param1}")]
    string saveDataGet(InputData param1);
    [OperationContract]
    [WebInvoke(UriTemplate = "/InsertData")]
    string saveDataPost(InputData param1);
}
public class Service : ITest
{
    public string saveDataGet(InputData param1)
    {
        return "Via GET: " + param1.FirstName + " " + param1.LastName;
    }
    public string saveDataPost(InputData param1)
    {
        return "Via POST: " + param1.FirstName + " " + param1.LastName;
    }
}
public class MyQueryStringConverter : QueryStringConverter
{
    public override bool CanConvert(Type type)
    {
        return (type == typeof(InputData)) || base.CanConvert(type);
    }
    public override object ConvertStringToValue(string parameter, Type parameterType)
    {
        if (parameterType == typeof(InputData))
        {
            string[] parts = parameter.Split(',');
            return new InputData { FirstName = parts[0], LastName = parts[1] };
        }
        else
        {
            return base.ConvertStringToValue(parameter, parameterType);
        }
    }
}
public class MyWebHttpBehavior : WebHttpBehavior
{
    protected override QueryStringConverter GetQueryStringConverter(OperationDescription operationDescription)
    {
        return new MyQueryStringConverter();
    }
}
public static void Test()
{
    string baseAddress = "http://" + Environment.MachineName + ":8000/Service";
    ServiceHost host = new ServiceHost(typeof(Service), new Uri(baseAddress));
    host.AddServiceEndpoint(typeof(ITest), new WebHttpBinding(), "").Behaviors.Add(new MyWebHttpBehavior());
    host.Open();
    Console.WriteLine("Host opened");

    WebClient client = new WebClient();
    Console.WriteLine(client.DownloadString(baseAddress + "/InsertData?param1=John,Doe"));

    client = new WebClient();
    client.Headers[HttpRequestHeader.ContentType] = "application/json";
    Console.WriteLine(client.UploadString(baseAddress + "/InsertData", "{\"FirstName\":\"John\",\"LastName\":\"Doe\"}"));

    Console.Write("Press ENTER to close the host");
    Console.ReadLine();
    host.Close();
 }

}