Wir haben die unten xml
gegeben und müssen in Perl übersetzen.Soap :: Lite Perl Grundlegende Abfrage
POST /carrierintegrationapi.asmx HTTP/1.1
Host: carrierintegrationapi.3tlogistics.net
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "https://carrierintegrationapi.3tlogistics.net/Login"
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Header>
<CiSoapHeader xmlns="https://carrierintegrationapi.3tlogistics.net/">
<Username>cccict</Username>
<Password>xxxxxx</Password>
<AuthenticationToken>string</AuthenticationToken>
</CiSoapHeader>
</soap:Header>
<soap:Body>
<Login xmlns="https://carrierintegrationapi.3tlogistics.net/" />
</soap:Body>
</soap:Envelope>';
Unser Versuch:
my $service = SOAP::Lite
-> service ('https://carrierintegrationapi.3tlogistics.net/carrierintegrationapi.asmx');
my $AuthHeader = SOAP::Header->new(
name =>'AuthenticationHeader',
attr => { xmlns => "https://carrierintegrationapi.3tlogistics.net/" },
value => {Username => 'cccict', Password => 'xxxxxx' },
);
my $result = $service->GetIt($AuthHeader);
Wir bekommen nicht übereinstimmen Tag in parser.pm
?
@Ehsan Bitte fügen Sie nicht "Danke für Ihre Zeit: D" zu Fragen. Es ist unnötiger Lärm und gehört nicht in Beiträge. Bitte verwenden Sie auch keine Inline-Code-Formatierung für Dinge, die kein Code sind, wie "xml" (was sowieso "XML" sein sollte). – ThisSuitIsBlackNot