Viral Parmar
Viral Parmar

Reputation: 488

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.

Upvotes: 3

Views: 783

Answers (2)

RAM
RAM

Reputation: 2769

Although it's a very late suggestion, Apache Axis is a free/open source software SOAP stack that appears to fit your needs.

Upvotes: 0

Mat
Mat

Reputation: 206859

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.

Upvotes: 2

Related Questions