in reply to wsdl 2 soap::lite
results:#!/usr/local/bin/perl use soap::wsdl; my $url_of_wsdl = undef; my $result = undef; my $url_of_wsdl = "<soapenv:Envelope xmlns:soapenv='http://schemas.xml +soap.org/soap/envelope/' xmlns:ping='http://xmlschema.tmi.somemajorco +mpany.com/xsd/Enterprise/BaseTypes/types/ping_v1'> <soapenv:Header/> <soapenv:Body> <ping:ping/> </soapenv:Body> </soapenv:Envelope>"; my $client = SOAP::WSDL->new(wsdl => $url_of_wsdl); my $result = $client->$method(@arguments);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: wsdl 2 soap::lite
by Anonymous Monk on Jun 23, 2015 at 23:37 UTC |