PDA

View Full Version : Qt soap api?



newb_developer
19th June 2012, 18:08
Hello,
I found information about Qt SOAP API:
http://doc.qt.nokia.com/solutions/4/qtsoap/index.html

However, I can't find it. Is it still available?

I found: http://qt.gitorious.org/qt-solutions/qt-solutions/trees/master/qtsoap/src

1. Is it better for simple SOAP queries than gSOAP? Or should I use gSOAP nowadays?

walidos
19th June 2012, 19:47
Take a look gSOAP (http://www.cs.fsu.edu/~engelen/soap.html), it generates the client stub using wsdl2h tool, then you just call your remote methods like they are local methods.

if you want to try it read this gsoap with qt (http://qt-project.org/wiki/How_to_use_gSOAP_with_Qt_for_Web_Service_Client)

i didn't try qtsoap but i think using it you should handle manually your requests responses ...

wysota
19th June 2012, 20:19
Hello,
I found information about Qt SOAP API:
http://doc.qt.nokia.com/solutions/4/qtsoap/index.html

However, I can't find it. Is it still available?

I found: http://qt.gitorious.org/qt-solutions/qt-solutions/trees/master/qtsoap/src

1. Is it better for simple SOAP queries than gSOAP? Or should I use gSOAP nowadays?

It really depends on what you need. If qt-soap can handle the encoding you need to use then it should be fine. It's definitely much easier to use than gSOAP and fits the Qt environment much better.

newb_developer
19th June 2012, 21:28
Thank you. So I'll try QtSoap first.