I'm looking for a simple C++ WebService Client Library that can be easily linked into my application.
Preferably this library:
Before anyone of you answers .NET: been there, tried it. My major objections against .NET are:
I already used Google to look up this information, but I couldn't find one.
Thanks
EDIT: To clarify this further, I really want something where I can write code like this (or something in this style):
SoapClient mySoapClient;
mySoapClient.setURL("http://someserver/somewebservice");
mySoapClient.setMethod("DoSomething");
mySoapClient.setParameter(1,"Hello");
mySoapClient.setParameter(2,12345);
mySoapClient.sendRequest();
string result;
mySoapClient.getResult(result);
No dynamic code generation.
Have you looked at gSOAP? I think it will be suitable for your needs.