N
niraj.kumar.ait
Hi,
How to pass parameter to method in SOAP::Lite. Like I want to set ABC
to xyz,CCNA to sdf
my $result = SOAP::Lite
->service('https://192.168.9.1/imaPreOrder/preOrder?WSDL')
->getCSR('ABC' => 'xyz',
'CCNA' => 'sdf',
);
I even tried SOAP :: Data
my $result = SOAP::Lite
->service('https://192.168.9.1/imaPreOrder/preOrder?WSDL')
->getCSR(SOAP:ata->name("ABC" => "xyz")
SOAP:ata->name("CCNA" => "I28"),
);
But these is not working .Please advice on how to pass data.
TIA
Niraj Kumar
How to pass parameter to method in SOAP::Lite. Like I want to set ABC
to xyz,CCNA to sdf
my $result = SOAP::Lite
->service('https://192.168.9.1/imaPreOrder/preOrder?WSDL')
->getCSR('ABC' => 'xyz',
'CCNA' => 'sdf',
);
I even tried SOAP :: Data
my $result = SOAP::Lite
->service('https://192.168.9.1/imaPreOrder/preOrder?WSDL')
->getCSR(SOAP:ata->name("ABC" => "xyz")
SOAP:ata->name("CCNA" => "I28"),
);
But these is not working .Please advice on how to pass data.
TIA
Niraj Kumar