FedExServer Property
URL for the FedEx Server where the requests are sent.
Syntax
fedexship.getFedExServer([callback]) fedexship.setFedExServer( fedExServer, [callback])
Default Value
""
Callback
The 'callback' parameter specifies a function which will be called when the operation completes (or an error is encountered). If the 'callback' parameter is not specified, then the method will block and will not return until the operation completes (or an error is encountered).
The callback for the getFedExServer([callback]) method is defined as:
function(err, data){ }
'err' is the error that occurred. If there was no error, then 'err' is 'null'.
'data' is the value returned by the method.
The callback for the setFedExServer([callback]) method is defined as:
function(err){ }
'err' is the error that occurred. If there was no error, then 'err' is 'null'.
'err' has 2 properties which hold detailed information:
err.code err.message
Remarks
URL for the FedEx Server where the requests are sent. This is required to be provided on each transaction request sent to FedEx along with FedExAccountNumber and FedExMeterNumber.
The full URL (including the URL scheme normally https://) should be supplied. All test requests are sent over SSL.
The server URL for the production will be provided to you by FedEx after your application has been approved/certified by FedEx Web Integration Solutions team.
Note that FedEx provides both SOAP and XML services and the URLs for each service are slightly different, however the
functionality provided is exactly the same. If the URL ends with "/web-services", then the server will use the SOAP
services. If the URL ends with "/xml", then the server will use the XML service. When using the SOAP services, the
UseSOAP config should be set to true (default). The test URLs for FedEx are as follows:
XML https://gatewaybeta.fedex.com:443/xml https://wsbeta.fedex.com:443/xml SOAP https://gatewaybeta.fedex.com:443/web-service https://wsbeta.fedex.com:443/web-service
Data Type
String