Connecting Tech Pros Worldwide Help | Site Map

nuSOAP + attributes?

  #1  
Old November 10th, 2005, 10:15 AM
spoonlikesham@gmail.com
Guest
 
Posts: n/a
I've never used SOAP before, so am more than a little foggy on it. Just
doing a project where it's basically the only way, and due to
limitations on the server, I have to use nuSOAP (unless there's a
better option that runs as a class...). Anyway, I've got it talking to
the server happily.. Just not passing attributes. This is what I need,
in straight SOAP XML stuff...

<platformCore:email>eblack@yahoo.com</platformCore:email>
<platformCore:password>Cracker1</platformCore:password>
<platformCore:account>111111</platformCore:account>
<platformCore:role internalId="3"/>

And as far as I can see nuSOAP is called by

$foo->call('login',$array);

or similar. This is working. The bit I'm having trouble with is setting
the internalId attribute on the role.

array(
'email'=>'eblack@yahoo.com',
'password'=>'Cracker1',
'account'=> '111111',
'role'=> array('name'=>'role', 'value'=>'') //need to add the
internalId attribute
//'role internalID="14"' => '' // outputs XML like
);

Something like that. I've tried so many things, and get various errors
back.. basically no dice though. It's talking, but rejecting me if I
don't have an internalID or something else isnt right in the SOAP XML.

For reference the second option above (commented out one) outputs
something like this in XML (I assume...)

<platformCore:role internalId="14"></platformCore:role internalId="14">

And it falls over at the whitespace in the closing tag. The first
option just achieves nothing ;).

Any suggestions?

Thanks,
Spoon

Closed Thread


Similar Threads
Thread Thread Starter Forum Replies Last Post
how to assign attributes to paramater in php for nusoap client johnners answers 4 July 20th, 2007 06:03 PM
VB6 OR VBA & Webbrowser DOM Tiny $50 Mini Project Programmer help gunimpi answers 0 January 10th, 2007 08:55 PM