我想從窗體中使用WCF服務。我試圖調用的方法接受兩個參數:WCF服務中的多個參數json
public String Redirect(String code, String[] data)
{
//Some code here.
}
現在,當我嘗試連接到函數時,不發送數據,Web服務停止。我需要知道如何使用正確的格式發送數據,以便函數接受de連接。
PT:該功能只接受json數據。
我使用的瞬移到Web服務的代碼:
String url = GetUrl();
WebRequest request = WebRequest.Create(url);
request.ContentType = "application/json";
request.Method = "POST";
System.Text.UTF8Encoding encoding = new System.Text.UTF8Encoding();
request.GetResponse();
感謝
你是如何使這個電話?將執行呼叫的代碼添加到Web服務 –
Xtudio感謝您的答覆。我添加了代碼 – Flezcano