wsdl2swift结果只得到nil,连接结果正常

时间:2015-12-04 10:13:29

标签: ios json swift

我使用http://wsdl2swift.com/创建一个调用asmx-WebService的iOS Swift JSON客户端。

一切都很好,我可以构建连接,在响应XML中接收结果JSON-String,并在库内打印#34; makeSoapConnection" -Function。

但如果我打电话

let client = SyedAbsarClient()
let gam = GetAllBla()
gam.cpMyId = "12"

client.opGetAllBla(gam){(response: GetAllBlaResponse?, error:NSError?) -> Void in   
   print(response?.cpGetAllBlaResult)
}

我只能得到" nill"

1 个答案:

答案 0 :(得分:2)

如网站上所述,该实用程序仍在进行中,目前,它返回可以解析的实际xml响应

        print(response?.xmlResponseString)