【发布时间】:2016-11-11 01:15:45
【问题描述】:
我通过 SSIS 脚本组件获得了一个 Web API JSON 响应,它以以下格式返回:
{
"Success": true,
"Response": {
"Applications": [
{
"App_ID": 1638486,
"App_Ref": "Test Example",
"Status": "Complete",
"Error_Code": null,
"Error_Message": null,
"Create_Dt": "2014-05-14 03:09:01.030 +00:00",
"Modify_Dt": "2014-05-14 03:10:59.757 +00:00",
"Client_Name": "Silver Chef",
"Client_Code": "SLVC01",
"Centrelink_Status": "Receiving_Logons"
},
{
"App_ID": 1637906,
"App_Ref": "SME Demo",
"Status": "Complete",
"Error_Code": null,
"Error_Message": null,
"Create_Dt": "2015-10-08 03:07:26.793 +00:00",
"Modify_Dt": "2015-10-08 03:23:32.833 +00:00",
"Client_Name": "Silver Chef",
"Client_Code": "SLVC01",
"Centrelink_Status": "Receiving_Logons"
},
{
"App_ID": 1585286,
"App_Ref": "Test",
"Status": "Receiving_Logons",
"Error_Code": null,
"Error_Message": null,
"Create_Dt": "2015-12-04 03:12:49.617 +00:00",
"Modify_Dt": "2015-12-04 03:12:49.617 +00:00",
"Client_Name": "Silver Chef",
"Client_Code": "SLVC01",
"Centrelink_Status": "Receiving_Logons"
}
],
"Current_Dt": "2016-11-11 01:01:01.743 +00:00",
"Last_App_Dt": "2016-10-03 22:48:56.397 +00:00",
"Count": 500,
"Total": 1870
}
}
我已经声明了以下类:
public class Application
{
public int App_ID { get; set; }
public string App_Ref { get; set; }
public string Status { get; set; }
public int Error_Code { get; set; }
public string Error_Message { get; set; }
public DateTime Create_Dt { get; set; }
public DateTime Modify_Dt { get; set; }
public string Client_Name { get; set; }
public string Client_Code { get; set; }
public int Centrelink_Status { get; set; }
}
public class Response
{
public List<Application> Applications { get; set; }
public string Current_Dt { get; set; }
public string Last_App_Dt { get; set; }
public int Count { get; set; }
public int Total { get; set; }
}
public class RootObject
{
public bool Success { get; set; }
public Response Response { get; set; }
}
And this is the method that I am using to get the response.
private RootObject GetWebServiceResult(string vAPIUrl)
{
string vAPIToken = Variables.APIToken;
//Create Web Request
HttpWebRequest apireq = (HttpWebRequest)WebRequest.Create(vAPIUrl);
apireq.ContentType = "application/json";
apireq.Method = "POST";
string jsonPostStr = "{\"Settings\": {\"API_Token\": \"" + vAPIToken + "\"}, \"Payload\": {}}";
byte[] postString = Encoding.UTF8.GetBytes(jsonPostStr);
apireq.ContentLength = postString.Length;
Stream jsonStream = apireq.GetRequestStream();
jsonStream.Write(postString, 0, postString.Length);
jsonStream.Close();
// Get Web Response
HttpWebResponse apirsp = (HttpWebResponse)apireq.GetResponse();
RootObject jsonResponse = null;
Stream jsonRspStream = apirsp.GetResponseStream();
string apiResponseString = null;
using (StreamReader reader = new StreamReader(jsonRspStream))
{
apiResponseString = reader.ReadToEnd();
Console.WriteLine(apiResponseString);
reader.Close();
}
JavaScriptSerializer returnJson = new JavaScriptSerializer();
//var serialJsonStr = returnJson.Serialize(apiResponseString);
System.Windows.Forms.MessageBox.Show(apiResponseString);
jsonResponse = returnJson.Deserialize<RootObject>(apiResponseString);
return jsonResponse;
}
我的问题是 returnJson.Deserialize(apiResponseString); 似乎返回 null 并随后使其失败。
我错过了什么?我想我在这个阶段有点代码盲。
提前致谢
【问题讨论】:
-
附带说明:我建议您使用Json.NET Library
标签: c# json ssis javascriptserializer