问题描述
第一次发帖,请原谅任何违反论坛规则等的行为.我正在尝试使用 DHL api 来跟踪货件.
First post so forgive any breach of forum rules etc.I am trying to use the DHL api to track shipments.
这是我目前拥有的代码
$client = new SoapClient("https://wsbuat.dhl.com:8300/gbl/glDHLExpressTrack?wsdl");
//$header = new SoapHeader("https://wsbuat.dhl.com:8300/gbl/glDHLExpressTrack?wsdl", "APICredentials", $auth, false);
//$client->__setLocation('https://wsbuat.dhl.com:8300/gbl/glDHLExpressTrack?wsdl');
$header_part = '<soapenv:Envelope xmlns:rat="https://wsbuat.dhl.com:8300/gbl/glDHLExpressTrack?wsdl"
xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
<soapenv:Header>
<wsse:Security soapenv:mustUnderstand="1" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wsswssecurity-
secext-1.0.xsd">
<wsse:UsernameToken wsu:Id="UsernameToken-5" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-
wss-wssecurity-utility-1.0.xsd">
<wsse:Username>myusername</wsse:Username>
<wsse:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-
1.0#PasswordText">mypassword</wsse:Password>
<wsse:Nonce EncodingType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-soap-message-security-
1.0#Base64Binary">eUYebYfsjztETJ4Urt8AJw==</wsse:Nonce>
<wsu:Created>2010-02-12T17:40:39.124Z</wsu:Created>
</wsse:UsernameToken>
</wsse:Security>
</soapenv:Header>';
$soap_var_header = new SoapVar( $header_part, XSD_ANYXML, null, null, null );
$soap_header = new SoapHeader( 'https://wsbuat.dhl.com:8300/gbl/glDHLExpressTrack', 'wsse', $soap_var_header, true );
$client->__setSoapHeaders($soap_header);
如果我这样做
var_dump($client->__getFunctions())
var_dump($client->__getFunctions())
我得到以下信息:
array(1) { [0]=> string(83) "trackShipmentRequestResponse trackShipmentRequest(trackShipmentRequest $parameters)" }
我的问题真的是有人知道如何格式化 trackShipmentRequest
My question really is does anyone know how to then format the trackShipmentRequest
$client->trackShipmentRequest(what goes here);
这里是DHL给我的xml在soapui中使用的例子
Here is an example of the xml given to me by DHL to be used in soapui
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:trac="http://scxgxtt.phx-dc.dhl.com/glDHLExpressTrack/providers/services/trackShipment" xmlns:dhl="http://www.dhl.com">
<soapenv:Header/>
<soapenv:Body>
<trac:trackShipmentRequest>
<trackingRequest>
<dhl:TrackingRequest>
<Request>
<ServiceHeader>
<MessageTime>2013-05-13T10:17:20Z</MessageTime>
<MessageReference>c68d7150bbd611e2b09ad103c98eed12</MessageReference>
</ServiceHeader>
</Request>
<!--Optional:-->
<AWBNumber>
<!--1 or more repetitions:-->
<ArrayOfAWBNumberItem>2786552086</ArrayOfAWBNumberItem>
</AWBNumber>
<!--Optional:-->
<LPNumber>
<!--1 or more repetitions:-->
<ArrayOfTrackingPieceIDItem>?</ArrayOfTrackingPieceIDItem>
</LPNumber>
<LevelOfDetails>ALL_CHECK_POINTS</LevelOfDetails>
<!--Optional:-->
<PiecesEnabled>B</PiecesEnabled>
</dhl:TrackingRequest>
</trackingRequest>
</trac:trackShipmentRequest>
</soapenv:Body>
</soapenv:Envelope>
我知道这个网站上有类似的主题,但似乎没有任何帮助.
I realise there a similar topics on this site, but none seem to help.
推荐答案
您在第一行中使用的 WSDL 端点
The WSDL endpoint you are using in your first line
new SoapClient("https://wsbuat.dhl.com:8300/gbl/glDHLExpressTrack?wsdl");
甚至没有解决.我不认为它会起作用.通常,如果您只是粘贴 https://wsbuat.dhl.com:8300/gbl/glDHLExpressTrack?wsdl 在您的浏览器中,您应该能够看到大多数 SOAP 服务的定义.
isn't even resolving. I don't think it will work. Usually if you just paste https://wsbuat.dhl.com:8300/gbl/glDHLExpressTrack?wsdl in your browser you should be able to see definition for most SOAP services from what I know.
根据 user555 评论,端点可能已被弃用,因此您应该联系 DHL.
Based on user555 comment, the endpoint may have been deprecated so you should contact DHL.
这篇关于DHL trackShipmentRequest - WDSL - PHP - SOAP的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!