Help for this page

Select Code to Download


  1. or download this
     
        <SOAP-ENV:Header>
            <Security xmlns="http://schemas.xmlsoap.org/ws/2002/xx/secext"
    +>
    ...
            </Security>
        </SOAP-ENV:Header>
    
  2. or download this
     
    use SOAP::Lite +trace;
    my $client = SOAP::Lite
    ...
    $elem2 = SOAP::Data->name('ELEM2' => "value2");
    $response = $client->mymethod($elem1,$elem2);
    
  3. or download this
     
    my $client = SOAP::Lite
            ->readable(1)
    ...
            ->proxy($proxy)
            ->envelope($envelope);