Thread SOAP::Lite und "no element found"
(19 answers)
Opened by bianca at 2015-03-27 07:21
Könnt ihr das hier bitte nochmal laufen lassen und mir die Versionen posten?
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 use strict; use warnings; use SOAP::Lite +trace => [transport => \&soap_trace]; use Data::Dumper; use XML::Parser; use IO::Socket::SSL; print "Version SOAP::Lite: ".(defined $SOAP::Lite::VERSION ? $SOAP::Lite::VERSION : '- nicht inst. -')."\n"; print "Version XML::Parser: ".(defined $XML::Parser::VERSION ? $XML::Parser::VERSION : '- nicht inst. -')."\n"; print "Version IO::Socket::SSL: ".(defined $IO::Socket::SSL::VERSION ? $IO::Socket::SSL::VERSION : '- nicht inst. -')."\n"; sub soap_trace { my ($in) = @_; print '-' x 80; print "\n".Dumper($in); } my $url = 'https: //ssl. ibanrechner. de/soap/?wsdl'; # BLANKS ENTFERNEN! my $soap = SOAP::Lite->new(); my $service = $soap->service($url); Ich verstehe nicht, was da bei mir kaputt ist. Was sind denn da noch alles für Module beteiligt? 10 print "Hallo"
20 goto 10 |