JSON响应包含XML标头

时间:2013-02-21 11:31:24

标签: objective-c xml json httpwebrequest httpwebresponse

我正在向ASP.NET Web服务发送HTTP请求,并将响应作为JSON返回(Web服务最初返回DataTable,并使用JSON.NET将其转换为JSON)。

我收到了JSON的回复。但是随之而来的是一个XML标题!

2013-02-21 16:42:41.062 HttpRequestTest[6023:c07] <?xml version="1.0" encoding="utf-8"?>
<string xmlns="http://www.my-comp.com/">[
  {
    "Int_Proj": 152,
    "NewMailCnt": 79,
    "DocsForRev": 2,
    "DocsForRel": 1,
    "Int_Sec": 2,
    "UnregCnt": 3225,
    "UnregAccss": 3,
    "OutstMLCnt": 276,
    "TBEdition": 1,
    "ProjNo": "TESTPROJ1",
    "ProjTitle": "TESTPROJ1 - DO NOT TOUCH TESTPROJ1 - DO NOT TOUCH TESTPROJ1",
    "ServerName": "ISURU",
    "ServerUrl": "ISURU/myserver/",
    "Int_Server": 1,
    "Int_Key": 2,
    "IsGblAdrBk": 0
  },
  {
    "Int_Proj": 160,
    "NewMailCnt": 11,
...

这是用于调用Web服务的Objective-C代码。

NSURL *url = [NSURL URLWithString:@"http://isuru/TBWebService/Session.asmx/GetUserProjectList?userID=dr&companyID=qas&password=david&errorMsg=''"];

NSURLRequest *urlRequest = [NSURLRequest requestWithURL:url
                                                cachePolicy:NSURLRequestReturnCacheDataElseLoad
                                            timeoutInterval:30];
NSData *urlData;
NSURLResponse *response;
NSError *error;

urlData = [NSURLConnection sendSynchronousRequest:urlRequest
                                    returningResponse:&response
                                                error:&error];
NSString *returnedData = [[NSString alloc] initWithData:urlData
                                                   encoding:NSUTF8StringEncoding];
NSLog(@"%@", returnedData);

这是ASP.NET Web服务方法的C#代码。

[WebMethod]
[ScriptMethod(ResponseFormat = ResponseFormat.Json)]
public string Logon(string userID, string companyID, string password, string projNo)
{
    MySoftware.TestSoft.User user = new MySoftware.TestSoft.User();
    DataTable userTable = user.ListUserAccessProjects(userID, companyID, password, "", "");
    if (userTable.Rows.Count == 0)
    {
        string jsonRet = JsonConvert.SerializeObject("ERROR - Invalid User ID, Company ID or Password.", Formatting.Indented);
        return jsonRet;
    }

    DataRow[] projectEntries = userTable.Select(String.Format("ProjNo='{0}'", projNo));
    if(projectEntries.Length==0)
    {
        string jsonRet = JsonConvert.SerializeObject("ERROR - Invalid Project Number.", Formatting.Indented);
        return jsonRet;
    }

    int int_Project = Convert.ToInt32(projectEntries[0]["int_proj"]);

    MySoftware.TestSoft.Logon logon = new  MySoftware.TestSoft.Logon();
    try
    {
        bool isSameServer = false;
        string sessonKey = logon.Login(Convert.ToInt32(projectEntries[0]["int_Key"]), Convert.ToInt32(projectEntries[0]["Int_Server"]), userID, companyID, password, int_Project, out isSameServer);
        string json = JsonConvert.SerializeObject(sessonKey, Formatting.Indented);
        return json;
    }
    catch (ApplicationException ex)
    {
        string jsonRet = JsonConvert.SerializeObject("ERROR - " + ex.Message, Formatting.Indented);
        return jsonRet;
    }
}

这个问题已经在这里被问到了,我尝试了那里提到的所有内容,但无济于事。此外,它们都与Objective-C无关。

如何在没有XML标头的情况下获取JSON响应?

1 个答案:

答案 0 :(得分:0)

尝试更改JSON格式。请使用此链接。 ASMX response to JSON String.

相关问题