public function __construct($logging = false, $settingsfile = null)
 {
     // Construct the EPP connection object en specify if you want logging on or off
     parent::__construct($logging, $settingsfile);
     // Enable DNSSEC, Donuts supports this
     parent::enableDnssec();
 }
 public function __construct($logging = false, $settingsfile = null)
 {
     parent::__construct($logging, $settingsfile);
     parent::setServices(array('urn:ietf:params:xml:ns:domain-1.0' => 'domain', 'urn:ietf:params:xml:ns:contact-1.0' => 'contact'));
     parent::enableLaunchphase('claims');
     parent::enableDnssec();
 }
 public function __construct($logging = false, $settingsfile = null)
 {
     parent::__construct($logging, $settingsfile);
     parent::setCheckTransactionIds(false);
     parent::addExtension('keysys', 'http://www.key-systems.net/epp/keysys-1.0');
     parent::enableDnssec();
     parent::addCommandResponse('Metaregistrar\\EPP\\rrpproxyEppUpdateDomainRequest', 'Metaregistrar\\EPP\\eppUpdateDomainResponse');
 }
 public function __construct($logging = false, $settingsfile = null)
 {
     parent::__construct($logging, $settingsfile);
     parent::addExtension('sidn-ext-epp', 'http://rxsd.domain-registry.nl/sidn-ext-epp-1.0');
     parent::enableDnssec();
     parent::addCommandResponse('Metaregistrar\\EPP\\sidnEppPollRequest', 'Metaregistrar\\EPP\\sidnEppPollResponse');
     parent::addCommandResponse('Metaregistrar\\EPP\\sidnEppCreateContactRequest', 'Metaregistrar\\EPP\\eppCreateResponse');
     parent::addCommandResponse('Metaregistrar\\EPP\\eppCheckRequest', 'Metaregistrar\\EPP\\sidnEppCheckResponse');
     parent::addCommandResponse('Metaregistrar\\EPP\\eppInfoDomainRequest', 'Metaregistrar\\EPP\\sidnEppInfoDomainResponse');
     parent::addCommandResponse('Metaregistrar\\EPP\\sidnEppRenewRequest', 'Metaregistrar\\EPP\\eppRenewResponse');
 }
 public function __construct($logging = false, $settingsfile = null)
 {
     parent::__construct($logging, $settingsfile);
     parent::addExtension('nsgroup', 'http://www.dns.be/xml/epp/nsgroup-1.0');
     parent::addExtension('registrar', 'http://www.dns.be/xml/epp/registrar-1.0');
     parent::addExtension('dnsbe', 'http://www.dns.be/xml/epp/dnsbe-1.0');
     parent::enableDnssec();
     #parent::addExtension('keygroup','http://www.dns.be/xml/epp/keygroup-1.0');
     parent::addCommandResponse('Metaregistrar\\EPP\\dnsbeEppCreateNsgroupRequest', 'Metaregistrar\\EPP\\dnsbeEppCreateNsgroupResponse');
     parent::addCommandResponse('Metaregistrar\\EPP\\dnsbeEppCreateDomainRequest', 'Metaregistrar\\EPP\\dnsbeEppCreateResponse');
     parent::addCommandResponse('Metaregistrar\\EPP\\dnsbeEppCreateContactRequest', 'Metaregistrar\\EPP\\dnsbeEppCreateResponse');
     parent::addCommandResponse('Metaregistrar\\EPP\\dnsbeEppAuthcodeRequest', 'Metaregistrar\\EPP\\eppResponse');
     parent::addCommandResponse('Metaregistrar\\EPP\\dnsbeEppInfoDomainRequest', 'Metaregistrar\\EPP\\dnsbeEppInfoDomainResponse');
 }
 public function __construct($logging = false, $settingsfile = null)
 {
     // Construct the EPP connection object en specify if you want logging on or off
     parent::__construct($logging, $settingsfile);
     // Specify timeout values in seconds
     // Enable DNSSEC, IIS.SE supports this
     parent::enableDnssec();
     // They have registered their own extension
     parent::addExtension('iis', 'urn:se:iis:xml:epp:iis-1.2');
     // Add the commands and responses specific to this registry
     // Please make sure the corresponding PHP files are present!
     parent::addCommandResponse('Metaregistrar\\EPP\\iisEppCreateContactRequest', 'Metaregistrar\\EPP\\eppCreateResponse');
     parent::addCommandResponse('Metaregistrar\\EPP\\eppInfoDomainRequest', 'Metaregistrar\\EPP\\iisEppInfoDomainResponse');
     parent::addCommandResponse('Metaregistrar\\EPP\\iisEppUpdateDomainClientDeleteRequest', 'Metaregistrar\\EPP\\eppUpdateResponse');
 }
 public function __construct($logging = false, $settingsfile = null)
 {
     // Construct the EPP connection object en specify if you want logging on or off
     parent::__construct($logging, $settingsfile);
     // Specify timeout values in seconds, test interface is kind of slow
     parent::setTimeout(200);
     // Enable DNSSEC, Ficora supports this
     parent::enableDnssec();
     // Make sure services are not added to the main EPP commands
     parent::setServices(null);
     // Not a real extension, but okay then
     parent::addExtension('ficora', 'http://www.ficora.fi/epp/ficora');
     // Add the commands and responses specific to this registry
     // Please make sure the corresponding PHP files are present!
     parent::addCommandResponse('Metaregistrar\\EPP\\ficoraEppCreateContactRequest', 'Metaregistrar\\EPP\\eppCreateContactResponse');
     parent::addCommandResponse('Metaregistrar\\EPP\\ficoraEppCheckBalanceRequest', 'Metaregistrar\\EPP\\ficoraEppCheckBalanceResponse');
     parent::addCommandResponse('Metaregistrar\\EPP\\ficoraEppUpdateDomainRequest', 'Metaregistrar\\EPP\\eppUpdateDomainResponse');
     parent::addCommandResponse('Metaregistrar\\EPP\\eppInfoContactRequest', 'Metaregistrar\\EPP\\ficoraEppInfoContactResponse');
 }