in reply to Re: Generating multiref tags from SOAP::Lite
in thread Generating multiref tags from SOAP::Lite

Hi Oliver -

I'd found multirefinplace() but couldn't get it to work. The following code produces the same XML with or without multirefinplace()

use SOAP::Lite +trace => qw( debug ); my $param = SOAP::Data ->type('myType') ->name('in0' => \SOAP::Data->value( SOAP::Data->new(name => 'var1', type => 'xsd:boolean', value => +"true" ), SOAP::Data->new(name => 'var3', type => 'xsd:string', value => " +hello" ), )); SOAP::Lite -> service('http://www.xmethods.net/sd/StockQuoteService.wsdl') -> multirefinplace(1) -> getQuote($param);

- Jon