diff --git a/src/Silverpop/EngagePod.php b/src/Silverpop/EngagePod.php index 0a4f5e9..2b98411 100644 --- a/src/Silverpop/EngagePod.php +++ b/src/Silverpop/EngagePod.php @@ -30,7 +30,7 @@ public function __construct($config) { // It would be a good thing to cache the jsessionid somewhere and reuse it across multiple requests // otherwise we are authenticating to the server once for every request - $this->_baseUrl = 'http://api' . $config['engage_server'] . '.silverpop.com/XMLAPI'; + $this->_baseUrl = 'https://api-campaign-us-' . $config['engage_server'] . '.goacoustic.com/XMLAPI'; $this->_login($config['username'], $config['password']); } diff --git a/src/Silverpop/Transact.php b/src/Silverpop/Transact.php index d48ef03..5294a25 100644 --- a/src/Silverpop/Transact.php +++ b/src/Silverpop/Transact.php @@ -23,7 +23,7 @@ class Transact { * Sets $this->_baseUrl based on the engage server specified in config */ public function __construct($engage_server) { - $this->_baseUrl = 'http://transact' . $engage_server . '.silverpop.com/XTMail'; + $this->_baseUrl = 'https://transact' . $engage_server . '.goacoustic.com/XTMail'; } /**