Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

net::epp(3pm) [debian man page]

Net::EPP(3pm)						User Contributed Perl Documentation					     Net::EPP(3pm)

NAME
"Net::EPP" - a Perl library for the Extensible Provisioning Protocol (EPP) DESCRIPTION
EPP is the Extensible Provisioning Protocol. EPP (defined in RFC 5730) is an application layer client-server protocol for the provisioning and management of objects stored in a shared central repository. Specified in XML, the protocol defines generic object management operations and an extensible framework that maps protocol operations to objects. As of writing, its only well-developed application is the provisioning of Internet domain names, hosts, and related contact details. This project offers a number of Perl modules which implement various EPP-related functions: o a low level protocol implementation (Net::EPP::Protocol) o a low-level client (Net::EPP::Client) o a high-level client (Net::EPP::Simple) o an EPP frame builder (Net::EPP::Frame) o a utility library to export EPP responde codes (Net::EPP::ResponseCodes) These modules were originally created and maintained by CentralNic for use by their own registrars, but since their original release have become widely used by registrars and registries of all kinds. CentralNic has chosen to create this project to allow interested third parties to contribute to the development of these libraries, and to guarantee their long-term stability and maintenance. AUTHOR
CentralNic Ltd (http://www.centralnic.com/), with the assistance of other contributors around the world, including (but not limited to): Rick Jansen Mike Kefeder Sage Weil Eberhard Lisse Yulya Shtyryakova Ilya Chesnokov Simon Cozens Patrick Mevzek Alexander Biehl and Christian Maile, united-domains AG REPORTING BUGS
Please email any bug reports to epp@centralnic.com. SEE ALSO
o Google Code Project page: http://code.google.com/p/perl-net-epp <http://code.google.com/p/perl-net-epp> COPYRIGHT
This module is (c) 2012 CentralNic Ltd. This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.14.2 2012-04-23 Net::EPP(3pm)

Check Out this Related Man Page

Net::EPP::Frame::Command::Delete::Domain(3pm)		User Contributed Perl Documentation	     Net::EPP::Frame::Command::Delete::Domain(3pm)

NAME
Net::EPP::Frame::Command::Delete::Domain - an instance of Net::EPP::Frame::Command::Delete for domain names. SYNOPSIS
use Net::EPP::Frame::Command::Delete::Domain; use strict; my $delete = Net::EPP::Frame::Command::Delete::Domain->new; $delete->setDomain('example.tld'); print $delete->toString(1); This results in an XML document like this: <?xml version="1.0" encoding="UTF-8"?> <epp xmlns="urn:ietf:params:xml:ns:epp-1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:ietf:params:xml:ns:epp-1.0 epp-1.0.xsd"> <command> <delete> <domain:delete xmlns:domain="urn:ietf:params:xml:ns:domain-1.0" xsi:schemaLocation="urn:ietf:params:xml:ns:domain-1.0 domain-1.0.xsd"> <domain:name>example.tldE<lt>/domain:name> </domain:delete> </delete> <clTRID>0cf1b8f7e14547d26f03b7641660c641d9e79f45</clTRIDE<gt> </command> </epp> OBJECT HIERARCHY
L<XML::LibXML::Node> +----L<XML::LibXML::Document> +----L<Net::EPP::Frame> +----L<Net::EPP::Frame::Command> +----L<Net::EPP::Frame::Command::Delete> +----L<Net::EPP::Frame::Command::Delete::Domain> METHODS
$frame->setDomain($domain_name); This specifies the domain name to be deleted. AUTHOR
CentralNic Ltd (http://www.centralnic.com/). COPYRIGHT
This module is (c) 2012 CentralNic Ltd. This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. SEE ALSO
o Net::EPP::Frame perl v5.14.2 2012-04-23 Net::EPP::Frame::Command::Delete::Domain(3pm)
Man Page