Help for this page

Select Code to Download


  1. or download this
    <?xml version="1.0" encoding="UTF-8"?>
    <soap:Envelope ...>
    ...
    </getStamp>
    </soap:Body>
    </soap:Envelope>
    
  2. or download this
    <?xml version="1.0" encoding="UTF-8"?>
    <soap:Envelope ...>
    ...
    </getStamp>
    </soap:Body>
    </soap:Envelope>
    
  3. or download this
    $client = SOAP::Lite
      -> proxy($endpoint);
    ...
    $client->default_ns($namespace);
    
    $res = $client->getStamp($xml_file);
    
  4. or download this
    $method = SOAP::Data->name('getStamp')->attr({xmlns => $namespace});
    $res = $client->call('getStamp',
    SOAP::Data->name('getStamp')->attr({xmnls => $namespace})->value($xml_
    +file)
    );
    
  5. or download this
    <?xml version="1.0" encoding="UTF-8"?>
    <soap:Envelope ...>
    ...
    </getStamp>
    </soap:Body>
    </soap:Envelope>