Leser: 1
10 Einträge, 1 Seite |
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
29
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Body>
<RouteShipmentResponse xmlns="http://xlogics.pl/xpack/webservices">
<RouteShipmentResult>false</RouteShipmentResult>
<aRoutingData>
<RoutingCode />
<RoutingCodeData />
</aRoutingData>
<aAddressCorrectionInfo>
<CorrectedName />
<CorrectedZIP />
<CorrectedCity />
<CorrectedDistrict />
<CorrectedStreet />
<Streets>
<string>Promenade</string>
<string>Promenadenstr.</string>
</Streets>
<Cities><string /></Cities>
<Districts><string /></Districts>
<ZIPs><string /></ZIPs>
</aAddressCorrectionInfo>
<aErrorMessage />
</RouteShipmentResponse>
</soap:Body>
</soap:Envelope>
1
2
3
4
5
6
7
8
9
10
[..blablabla..]
my ($som) = $service->call($method => @params, $envHeader);
[..blablabla..]
printf "\nStreets: ";
foreach $street ($som->valueof('//Streets')) {
printf "\n\t%s", $street->{string};
}
QuoteStreets:
Promenadenstr.
1
2
3
4
5
6
7
8
my $versions = $jira->call("jira1.getVersions", $auth, $project)->result;
foreach (@$versions) {
if ( $_->{'name'} eq $name ) {
#return $_->{'id'};
return $_;
}
}
QuoteThis is perl, v5.8.8 built for MSWin32-x86-multi-thread
(with 25 registered patches, see perl -V for more detail)
Copyright 1987-2006, Larry Wall
Binary build 817 [257965] provided by ActiveState http://www.ActiveState.com
Built Mar 20 2006 17:54:25
QuoteSOAP-Lite-0.65_3
1
2
3
4
5
6
7
my ($som) = $service->call($method => @params, $envHeader);
## Auswertung
if ($som->fault) {
printf "Ein Fehler (%s) ist aufgetreten: %s\n", $result->faultcode, $result->faultstring;
} else {
@result = $som->paramsout;
Quotewelche dokumentation? ^^
Quoteich hab mir das ding erklärt, indem ich in die sourcen geschaut hab.
Quoteder server, auf den du zugreifst, ist das ein public, oder intern mit geheimen Daten?
10 Einträge, 1 Seite |