Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Using webservice in Qt

I was surfing through various article related to Webservice in Qt , but unfortunatly didn't got what i was looking for. I am using .Net webservice with SOAP, and want to parse this service. Gone through various related article, but the basic problem that i am facing is to get the Soap libraries? Where to download from? And how to integrate? And this will really work for me?

Thank You.

like image 556
Viral Parmar Avatar asked Jan 29 '26 07:01

Viral Parmar


1 Answers

Your best bet is probably integrating gSOAP into your Qt application. (Make sure it's Licensing terms are ok for you.)

A good run-down of how to do the integration is GSoap: SAOP and XML Web services for Qt apps (includes a sample .zip file). That doesn't require a specific version of Qt (since gSOAP is doing all the work essentially), so anything modern-ish should do.

like image 95
Mat Avatar answered Jan 30 '26 20:01

Mat