SOAP-Lite - Re: filling out xmlns in method element while using WSDL

Posted on Wed Jun 6 10:11:16 2007 by glauron in response to 5328 (See the whole thread of 2)
Re: filling out xmlns in method element while using WSDL
Was pretty simple after all that... add a "proxy( $server )" when creating the service is all it needed. It was giving errors which were actually responses from the server. :| Thx anyway.
my $method = SOAP::Data->name('Method')->attr( {xmlns => 'Name Space'} ); my $service = SOAP::Lite->service( $service )->proxy( $server ); $response = $service->call( $method, SOAP::Data->type('string')->name( Account => '111111' ), ... ) +;
Write a response