Help for this page

Select Code to Download


  1. or download this
    print SOAP::Lite
      -> proxy('http://homepages.feis.herts.ac.uk/~123456/cgi-bin/policy.c
    +gi')
    ...
      -> checkPolicyPrice($policyCode,$date)
      -> result;
    
  2. or download this
    use Carp;
    my $s = new SOAP::Lite +trace; # not sure if this goes on the use stat
    +ement or the optional constructor method
    ...
    $s-> checkPolicyPrice($policyCode,$date) or confess;
    my $output = $s-> result or confess;
    print $output;