Help for this page

Select Code to Download


  1. or download this
        my $som = $soap->call(soap_xml_data $xml_doc);
    
  2. or download this
    sub soap_xml_data {
        my ($value) = @_;
    ...
    
    # object can't be broken by set_value
    sub set_value { return shift(); }
    
  3. or download this
        sub dispatched_method {
            ....
            return soap_response_body(soap_xml_data($xml_doc));
        }
    
  4. or download this
    sub soap_response_body {
        my ($soap_data) = @_;
    ...
        }
        goto $orig_envelope_sub;
    };