Exemplo n.º 1
0
 public function testGetWsdlUri()
 {
     $wsdl = 'https://amsel.dpwn.net/abholportal/gw/lp/schema/1.0/var3ws.wsdl';
     $this->store->setConfig('intraship/dhlonlineretoure/wsdl', $wsdl);
     $this->assertEquals($wsdl, $this->config->getWsdlUri());
 }
Exemplo n.º 2
0
 public function setConfig(Dhl_OnlineRetoure_Model_Config $config)
 {
     $this->_config = $config;
     $this->setUsername($this->_config->getUser())->setPassword($this->_config->getPassword())->setPortalId($this->_config->getPortalId())->setLabelFormat(Dhl_OnlineRetoure_Model_Config::ONLINERETOURE_LABEL_FORMAT)->setWsdl($this->_config->getWsdlUri());
     return $this;
 }