Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    
    ...
    my $info = $service->getEmpInfo( '', $payload );
    
    print Data::Dumper->new( [$info], [qw/$info/] )->Indent(1)->Dump;
    
  2. or download this
    my $info = $service->getEmpInfo( '', $payload );
    
  3. or download this
    my $info = $service->getEmpInfo( $payload );
    
  4. or download this
    
       <xs:complexType name='getEmpInfo'>
    ...
         <xs:element minOccurs='0' name='persKeyParam' type='xs:string'/>
        </xs:sequence>
       </xs:complexType>
    
  5. or download this
      <operation name='getEmpInfo'>
       <soap:operation soapAction=''/>
    ...
        <soap:body use='literal'/>
       </output>
      </operation>
    
  6. 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>
    
  7. 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>