PDA

View Full Version : QtSoap



ComaWhite
1st March 2008, 19:40
I know QtSoap is commerical. But is there a a gpl version of it? I just need to send a receive to the web service. I don't need to build my own or anything. But it kinda sucks that it's only for commerical use and not open source. I kinda find it a low blow that they would do it. If there isn't an open source one.

I've tried looking in portage on Gentoo for a soap library but only found it for other languages.

pherthyl
2nd March 2008, 00:09
gsoap? http://www.cs.fsu.edu/~engelen/soap.html
Haven't used it but...

wysota
2nd March 2008, 09:36
Is soap a requirement or are you just looking for an RPC solution?

ComaWhite
2nd March 2008, 14:49
I just need to be able to communicate with the web service, extract data and send it. I don't need to create my web service or anything.

wysota
2nd March 2008, 15:44
If you need it for a single (or a limited number of) query then I suggest you craft the request manually (either using QtXml or even inside a string), send it using QHttp and receive a reply in response.

ComaWhite
2nd March 2008, 15:54
Thank you for the help :).