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
1
vote
1 answer

Error 2001 when using simplexml_loadfile to send XML

i've been doing some PHP lately to connect with an EPP server. When i send the xml over to the EPP server through a variable for example $nxml ='
LefterisL
  • 1,132
  • 3
  • 17
  • 37
1
vote
1 answer

centralnic PHP EPP library - login frame

I am trying to use CentralNic PHP EPP library to interact with Nominet EPP. It is clear how to genrate command frames using Net_EPP_Frame_Command class For instance, $frame = new Net_EPP_Frame_Command("check",…
Vladimir Hraban
  • 3,543
  • 4
  • 26
  • 46
1
vote
1 answer

Connecting to domain registry EPP server

I'm getting my sea legs and need some pointers and a small sample of code that connects to an epp server. The sample of code need to login and send one command and receive a response.(in XML). Code can be in php or python. This I believe will form…
Gary Moon
  • 11
  • 3
0
votes
0 answers

EPPlus C# cannot save a file, no matter what. It gives an error: An item with the same key has already been added. Key:

I am writing a really simple save operation with EPPlus, and it keeps saying that the key already exists after I hit save. This exception was originally thrown at this call…
0
votes
1 answer

performance test script for an EPP application

Can we perform load tests on EPP applications? The application is a Windows batch file that interacts with the server. Which performance testing tool would be suitable for use? I need some help with this.
0
votes
1 answer

How to print Array with quotation marks in epp?

Given the hiera list (example values): simplekey: hosts: - 'host1:8080' - 'host2:8080' [...] When using ERB template, this code: <% @simplekey.sort.each do |key, value| -%> <%= key %>: <%= value %>, <% end -%> results in hosts:…
pascalre
  • 305
  • 1
  • 4
  • 20
0
votes
1 answer

Does a Punycode domain name (UName) store the IDN table used?

I've created a domain name such as: même.vip I can see in the database, that the domain name has been registered with IDN table: "fr". However, 'ê' can be Portuguese, Norwegian, etc... I am trying to understand who is assuming the IDN table…
DraxDomax
  • 1,008
  • 1
  • 9
  • 28
0
votes
2 answers

How can I send XML (epp) request and then receive data? (PHP)

I've been in the process of searching for the code all day, and now I've decided to write it here. First Login:
George B.
  • 172
  • 2
  • 2
  • 14
0
votes
1 answer

Catch EPP server response after sending XML request

Currently we are developing domain registrar API. $options = [ 'ssl' => [ 'verify_peer' => true, 'local_cert' => __DIR__ . '/Domain.pem', 'local_pk' => __DIR__ . '/Domain.pem', …
0
votes
1 answer

How to transfer domain to IIS in Azure with EPP Code?

I have an old website I'm trying to move to an Azure Virtual Machine (Windows 10 Server). My old service gave me an EPP Code and unlocked the domain, but after hours of research I couldn't find anything that told me how to transfer it to the server.
Marco
  • 53
  • 1
  • 6
0
votes
1 answer

Cypress CY7C68013 in EPP mode code example

If read datasheet for Cypress Semiconductor IC CY7C68013(14, 15, 16)A, it's known that ICs can act as extended parallel port (EPP). Cypress Semiconductor provides a managed library CyUSB.dll for control this chips. I've searched many sources,…
Aave
  • 548
  • 1
  • 5
  • 15
0
votes
1 answer

puppet and inline_epp and using hiera deliver content

It's possible to use inline_epp's using string variable like this ? "htaccess": { "content": [ "<% include stdlib -%>", "AuthType Basic ", …
matsukan
  • 73
  • 2
  • 9
0
votes
1 answer

Create an SSL server socket terminator

I need to convert EPP (session based protocol - https://www.rfc-editor.org/rfc/rfc5734) to an HTTP request/response based protocol (JSON). The JSON part has already been coded and is working with a few clients. I've looked at nginx using websockets…
McAnix
  • 25
  • 7
0
votes
1 answer

Send an XML EPP request via TCP in PHP

I'm using this code to connect to a registrar via TCP. stream_socket_client('tcp://registrarwebsite:700', $errno, $errstr, 10, STREAM_CLIENT_CONNECT, $fc) Connection was successful, as for $fc, I am using stream_context_create to pass SSL…
SmootQ
  • 2,096
  • 7
  • 33
  • 58
0
votes
0 answers

Java connect to CentralNIC EPP server

I have this thread about flow connect to epp server ssl socket communicatoin to an epp server. My code: Socket socket = sf.createSocket("xxx.xxx.xxx.xxx", 700); String xml = "\n" + …