gpt4 book ai didi

php - FedEx 网络集成错误代码 9004

转载 作者:搜寻专家 更新时间:2023-10-31 21:26:53 24 4
gpt4 key购买 nike

我正在尝试将 FedEx 的跟踪服务集成到我的网络应用程序中,但我一直收到此错误..

Severity: FAILURE
Source: prxy
Code: 9004
Message: Remote EJB method: track not called. Unable to create the remote bean. Exception: javax.naming.NamingException: unable to find primary representative [Root exception is javax.naming.NamingException: unable to find primary representative]. Cause: javax.naming.NamingException: unable to find primary representative [Root exception is javax.naming.NamingException: unable to find primary representative]

请求

<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://fedex.com/ws/track/v10"><SOAP-ENV:Body><ns1:TrackRequest> <ns1:WebAuthenticationDetail><ns1:ParentCredential><ns1:Key>#########</ns1:Key><ns1:Password>###########</ns1:Password></ns1:ParentCredential><ns1:UserCredential><ns1:Key>#############</ns1:Key><ns1:Password>###########</ns1:Password></ns1:UserCredential></ns1:WebAuthenticationDetail><ns1:ClientDetail><ns1:AccountNumber>#########</ns1:AccountNumber><ns1:MeterNumber>###########</ns1:MeterNumber></ns1:ClientDetail><ns1:TransactionDetail><ns1:CustomerTransactionId>*** Track using PHP ***</ns1:CustomerTransactionId></ns1:TransactionDetail><ns1:Version><ns1:ServiceId>trck</ns1:ServiceId><ns1:Major>10</ns1:Major><ns1:Intermediate>0</ns1:Intermediate><ns1:Minor>0</ns1:Minor></ns1:Version><ns1:SelectionDetails><ns1:PackageIdentifier> <ns1:Type>TRACKING_NUMBER_OR_DOORTAG</ns1:Type><ns1:Value>449044304137821</ns1:Value></ns1:PackageIdentifier><ns1:ShipmentAccountNumber>########</ns1:ShipmentAccountNumber> </ns1:SelectionDetails></ns1:TrackRequest></SOAP-ENV:Body></SOAP-ENV:Envelope>

回应

<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP-ENV:Header/><SOAP-ENV:Body><TrackReply xmlns="http://fedex.com/ws/track/v10"><HighestSeverity>FAILURE</HighestSeverity><Notifications><Severity>FAILURE</Severity><Source>prxy</Source><Code>9004</Code><Message>Remote EJB method: track not called. Unable to create the remote bean. Exception: javax.naming.NamingException: unable to find primary representative [Root exception is javax.naming.NamingException: unable to find primary representative]. Cause: javax.naming.NamingException: unable to find primary representative [Root exception is javax.naming.NamingException: unable to find primary representative]</Message></Notifications></TrackReply></SOAP-ENV:Body></SOAP-ENV:Envelope>

我正在使用 Laravel 框架,Fedex 集成使用了三个文件,即包含 XML 数据的 TrackService_v10.wsdl、包含用于发送请求的 php 函数的 TrackWebServiceClient.php5 和 fedex-common.php5其中还包含包含要发布的输入的 php 函数。

我试过在互联网上到处寻找,在 FedEx 上寻找开发人员和资源中心,但我真的无法让它工作。我也不明白这个 SOAP 请求。另外,FedEx 说他们没有程序员来帮我解决这个问题。有人可以帮忙吗?提前致谢。

最佳答案

我一直有完全相同的问题。在我的头在 table 上敲了几个小时之后,我看到了这篇文章 - https://stackoverflow.com/a/10941234/5632365 .它属于 WSDL 文件的 v5(当前为 10),但基本上您需要从第 2296 行的 URL 中删除“beta”。

<service name="TrackService">
<port name="TrackServicePort" binding="ns:TrackServiceSoapBinding">
<s1:address location="https://wsbeta.fedex.com:443/web-services/track"/>
</port>
</service>

应该是

<service name="TrackService">
<port name="TrackServicePort" binding="ns:TrackServiceSoapBinding">
<s1:address location="https://ws.fedex.com:443/web-services/track"/>
</port>
</service>

一切都会(应该)神奇地开始工作。希望这对您和我一样有帮助!

关于php - FedEx 网络集成错误代码 9004,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34785095/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com