Last active
October 7, 2016 00:38
-
-
Save philwinkle/9627533 to your computer and use it in GitHub Desktop.
Git diff of Fedex SOAP API endpoint change - CE 1.6, 1.7, 1.8 and EE 1.11, 1.12, 1.13
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Fedex.php b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Fedex.php | |
index d567b6e..9a98440 100644 | |
--- a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Fedex.php | |
+++ b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Fedex.php | |
@@ -119,8 +119,8 @@ class Mage_Usa_Model_Shipping_Carrier_Fedex | |
{ | |
$client = new SoapClient($wsdl, array('trace' => $trace)); | |
$client->__setLocation($this->getConfigFlag('sandbox_mode') | |
- ? 'https://wsbeta.fedex.com:443/web-services/rate' | |
- : 'https://ws.fedex.com:443/web-services/rate' | |
+ ? 'https://wsbeta.fedex.com:443/web-services' | |
+ : 'https://ws.fedex.com:443/web-services' | |
); | |
return $client; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Fedex.php b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Fedex.php | |
index 604f1fa..8b6cc33 100644 | |
--- a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Fedex.php | |
+++ b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Fedex.php | |
@@ -133,8 +133,8 @@ class Mage_Usa_Model_Shipping_Carrier_Fedex | |
{ | |
$client = new SoapClient($wsdl, array('trace' => $trace)); | |
$client->__setLocation($this->getConfigFlag('sandbox_mode') | |
- ? 'https://wsbeta.fedex.com:443/web-services/rate' | |
- : 'https://ws.fedex.com:443/web-services/rate' | |
+ ? 'https://wsbeta.fedex.com:443/web-services' | |
+ : 'https://ws.fedex.com:443/web-services' | |
); | |
return $client; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Fedex.php b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Fedex.php | |
index 0ec7b21..4716f9b 100644 | |
--- a/app/code/core/Mage/Usa/Model/Shipping/Carrier/Fedex.php | |
+++ b/app/code/core/Mage/Usa/Model/Shipping/Carrier/Fedex.php | |
@@ -133,8 +133,8 @@ class Mage_Usa_Model_Shipping_Carrier_Fedex | |
{ | |
$client = new SoapClient($wsdl, array('trace' => $trace)); | |
$client->__setLocation($this->getConfigFlag('sandbox_mode') | |
- ? 'https://wsbeta.fedex.com:443/web-services/rate' | |
- : 'https://ws.fedex.com:443/web-services/rate' | |
+ ? 'https://wsbeta.fedex.com:443/web-services' | |
+ : 'https://ws.fedex.com:443/web-services' | |
); | |
return $client; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment