Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Net::KashFlow and broken XML produced by SOAP::Lite

by ghenry (Vicar)
on Mar 10, 2015 at 16:55 UTC ( [id://1119550]=perlquestion: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    sub email {
        my ($self, $data) = @_;
    ...
        }
        $self->{kf}->_c("EmailInvoice", $data);
    }
    
  2. or download this
    <?xml version="1.0" encoding="UTF-8"?>
    <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" 
    +xmlns:s1="KashFlow/AbstractTypes" xmlns:soapenc="http://schemas.xmlso
    +ap.org/soap/encoding/" xmlns:tns="KashFlow" xmlns:xsd="http://www.w3.
    +org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-insta
    +nce" soap:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
    ...
          </EmailInvoice>
       </soap:Body>
    </soap:Envelope>
    
  3. or download this
    EmailInvoice => {
        endpoint => 'https://securedwebapp.com/api/service.asmx',
    ...
          SOAP::Data->new(name => 'RecipientEmail', type => 'xsd:string', 
    +attr => {}),
        ], # end parameters
      }, # end EmailInvoice
    
  4. or download this
    sub _c {
        my ($self, $method, @args) = @_;
    ...
        if ($explanation) { croak($explanation) }
        return $result;
    }
    
  5. or download this
    $VAR1 = {
              'FromName' => 'Billing',
    ...
              'InvoiceNumber' => '239925',
              'SubjectLine' => 'Invoice from Billing for February 2015'
            };
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: perlquestion [id://1119550]
Approved by marto
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others exploiting the Monastery: (7)
As of 2024-04-26 08:45 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found