我有此JSON數據示例REST WEBSERVICES在c#使用JSON
http://84.235.49.85:58/saws/hi/is/inserSer?jsonObject={
"authObject":{
"userName":"1111",
"password":"123",
"baladyCode":"11",
"amanaCode":"061"
},
"billObj":{
"billNumber":"0611138000302",
"billCreationDate":"07-01-1438",
"billDetails":[
{"depId":"11006","billValue":"1"}
]}
}
authObject的OBJ: - 此對象保存關於將被用於決定我們可以允許訪問該請求或不用戶認證數據。
billObj對象: - 這個對象持有將用於創建插入操作的賬單數據,讓我們說,每個賬單可能有一個子賬戶或許多子賬戶,所以我們使它動態並給你創建Json數組帳單的詳細信息,包含每個子帳戶及其價值。
我做在C#中的代碼使用插入數據json.net在服務器
inserSerJSON jsonclass = new inserSerJSON();
jsonclass.authObject = new AuthObject();
jsonclass.authObject.userName = "7070";
jsonclass.authObject.password = "123";
jsonclass.authObject.baladyCode = "07";
jsonclass.authObject.amanaCode = "061";
jsonclass.billObj = new BillObj();
jsonclass.billObj.billNumber = txtBillNum.Text.Trim();
jsonclass.billObj.billCreationDate = myStatic.hdminus(dateINBillDateHig);
bill[] billclass = new bill[dataGridView1.Rows.Count];
for (int i = 0; i < dataGridView1.Rows.Count; i++)
{
billclass[i] = new bill();
billclass[i].depId = dataGridView1.Rows[i].Cells["SubAccount"].Value.ToString();
billclass[i].billValue = dataGridView1.Rows[i].Cells["Amount"].Value.ToString();
}
jsonclass.billObj.billDetails = billclass;
WebClient client = new WebClient();
string output = Newtonsoft.Json.JsonConvert.SerializeObject(jsonclass);
byte[] toBytes = Encoding.ASCII.GetBytes(output);
HttpWebRequest request = (HttpWebRequest)WebRequest.Create("http://84.235.49.85:58/saws/hi/is/inserSer");
request.Method = "GET";
request.ContentLength = toBytes.Length;
request.ContentType = @"application/json";
using (Stream dataStream = request.GetRequestStream())
{
dataStream.Write(toBytes, 0, toBytes.Length);
}
long length = 0;
using (HttpWebResponse response = (HttpWebResponse)request.GetResponse())
{
length = response.ContentLength;
}
它給我例外,在這條線
Stream dataStream = request.GetRequestStream()
其他信息:無法發送內容體這個動詞類型。
我改變
request.Method = "GET" from get to Post
好的作品精放給我的異常響應線
HttpWebResponse response = (HttpWebResponse)request.GetResponse()
其他信息:遠程服務器返回錯誤:(405)不允許的方法。
請幫我給我解決這個問題
請澄清「的優秀作品精放給我的異常響應線」 – Kailash
型「System.Net.WebException」未處理的異常發生在System.dll中 更多信息:遠程服務器返回錯誤:(405)方法不允許。 – user1938035
但是你通過HTTP發送純文本usr/pw ... – Kyle