Re: Nested SOAP parameters
Re: Nested SOAP parameters
- Subject: Re: Nested SOAP parameters
- From: Ivan C Myrvold <email@hidden>
- Date: Thu, 4 Oct 2007 19:08:57 +0200
No, that doesn't work. I have thought of that myself and tried it,
but the resulting SOAP code will be:
<person xsi:type="SOAP-ENC:Dictionary">
<name xsi:type="xsd:string">ivan</name>
</person>
Den 4. okt. 2007 kl. 18:06 skrev Dave Hersey:
I haven't looked at the SOAP stuff in a while, but have you tried
storing the person
parameters in a separate dictionary, and then passing that
dictionary as a parameter?
personDict = [NSDictionary dictionaryWithObjectsAndKeys:@"ivan",
@"name", nil];
params = [NSDictionary dictionaryWithObjectsAndKeys: personDict,
@"person", nil];
Conceptually, that will create params with the structure you're
describing, so that's
how I'd expect it to work.
- d
On Oct 4, 2007, at 5:48 AM, Ivan C Myrvold wrote:
How do I make nested SOAP parameters in Cocoa?
If I want to send a parameter like
<name>ivan</name>
I can simply set
WSMethodInvocationSetParameters(soapCall, (CFDictionaryRef)params,
nil);
where
params = [NSDictionary dictionaryWithObjectsAndKeys:@"ivan",
@"name", nil);
But what if I have a parameter like:
<person>
<name>ivan</name>
</person>
How do I pass that to WSMethodInvocationSetParameters?
Ivan
_______________________________________________
Cocoa-dev mailing list (email@hidden)
Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden
_______________________________________________
Cocoa-dev mailing list (email@hidden)
Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden