I want to create a SOAP message based on the following XM file:
Qt Code:
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <SOAP-ENV:Envelope
  3. xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
  4. xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/"
  5. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  6. xmlns:xsd="http://www.w3.org/2001/XMLSchema"
  7. xmlns:ns2="http://www.remotereality.com/HubbleSOAP.xsd3"
  8. xmlns:ns3="http://www.remotereality.com/HubbleSOAP/binding/cameracontrol"
  9. xmlns:ns4="http://www.remotereality.com/HubbleSOAP/binding/videoprocamp"
  10. xmlns:ns5="http://www.remotereality.com/HubbleSOAP/binding/jpegCODEC"
  11. xmlns:ns6="http://www.remotereality.com/HubbleSOAP/binding/viewcontrol"
  12. xmlns:ns7="http://www.remotereality.com/HubbleSOAP/binding/KSPropertySet">
  13. <SOAP-ENV:Body SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
  14. <ns6:SetAngles>
  15. <index>0</index>
  16. <yaw>0.0</yaw>
  17. <pitch>0.0</pitch>
  18. <roll>0.0</roll>
  19. </ns6:SetAngles>
  20. </SOAP-ENV:Body>
  21. </SOAP-ENV:Envelope>
To copy to clipboard, switch view to plain text mode 

I am a newbie when it comes to SOAP. Could anybody show me in detail using the QTSoapMessage class on how to do it? Thanks.