|
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' ), ... )
+;
|