我在使用网络服务时遇到了一个非常奇怪的情况
这是我的Xcode项目文件 https://dl.dropbox.com/u/9507586/FubonTest.zip
我从服务器那里得到了回复,如下所示。
2013-03-04 15:56:18.473 FubonTest[1059:f803] 1: connection: didReceiveResponse
2013-03-04 15:56:18.473 FubonTest[1059:f803] 2: connection: didReceiveData
2013-03-04 15:56:18.699 FubonTest[1059:f803] 2: connection: didReceiveData
2013-03-04 15:56:18.699 FubonTest[1059:f803] 3: Done. Received Bytes: 1789
2013-03-04 15:56:18.700 FubonTest[1059:f803] Return (null)
我确实收到了字节,但xml标记文件为null。服务器端的人告诉我他们使用utf-8编码,但它只返回null。如果我使用ascii编码,返回的数据不是null,但它不是我期望的xml标记文件。
正确返回的xml标记文件应如下所示。 返回的xml标记文件使用eclipse(窗口版)Web服务函数。
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<soapenv:Body>
<ns1:RegistResponse xmlns:ns1="http://service.fubon.com" soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
<RegistReturn xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xsi:type="soapenc:string">该用户未投保</RegistReturn>
</ns1:RegistResponse>
</soapenv:Body>
</soapenv:Envelope>
有人可以帮我解决一下吗?
答案 0 :(得分:1)
有拼写错误。在ViewController.m
文件中,第57行:
更改forHTTPHeaderField: @"Contnet-Type"];
到forHTTPHeaderField: @"Content-Type"];