vote up 0 vote down star
5

I'm going to use gSOAP to interact with a WCF webservice in my Mac project. It does pretty much exactly what I need and it does it well (pretty much the exact opposite of WSMakeStubs;)). The only downside is that it's C/C++ only, meaning I either need to convert all my types into C types on the fly or write a complete wrappering solution to do it for me.

I'd rather not reinvent the wheel here, and I'm obviously not the only one who has wanted to do this, but so far I haven't been able to find anybody who has actually posted any code to this effect.

Does anybody know of any code available that would save me from having to write the whole thing myself?

flag

3 Answers

vote up 0 vote down check

I'd say the current answer is "No".

link|flag
vote up 1 vote down

I'm working on a wrapper generator (or possibly modifications to gSOAP itself to contribute back); I'm not done and won't be for a little while.

Note: I'm one of the folks you linked to.

link|flag
Very glad to hear it! If you think of posting back here when you're ready to share it I'd love to know that it was available for experimenting with. – Lawrence Johnston Dec 1 '08 at 21:36
vote up 1 vote down

(It doesn't quite answer your question, but) I've used the techniques used in Cocoa SOAP Client (open source) to connect to a server and send/receive SOAP requests. It works really well, unless you are connecting to a server with a self-signed SSL certificate.

(This basically translates XML structures into native Cocoa structures, and back the other way on sending).

We use gSOAP at work, and it does the job, but makes lots of generated code, and limits you to working in particular ways with the data.

link|flag
Sorry for the nob question. Can "SOAP Client" be used in an iPhone project? I am having trouble figuring out the best way to consume web services. – JWD Jun 12 at 14:28
I suggest you consider asking this as a standalone question. – Matthew Schinckel Jun 13 at 12:56

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.