Questions tagged [epp]

EPP is the Extensible Provisioning Protocol, used by domain name registrars to communicate with registries in order to manage their objects: domains, contacts, hosts, etc.

EPP is the Extensible Provisioning Protocol, defined by STD 69 (currently RFCs 5730, 5731, 5732, 5733, and 5734). It is used by domain name registrars to communicate with registries in order to manage their objects: domains, contacts, hosts, etc.

43 questions
2
votes
1 answer

loading json data with epp template in puppet

I am facing while printing values from .epp template in puppet I have following data in hiera, which defines groups (array of hashes) profiles::groups: - name: 'admins' type: 1 rights: [] - name: 'users' type: 2 rights:…
sach
  • 25
  • 3
2
votes
1 answer

Error with fsockopen() and SSL, 'Failed to enable crypto'

I am trying to connect to the Nominet EPP test bed, but I am receiving a 'Failed to enable crypto' which seems to be a rare error with no documented solution or cause. With the line: $socket = fsockopen('ssl://testbed-epp.nominet.org.uk', 700,…
Dunhamzzz
  • 14,682
  • 4
  • 50
  • 74
2
votes
1 answer

Does anyone know how to transfer a domain name in Plesk using an EPP code?

One of my friends had a forum with Freeforums.org and they bought a domain name through them. Recently he wanted to transfer the .org domain name to his own host which uses a Plesk control panel. Freeforums sent him an EPP code to transfer the…
Hugo
  • 23
  • 1
  • 4
2
votes
2 answers

PHP TCP connection to EPP API using SSL certificate authentication

I have tried this upwards and backwards without any success. The national domain registry department has decided to change their entire system to EPP. Their documentation is very poor but to summarize: Connection via TCP: epptest.ficora.fi port…
Rcls
  • 459
  • 4
  • 18
2
votes
1 answer

Epp Ficora - Connection refused

I have problem connecting to epp server : epptest.ficora.fi I'm using this PHP lib : https://packagist.org/packages/metaregistrar/php-epp-client $conn = new eppConnection(false); $conn->setHostname('epptest.ficora.fi'); …
nyotsov
  • 93
  • 7
2
votes
1 answer

How to parse xml correctly

I want to create structs = each type of command. Commands have common part of xml - CommandResult. I created interface Command. I need to SomeCommand implements Command and can to be parsed as xml, also IsError must be realized in CommandResult,…
Harlam
  • 408
  • 2
  • 11
1
vote
1 answer

Are EPP status codes case-sensitive?

When I reviewed the relevant RFC documents, I couldn't find anything about the case sensitivity of the status codes. Therefore, I wanted to ask this question here. I have encountered the following EPP codes, but I don't know whether they are valid.…
Ceylan B.
  • 564
  • 9
  • 23
1
vote
0 answers

Received HTTP/0.9 when not allowed When Connecting to EPP Server

I am writing a domain registration script, when I connect to the EPP server I get the following error: PHP Fatal error: Uncaught Exception: Received HTTP/0.9 when not allowed Curl has nghttp2 included so that is not the error I'm running PHP 7.4 …
Mick
  • 29
  • 1
  • 5
1
vote
1 answer

EPP For Domain Registration connection fails when using a certificate

I am using EPP (Extensible Provisioning Protocol) to perform domain registration operations. Everything works fine but when I use a certificate, the login request fails. Let us say I have certificate in C:\Folder\epp.crt and using the following…
A.Ghaffar
  • 83
  • 2
  • 13
1
vote
1 answer

PHP socket fread response takes forever

I want to send XML requests via EPP protocole to a registrar and get responses, the connection is successful, but when I get to fread($fp) , it takes forever to load. Is there a way to make it fast and get a response from the registrar? I am using…
SmootQ
  • 2,096
  • 7
  • 33
  • 58
1
vote
1 answer

EppLib.net - Which SSL Certificate to use

When using EppLib.net (and as per the Nominet instructions - http://registrars.nominet.uk/namespace/uk/registration-and-domain-management/registrar-systems/epp/testbed) In order to verify the identity of the secure server you will need the…
j4ffa
  • 55
  • 1
  • 8
1
vote
1 answer

How do you connect to an EPP server (domain registry) in Node JS?

I'm building a project to manage my own domain names (just for learning purposes). The standard for interfacing with the registry API is to use their EPP server on port 700 with your username, password, and an SSL cert on the client side. How do I…
traviswingo
  • 315
  • 2
  • 17
1
vote
1 answer

Client certificate on EPP Call

I am trying to use free client certificate by cacert.org in curl call. check following... $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, 'https://url.com'); curl_setopt($ch, CURLOPT_TIMEOUT, 30); curl_setopt($ch, CURLOPT_FRESH_CONNECT,…
seoppc
  • 2,766
  • 7
  • 44
  • 76
1
vote
2 answers

EPP always returns greeting

Hey Guys i am starting an EPP client and it only returns the greeting from the server, even when i try send my login command. here is my code, what is wrong with it? using (var _tcpClient = new TcpClient(_endpoint.Host, _endpoint.Port)) …
CKG
  • 13
  • 3
1
vote
1 answer

How do I create an empty tag of anyType without attributes using JAXB

The xsd is here: http://www.iana.org/assignments/xml-registry/schema/epp-1.0.xsd I don't want to modify the XSD (maintained by a third party) or the XJC generated classes since they get overwritten with every build. Here is a sample snippet of the…
Jin Kim
  • 16,562
  • 18
  • 60
  • 86
1
2 3