- or download this
#!/usr/bin/perl
...
my $info = $service->getEmpInfo( '', $payload );
print Data::Dumper->new( [$info], [qw/$info/] )->Indent(1)->Dump;
- or download this
my $info = $service->getEmpInfo( '', $payload );
- or download this
my $info = $service->getEmpInfo( $payload );
- or download this
<xs:complexType name='getEmpInfo'>
...
<xs:element minOccurs='0' name='persKeyParam' type='xs:string'/>
</xs:sequence>
</xs:complexType>
- or download this
<operation name='getEmpInfo'>
<soap:operation soapAction=''/>
...
<soap:body use='literal'/>
</output>
</operation>
- or download this
<?xml version="1.0" encoding="UTF-8"?>
<soap:Envelope soap:encodingStyle="http://schemas.xmlsoap.org/soap/enc
+oding/" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:
+soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsi="http:/
+/www.w3.org/2001/XMLSchema-instance" xmlns:tns="http://webservice.my.
+work/" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
...
</tns:getEmpInfo>
</soap:Body>
</soap:Envelope>
- or download this
<?xml version="1.0" encoding="UTF-8"?>
<soap:Envelope soap:encodingStyle="http://schemas.xmlsoap.org/soap/enc
+oding/" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:
+soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsi="http:/
+/www.w3.org/2001/XMLSchema-instance" xmlns:tns="http://webservice.my.
+work/" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
...
</tns:getEmpInfo>
</soap:Body>
</soap:Envelope>