예제 #1
0
 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();
 }
예제 #2
0
 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::addExtension('hr', 'http://www.dns.hr/epp/hr-1.0');
     parent::addCommandResponse('Metaregistrar\\EPP\\hrEppInfoContactRequest', 'Metaregistrar\\EPP\\hrEppInfoContactResponse');
     //      parent::enableDnssec();
 }
 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);
     parent::setServices(array('urn:ietf:params:xml:ns:domain-1.0' => 'domain', 'urn:ietf:params:xml:ns:contact-1.0' => 'contact'));
     parent::addCommandResponse('Metaregistrar\\EPP\\ptEppInfoDomainRequest', 'Metaregistrar\\EPP\\eppInfoDomainResponse');
     // Default server configuration stuff - this varies per connected registry
     // Check the greeting of the server to see which of these values you need to add
     parent::addExtension('ptcontact', 'http://eppdev.dns.pt/schemas/ptcontact-1.0');
     parent::addExtension('ptdomain', 'http://eppdev.dns.pt/schemas/ptdomain-1.0');
 }
예제 #4
0
 public function __construct($logging = false, $settingsfile = null)
 {
     parent::__construct($logging, $settingsfile);
     //parent::enableDnssec();
     parent::setServices(array('urn:ietf:params:xml:ns:domain-1.0' => 'domain', 'urn:ietf:params:xml:ns:contact-1.0' => 'contact'));
     //parent::addExtension('nsgroup','http://www.eurid.eu/xml/epp/nsgroup-1.1');
     parent::addService('http://www.eurid.eu/xml/epp/registrar-1.0', 'registrar');
     //parent::addExtension('authInfo','http://www.eurid.eu/xml/epp/authInfo-1.0');
     #parent::addCommandResponse('euridEppCreateNsgroupRequest', 'euridEppCreateNsgroupResponse');
     #parent::addCommandResponse('euridEppCreateRequest', 'euridEppCreateResponse');
     #parent::addCommandResponse('euridEppAuthcodeRequest', 'eppResponse');
     parent::addCommandResponse('Metaregistrar/EPP/euridEppInfoDomainRequest', 'Metaregistrar/EPP/euridEppInfoDomainResponse');
     #parent::addCommandResponse('euridEppCreateRequest', 'eppCreateResponse');
     #parent::addCommandResponse('eppCheckRequest', 'euridEppCheckResponse');
 }
 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');
 }