Features | Detailed Description
The EPP Client is a component from the Clever Internet Suite library.
This component manages objects within registries over the Internet as specified in RFC 4930 and RFC 4934 documents. EPP client allows you to connect to a shared central repository and manage domains, host mappings or contacts within registries over the Internet.
Available in .NET, VCL and ActiveX editions.
- Different repository objects are supported
- SSL/TLS support
- Custom commands and enhanced status codes
- Free one year upgrades and support
// [Delphi]
clEpp1.Open();
clEpp1.Login();
clEpp1.SendCommand('<create><domain:create .... </create>');
ShowMessage(clEpp1.Response.Text); |
// [C#]
epp1.Open();
epp1.Login();
epp1.SendCommand("<create><domain:create .... </create>");
MessageBox.Show(epp1.Response.ToString()); |
When Purchasing the Clever Internet Suite you receive the full sources for all suite components and also free unlimited support.
|