Help for this page

Select Code to Download


  1. or download this
     
    <?xml version="1.0" encoding="UTF-8"?><SOAP-ENV:Envelope xmlns:xsi="ht
    +tp://www.w3.org/1999/XMLSchema-instance" xmlns:SOAP-ENC="http://schem
    +as.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap
    +.org/soap/envelope/" xmlns:xsd="http://www.w3.org/1999/XMLSchema" SOA
    +P-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><SOAP
    +-ENV:Body><Test xmlns="http://test.test.test">TEXT_APPEAR</Test></SOA
    +P-ENV:Body></SOAP-ENV:Envelope>
    
    ...
    Client-Date: Wed, 11 Jun 2008 10:21:18 GMT
    Client-Peer: 127.0.0.1:7650
    SOAPAction: ""
    
  2. or download this
    use SOAP::Lite + trace => 'debug';
    my $svc;
    ...
    $resp = $svc->Test('TEXT_APPEAR');
    }; 
    die "Got Error: $@" if($@);
    
  3. or download this
    <?xml version="1.0" encoding="UTF-8"?><SOAP-ENV:Envelope xmlns:xsi="ht
    +tp://www.w3.org/1999/XMLSchema-instance" xmlns:SOAP-ENC="http://schem
    +as.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap
    +.org/soap/envelope/" xmlns:xsd="http://www.w3.org/1999/XMLSchema" SOA
    +P-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><SOAP
    +-ENV:Body><Test xmlns="http://test.test.test"><Test>TEXT_APPEAR</Test
    +></Test></SOAP-ENV:Body></SOAP-ENV:Envelope>
     
    ...
    Client-Date: Wed, 11 Jun 2008 10:21:18 GMT
    Client-Peer: 127.0.0.1:7650
    SOAPAction: ""
    
  4. or download this
    use SOAP::Lite + trace => 'debug';
    my $svc;
    ...
           => "TEXT_APPEAR");
    }; 
    die "Got Error: $@" if($@);
    
  5. or download this
     
    <?xml version="1.0" encoding="UTF-8"?><SOAP-ENV:Envelope xmlns:xsi="ht
    +tp://www.w3.org/1999/XMLSchema-instance" xmlns:SOAP-ENC="http://schem
    +as.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap
    +.org/soap/envelope/" xmlns:xsd="http://www.w3.org/1999/XMLSchema" SOA
    +P-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><SOAP
    +-ENV:Body><Test xmlns="http://test.test.test"><c-gensym3 xsi:type="xs
    +d:int">TEXT_APPEAR</c-gensym3></Greeter></SOAP-ENV:Body></SOAP-ENV:En
    +velope>
    
    ...
    Content-Type: text/xml; charset=utf-8
    Client-Date: Wed, 11 Jun 2008 10:29:25 GMT
    Client-Peer: 127.0.0.1:7650