I'm building a Framework with some exported extern "C" functions in
Objective-C++, based on this example:
http://developer.apple.com/internet/webservices/webservicescoreandcfnetwork.html
Because this is a Framework, it doesn't have its own main() function
to set up an NSAutoreleasePool. So I
Quoting myself:
1. Is there any Cocoa object, or combination of objects, that I can
use to generate the required XML without having to call
WSMethodInvocationAddSerializationOverride()?
I still haven't found an answer to this.
2. Is there something built-in I can call in my serialization ove
I'm writing some Objective-C (actually Objective-C++) code to create a
Cocoa framework to call into a Web Service (hosted in ASP.NET) using
WSMethodInvocationInvoke(), based on the example from here:
http://developer.apple.com/internet/webservices/webservicescoreandcfnetwork.html
This works g