I'm using a client generated by wsdl2objc successfully, but the service it consumes will soon be changed to require a user identifying string in the SOAP header.
The closest thing I can find is in the client code's main function:
NSMutableDictionary *headerElements = nil;
headerElements = [NSMutableDictionary dictionary];
I'm okay with hard-coding a header here, because I don't expect my user key to change, but how is it supposed to be done?