QT: Connect to SOAP Webservice
H ello Friends, Here, I hereby trying to show an example for How to send SOAP Post request through QT?. To create a Qt client application that connects to a SOAP/WSDL web service, I have used QT 4.7 XML packet: <?xml version="1.0" encoding="utf-8"?> <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <GetFullDetails xmlns="http://core-1.doubleu.mobi/MecaniqueWS"> </GetFullDetails> </soap:Body> </soap:Envelope> QString XMLData = <Your XML Packet> MyClass obj; QString returnData = obj.httpcall(XMLData);