Chat SOAP connection - using Objective C
Content
Hi All,
We are trying to develop the Chat integration in our custom Mobile app. We are having connection issues with the WSDL and we always get Operation not found. Sample code below. Any directions will be very helpful.
Code Snippet
let myUserInfo = UserInfo() let soapObj = SOAPEngine() soapObj.userAgent = "SOAPEngine" soapObj.responseHeader = true soapObj.requestWSDL(WsdlConstants.wsdlUrl, operation: "RequestChat", value: myUserInfo, completeWithDictionary: { (statusCode, dict) in print("Result = \(dict)") }) { (error) in print("Error = \(error)") }
0