Is there an Objective-C Wrapper for gSOAP?

I am going to use gSOAP to interact with the WCF web service in my Mac project. It does pretty much what I need, and it does it well (pretty much the exact opposite of WSMakeStubs;)). The only drawback is that it is only C / C ++, that is, I need to either convert all my types to C types on the fly, or write a complete wrapper solution to do this for me.

I would prefer not to reinvent the wheel here, and I am obviously not the only one who wanted to do this, but so far I have not been able to find anyone who has actually published any code for this.

Does anyone know of any available code that will save me from having to write all this myself?

+3
source share
3 answers

I would say that the current answer is "No."

I ended up creating an Objective-C wrapper mainly manually for my web service (including category methods for NSArray to translate NSArray X into an X array of soap and vica versa, etc.), as it was a one-time one and I did not expect it to be will change especially often. I am happy with this, but I need to change it manually whenever the signature is changed or a method is added.

+1
source

( , ) , Cocoa SOAP Client ( ) / SOAP. , SSL.

( XML Cocoa ).

gSOAP , , .

+2

I am working on a wrapper generator (or perhaps modifying gSOAP itself to contribute); I have not finished and will not be for a while.

Note. I am one of those with whom you contacted.

+2
source

All Articles