Использование RESTful WCF с несколькими параметрами (Json) - PullRequest
1 голос
/ 26 августа 2011

Я использую созданный мной RESTful WCF.Я был в состоянии использовать службу со всем методом (GET / PUT / DELETE / POST) с несколькими параметрами.Вот некоторые из методов, которые я смог использовать на стороне клиента:

[WebInvoke(BodyStyle = WebMessageBodyStyle.Bare, Method = "POST", ResponseFormat = WebMessageFormat.Json, RequestFormat = WebMessageFormat.Json, UriTemplate = "GetEmployeePost")]  
[OperationContract]  
string GetEmployeePost(List<Employee> listEmployee);  

[WebInvoke(BodyStyle = WebMessageBodyStyle.Bare, Method = "POST", ResponseFormat = WebMessageFormat.Json, RequestFormat = WebMessageFormat.Json, UriTemplate = "GetEmployeePost/{userId}")]  
[OperationContract]  
string GetEmployeePost2(List<Employee> listEmployee, string userId);  

И вот мой код на стороне клиента для использования методов, указанных выше:

Этомоя коллекция.

public class Employee  
{ 
    public int Id { get; set; }  
    public string FirstName { get; set; }  
    public string LastName { get; set; }  
}  

И это метод для использования метода REST WCF.

static void ConsumeWcfRestPostMethod()  
{  
    var listEmployee = new List<Employee>();  
    listEmployee.Add(new Employee { Id = 1, FirstName = "Eireen", LastName = "Kim" });  
    var paramContent = Serialize(listEmployee);  
    var result = PostMethod(_baseAddress + "GetEmployeePost", paramContent, "POST");  
    Console.WriteLine(result);  
    Console.ReadLine();  
}  

public static string Serialize<T>(T obj)  
{  
    var serializer = new System.Runtime.Serialization.Json.DataContractJsonSerializer(obj.GetType());  
    var ms = new MemoryStream();  
    serializer.WriteObject(ms, obj);  
    string retVal = Encoding.Default.GetString(ms.ToArray());  
    ms.Dispose();  
    return retVal;  
}  

public static T Deserialize<T>(string json)  
{  
    var obj = Activator.CreateInstance<T>();  
    var ms = new MemoryStream(Encoding.Unicode.GetBytes(json));  
    var serializer = new System.Runtime.Serialization.Json.DataContractJsonSerializer(obj.GetType());  
    obj = (T)serializer.ReadObject(ms);  
    ms.Close();  
    ms.Dispose();  
    return obj;  
}  

static string PostMethod(string url, string msg, string method)  
{  
    string result = string.Empty;  
    byte[] buffer = Encoding.UTF8.GetBytes(msg);  
    var myHttpWebRequest = (HttpWebRequest)WebRequest.Create(url);  

    myHttpWebRequest.Method = method;  
    myHttpWebRequest.ContentType = "application/json";  
    myHttpWebRequest.ContentLength = buffer.Length;  

    using (var request = myHttpWebRequest.GetRequestStream())  
    {  
        request.Write(buffer, 0, buffer.Length);  
        request.Close();  
    }  

    var myHttpWebResponse = (HttpWebResponse)myHttpWebRequest.GetResponse();  
    using (var reader = new StreamReader(myHttpWebResponse.GetResponseStream(), Encoding.UTF8))  
    {  
        result = reader.ReadToEnd();  
        myHttpWebResponse.Close();  
    }  
    return result;  
}  

Теперь мой вопрос.Как я могу использовать метод ниже ???

[WebInvoke(BodyStyle = WebMessageBodyStyle.WrappedRequest, Method = "POST", ResponseFormat = WebMessageFormat.Json, RequestFormat = WebMessageFormat.Json, UriTemplate = "GetEmployeePost3/{userId}")]  
[OperationContract]  
string GetEmployeePost3(List<Employee> listEmployee, List<EmployeeDetail> listEmployeeDetail, string userId);  

Этот метод имеет 2 списка и строковые параметры ..

Пожалуйста, ПОМОГИТЕ ...

Заранее спасибо !!

1 Ответ

0 голосов
/ 08 сентября 2011

Я уже решил эту проблему, используя WebChannelFactory на стороне клиента.
перейдите по ссылке здесь !

...