.IN promotion
.IN promotion from February to March - increase your sales and receive large discounts.
.XXX: Registration of invalid Sunrise A, B applications becomes possible
The Meta Registry Application Layer is the software kernel responsible for all registry/registrar/reseller transactions. It also performs the dispatching to the different registry handlers. It unifies all commands to a single set in order to handle all services.
Whenever a registry allows registration and management of domain names in real-time, RRPproxy supports these real-time specifications. To take full advantage, resellers should consider using one of our real-time protocols.
Resellers can connect to the Meta Registry through web interface or API . The different API gateways are EPP, XRRP, XML, SOAP, HTTPS and SMTP (E-Mail). All business operations through the Meta Registry are completely automated, allowing us to offer particularly favorable prices.
# LIVE - system: Host: epp.rrpproxy.net Port: 700 # OT/E - system: Host: epp-ote.rrpproxy.net Port: 1700Here an example of how the extensions must be set up.
<extension>
<keysys:create -xmlns:keysys="http://www.key-systems.net/epp/keysys-1.0">
<keysys:domain>
<keysys:it-pin>DE1234567912</keysys:it-pin>
</keysys:domain>
</keysys:create>
</extension>
[COMMAND] command = checkDomain domain = example.org EOF [RESPONSE] code = 210 description = Domain name available EOF
Without SSL proxy => http://api.rrpproxy.net:8080/soap With SSL proxy => https://api.rrpproxy.net:8082/soapPerl
#!/usr/bin/perl -w
use SOAP::Lite; #+trace => debug;
use Data::Dumper;
my $soap = SOAP::Lite
-> uri('urn:Api')
-> proxy('https://api.rrpproxy.net:8082/soap')
;
my @commands = (
{
's_login' => 'demo',
's_pw' => 'demoote',
's_opmode' => 'OTE',
'command' => 'CheckDomain',
'domain' => 'example.com',
},
);
my $res = $soap->xcall(@commands);
print Dumper($res->result) . "\n";
PHP<?php
$client = new SoapClient(NULL,
array(
"location" => "https://api.rrpproxy.net:8082/soap",
// "location" => "http://api.rrpproxy.net:8080/soap",
"uri" => "urn:Api",
"style" => SOAP_RPC,
"use" => SOAP_ENCODED,
)
);
$params = array(
array(
-"s_login" => "demo",
-"s_pw" => "demoote",
-"s_opmode" => "OTE",
-"command" => "CheckDomain",
-"domain" => "example.com"
-)
);
$result = $client->__call("xcall",
$params,
array(
"uri" => "urn:Api",
"soapaction" => "urn:Api#xcall")
);
print_r($result); ?>
# LIVE - URL https://api.rrpproxy.net/api/call?s_login=demo&s_pw=demoote # OT&E - URL https://api.rrpproxy.net/api/call?s_opmode=OTE&s_login=demo&s_pw=demoote
If you do not add the parameter "s_opmode=OTE", you will connect to our live-system and may be charged for operations.
wget -nv "https://api.rrpproxy.net/api/call? s_opmode=OTE&s_login=demo&s_pw=demoote&command=checkdomain&domain=example.org" -O [RESPONSE] code = 210 description = Domain name available queuetime=0 runtime=0.054 EOF 2009-11-06 09:25:45 URL:https://api.rrpproxy.net/api/call? s_opmode=OTE&s_login=demo&s_pw=demoote&command=checkdomain&domain=example.org [90] -> "" [1]
curl "https://api.rrpproxy.net/api/call? s_opmode=OTE&s_login=demo&s_pw=demoote&command=checkdomain&domain=example.org" [RESPONSE] code = 210 description = Domain name not available queuetime=0 runtime=0.15 EOF
s_login = demo s_pw = demoote s_opmode = OTE [COMMAND] command = CheckDomain domain = example.com
Since 2010, the RRPproxy web interface has a new look and feel. It is characterized by full web access and is compatible with all major browsers, even without JavaScript. The web client offers advanced features such as bulk commands with an unlimited number of parameters and a subreseller system including the management of individual price scales.
The modern look and feel of the web client allows you to intuitively find and use all of its functions. Besides the management of your domains and name servers as well as the handling of your contact information, you have access to all other RRPproxy services such as SSL certificates and virtual servers. Starting on the welcome page you are able to find all domain-related operations at a glance. With API controls in the left menu and account administration, tools, finances etc. in the horizontal navigation bar, the work-flow of the interface is well structured.
The multilingual web interface stands out through highest usability and a fast work-flow. It is also a model of how to create a web client, which is directly based on the RRPproxy API.