Thread WSDL (53 answers)
Opened by bianca at 2010-05-22 16:12

esskar
 2010-05-21 18:37
#137508 #137508
User since
2003-08-04
7321 Artikel
ModeratorIn

user image
hallo. ja, es liegt wohl an dem Map.

mein ansatz war
Code (perl): (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/perl

require 5.8.0;
use strict;
use warnings;
# use diagnostics;

use Data::Dumper;
use SOAP::Lite 0.711 +trace => 'all';
 
my $soap = SOAP::Lite->new();
my $service = $soap -> service ('http://dev.iban-bic.com/Riban/soap2/?wsdl');
my $params = SOAP::Data->value(
        SOAP::Data->name(country => 'DE'), 
        SOAP::Data->name(language => 0),
)->type('tns:Map');
# die Dumper($params);

my $rc = $service->get_form($params, 'foo', 'bar');
die $rc->faultstring if $rc->fault;
print Dumper(\$rc);


aber das bringt auch nicht wirklich etwas.

View full thread WSDL