DE ♦ EN

IBAN-BIC.com (Theano GmbH)  » Web Service  » Documentation  » Sample Clients  » Beispiel: Perl

Forgot password?

Contact
us

New customer? Register

Sample SOAP Client in Perl

SOAP Clients can be written in many programming languages - in addition to PHP, here we also show a Perl example.

(this code was made available by Pro Saldo - thanks!)

  1. #!/usr/bin/perl -w
  2. use strict;
  3. use diagnostics;
  4. use warnings;
  5. use Data::Dumper;
  6.   require SOAP::Lite;
  7. };
  8. die "Fehler:\n$@\n\n" if $@;
  9. my $soap = SOAP::Lite->new();
  10. my $service = $soap->service('https://ssl.ibanrechner.de/soap?wsdl');
  11. print Dumper($service->calculate_iban('DE', '50010517', '648479930', 'user name', 'password'));
  12.