i write the flow
at the client side
my $soap = SOAP::Lite->uri(
'Menu/SOAP')->proxy('<url>/a.cgi',
timeout => $timeout) ;
my $response;
$response = $soap->find_services($obj, $instance);
at the server side
a.cgi
use SOAP::Transport::HTTP;
use Menu::SOAP;
SOAP::Transport::HTTP::CGI
-> dispatch_to('Menu::SOAP')
-> handle;
at Menu/SOAP.pm
sub find_services {
}
I don't write the code of find_services as the program dies in the parsing beforehand.
I would be happy to give more information when needed
|