How to generate this SOAP xml request?

Hi,

I trigger the SOAP calls like:

factory = SOAP::RPC::Driver.new('https://blahblah', "urn:services:m33") factory.add_method('register', 'registrationData') factory.register(registrationData)

I've been able to call SOAP methods where several unique arguments are given. But in the code above the object registrationData is supposed to contain a registrationDataBean which is composed by other sub-items.

Any hints how that object should be created?

The resulting SOAP xml should be like:

<soapenv:Envelope>   <soapenv:Body>     <ns1:register>       <registrationData href="#id0"/>     </ns1:register>

    <multiRef id="id0" soapenc:root="0" ... xsi:type="ns2:RegistrationInfoBean">       <eventEnum href="#id1"/>       <time href="#id2"/>       <UTC href="#id3"/>       <password xsi:type="xsd:string">   password1       </password>       <number href="#id4"/>       <valid href="#id5"/>     </multiRef>

    <multiRef id="id5" soapenc:root="0" ... xsi:type="xsd:boolean">       false     </multiRef>

    <multiRef id="id3" soapenc:root="0" ...>       12345     </multiRef>

    ... rest of multiRefs

  </soapenv:Body> </soapenv:Envelope>

I think I could manually generate the required XML but I'd like to see what is the correct way to avoid that manual work.

Thanks.

Anyone?

I'm checking from: - http://dev.ctor.org/doc/soap4r/ - http://dev.ctor.org/soap4r

I'm sure the info is in front of my eyes but...

Cheers.

Hi, I guess this can be ignored. I found out that the best way to do this is not by generating the soap request manually but leave that work to wsdl2ruby.

I followed this: Ruby + SOAP4R + WSDL Hell | www.brendonwilson.com and I'm already making a SOAP call to the method I intended.

Regards