in reply to SOAP::Lite and raw xml
This will generate a SOAPAction: "http://www.vrom.nl/wkpb/stuf#potato" header and the following soap body: <wkpb-stuf:potato> aanvraag</wkpb-stuf:potato>my $method = SOAP::Data -> prefix ('wkpb-stuf') -> name( 'potato' ) ;
This will make a SOAPAction: "#potato" header and this soap body: <potato> aanvraag</potato>my $soap = SOAP::Lite # ... ->call( potato => SOAP::Data->type( xml => $aanvraag );
I hope that gives you enough hints to solve your issue.
|
|---|