Categories: S60 | Symbian C++ | Code Examples | How To | HTTP
This page was last modified 09:23, 26 November 2007.
How to use http to send soap request
From Forum Nokia Wiki
In S60 3rd Edition and later SDKs, a full framework for web services is provided, allowing simplified access to SOAP services.http://www.forum.nokia.com/main/resources/technologies/web_services/index.html
You can use http to send SOAP request and use your XML parser to SOAP messages.
_LIT8(KSoapAction, "SoapAction"); _LIT8(KSoapActionParam, "http://soaptest.org/method"); RStringF action = iSession.StringPool().OpenFStringL(KSoapAction); CleanupClosePushL(action); RStringF param = iSession.StringPool().OpenFStringL(KSoapActionParam); CleanupClosePushL(param); RHTTPHeaders headers = iTransaction.Request().GetHeaderCollection(); THTTPHdrVal stringVal(param); headers.SetFieldL(action, stringVal);
| Related Discussions | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Saving video from rtsp server | dinesh547 | General Symbian C++ | 10 | 2008-07-02 18:24 |
| Sending POST data | maggias | WRT Widget Development | 5 | Yesterday 03:44 |
| MP4 video in MMS | theisborg | General Messaging | 8 | 2003-06-16 10:23 |
| I cannot send query string to the servlet | raghda | Mobile Java Networking & Messaging & Security | 1 | 2007-09-10 07:23 |
| ksoap parsing problem with nokia 3510i | _KLiFF | Mobile Java Networking & Messaging & Security | 0 | 2004-03-23 11:37 |
