Help for this page

Select Code to Download


  1. or download this
    
    $header = SOAP::Header->name(
    ...
              SOAP::Header->name("msg" => "Ok")
         )
    );
    
  2. or download this
    $data = SOAP::Data->name(
        "status"=>\SOAP::Data->value(
    ...
            SOAP::Data->name("msg" => "Ok")
        )
    );
    
  3. or download this
    $VAR1 = {
        'status' => {
    ...
            'code' => '0'
        }
    };
    
  4. or download this
    $VAR1 = {
        'msg' => 'Ok',
        'code' => '0'
    };