Do EPP client-side implementations for languages other than Java exist? I am mostly interested in a C or Tcl client implementation, but can also do with Python or Perl.
There's a Perl Net::EPP package on CPAN that implements low-level and high-level EPP clients.
http://epp-rtk.sourceforge.net/ provides implementation in Java and C++. (I believe this could be useful mostly to Google visitors.)
Do EPP client-side implementations for languages other than Java exist?
I have written EppLib.NET; a .NET (C#) library. It should run OK on Linux via Mono although I have not tried.
Net::DRI is a full Perl high-level implementation of core EPP and dozens of extensions. It also provides a whois and DAS client. Available on CPAN or various forks on github. Disclaimer: I'm its (proud) author.
Recently published my EPP client library implementation in Python on GitHub:
https://github.com/datahaven-net/epp-python-client
It can be used directly as a client library.
Also you can run a local RPC server with a queue of requests and responses via RabbitMQ. Then you can use RPC client (also provided) to make calls to the target EPP system from any applicaiton.
© 2022 - 2024 — McMap. All rights reserved.