Как отправить полное лицо в службу WCF Restful (Post) для обновления? - PullRequest
0 голосов
/ 23 января 2019

Используя класс RestfulServiceMgr, я могу получить GetProducts и GetProductById. Но не знаю, как это сделать для продукта обновления, когда мне нужно отправить всю сущность в службу WCF restful, чтобы выполнить обновление.

WCF Restful Service:

        [OperationContract]
        [WebInvoke(Method = "POST")]
        void UpdateProduct(Entity_Product eProduct);

        [OperationContract]
        [WebInvoke(Method = "POST")]
        void UpdateProductDetails(Entity_ProductDetails eProductDetails);

Вызов Resful Service с классом RestfulServiceMgr:

  public void UpdateProduct(Entity_Product ProductData, Entity_ProductDetails ProductDetailsData)
    { 
        client.EndPoint = @Constants.Url_UpdateProduct;
        client.Method = HttpVerb.POST;
        client.PostData = "{postData: value}";
        client.MakeRequest();

        client.EndPoint = @Constants.Url_UpdateProductDetails;
        client.Method = HttpVerb.POST;
        client.PostData = "{postData: value}";
        client.MakeRequest();  
    }

RestfulServiceMgr Класс вспомогательных вызовов:

   public class RestfulServiceMgr
{
    public string EndPoint { get; set; }
    public HttpVerb Method { get; set; }
    public string ContentType { get; set; }
    public string PostData { get; set; }

    public RestfulServiceMgr()
    {
        EndPoint = "";
        Method = HttpVerb.GET;
        ContentType = "application/json";
        PostData = "";
    }
    public RestfulServiceMgr(string endpoint)
    {
        EndPoint = endpoint;
        Method = HttpVerb.GET;
        ContentType = "application/json";
        PostData = "";
    }
    public RestfulServiceMgr(string endpoint, HttpVerb method)
    {
        EndPoint = endpoint;
        Method = method;
        ContentType = "application/json";
        PostData = "";
    }

    public RestfulServiceMgr(string endpoint, HttpVerb method, string postData)
    {
        EndPoint = endpoint;
        Method = method;
        ContentType = "application/json";
        PostData = postData;
    }

    public string MakeRequest()
    {
        return MakeRequest("");
    }

    public string MakeRequest(string parameters)
    {
        var request = (HttpWebRequest)WebRequest.Create(EndPoint + parameters);

        request.Method = Method.ToString();
        request.ContentLength = 0;
        request.ContentType = ContentType;

        if (!string.IsNullOrEmpty(PostData) && Method == HttpVerb.POST)
        {
            var encoding = new UTF8Encoding();
            var bytes = Encoding.GetEncoding("iso-8859-1").GetBytes(PostData);
            request.ContentLength = bytes.Length;

            using (var writeStream = request.GetRequestStream())
            {
                writeStream.Write(bytes, 0, bytes.Length);
            }
        }

        using (var response = (HttpWebResponse)request.GetResponse())
        {
            var responseValue = string.Empty;

            if (response.StatusCode != HttpStatusCode.OK)
            {
                var message = String.Format("Request failed. Received HTTP {0}", response.StatusCode);
                throw new ApplicationException(message);
            }

            // grab the response
            using (var responseStream = response.GetResponseStream())
            {
                if (responseStream != null)
                    using (var reader = new StreamReader(responseStream))
                    {
                        responseValue = reader.ReadToEnd();
                    }
            }

            return responseValue;
        }
    }
}

1 Ответ

0 голосов
/ 23 января 2019

Работает !!!

        client.EndPoint = @Constants.Url_UpdateProduct;
        client.Method = HttpVerb.POST;
        client.PostData = new JavaScriptSerializer().Serialize(ProductData);
        client.MakeRequest();
...