Thread Perl und webservice HILFEE (9 answers)
Opened by breakflyin at 2007-08-17 13:35

breakflyin
 2007-08-17 16:01
#98325 #98325
User since
2007-08-17
6 Artikel
BenutzerIn
[default_avatar]
jo hab mich verschrieben ....

Code (perl): (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#! perl

use strict;
use CGI::Carp qw(fatalsToBrowser);
use CGI qw(:standard escapeHTML);
use SOAP::Lite;


print header(), start_html();

print p('SOAP Anfrage...');


my $return;
my $return1;

my $soap = SOAP::Lite 
->service('http://testserver/soap/Parametertest/Parametertest.asmx?wsdl');

$return = $soap->HelloWorld();
$return1= $soap->Add(5,3),"\n";

print h4("return: $return");
print h5("Rückgabe Wert: $return1");


print p('SOAP ENDE');
print end_html();


Die parameter werden nicht angenommen.

View full thread Perl und webservice HILFEE