So today I seriously sat down to write some code in Cocoa - I've had a hankering for it for the last little while, and acme's work with offline clients at work has been pushing me a little closer to actually doing something about it...
I was impressed with the little I'd seen before, but now I'm wowed. Everything seems to fit together in just the right way, and its lovely to work with.
I do have a problem however. I want to get my nice little application to call some SOAP services. There is no Objective-C SOAP library that I can find, so I'm kinda hovering between a few options.
Ho hum...
CamelBones (Score:2)
Of course I'm yet to manage it. But I'm sure it's possible. I'd love someone to write up how to do it.
Re:CamelBones (Score:1)
The main thing you have to do is recompile the camelbones framework to be distributable within the application. There is an article [cocoadevcentral.com] that discribes what you have to do to compile the framework, and then how to copy and reference the framework in your application.
Re:CamelBones (Score:1)
I'm very impressed with the C/J bridge - I've not had a problem with type munging yet (but then again I'm passing simple strings). Its not like I've never seen a piece of glue like this before -- I mean Perl does it all the time -- but its always impressive to see it done so well in another language