epp-eis 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +4 -0
- data/Gemfile +5 -0
- data/Guardfile +5 -0
- data/README.markdown +57 -0
- data/Rakefile +1 -0
- data/epp-eis.gemspec +25 -0
- data/lib/epp-eis/contact.rb +271 -0
- data/lib/epp-eis/domain.rb +410 -0
- data/lib/epp-eis/extensions.rb +22 -0
- data/lib/epp-eis/nsset.rb +246 -0
- data/lib/epp-eis/session.rb +94 -0
- data/lib/epp-eis/version.rb +5 -0
- data/lib/epp-eis.rb +8 -0
- data/spec/legaldocs/test.pdf +0 -0
- data/spec/lib/epp-eis/contact_spec.rb +107 -0
- data/spec/lib/epp-eis/domain_spec.rb +189 -0
- data/spec/lib/epp-eis/nsset_spec.rb +87 -0
- data/spec/lib/epp-eis/session_spec.rb +18 -0
- data/spec/spec_helper.rb +10 -0
- data/spec/support/file_mocks.rb +7 -0
- data/spec/xml/requests/contact/check_contact.xml +11 -0
- data/spec/xml/requests/contact/create_contact.xml +23 -0
- data/spec/xml/requests/contact/delete_contact.xml +11 -0
- data/spec/xml/requests/contact/info_contact.xml +11 -0
- data/spec/xml/requests/contact/update_contact.xml +29 -0
- data/spec/xml/requests/domain/create_domain.xml +21 -0
- data/spec/xml/requests/domain/delete_domain.xml +16 -0
- data/spec/xml/requests/domain/get_results.xml +9 -0
- data/spec/xml/requests/domain/list_domains.xml +9 -0
- data/spec/xml/requests/domain/transfer_domain.xml +17 -0
- data/spec/xml/requests/domain/update_domain.xml +28 -0
- data/spec/xml/requests/nsset/check_nsset.xml +12 -0
- data/spec/xml/requests/nsset/create_nsset.xml +20 -0
- data/spec/xml/requests/nsset/delete_nsset.xml +11 -0
- data/spec/xml/requests/nsset/info_nsset.xml +11 -0
- data/spec/xml/requests/nsset/update_nsset.xml +22 -0
- data/spec/xml/requests/session/hello.xml +4 -0
- data/spec/xml/responses/contact/check_contact_1000.xml +23 -0
- data/spec/xml/responses/contact/create_contact_1000.xml +18 -0
- data/spec/xml/responses/contact/delete_contact_1000.xml +12 -0
- data/spec/xml/responses/contact/get_results_list_contacts_1000.xml +24 -0
- data/spec/xml/responses/contact/info_contact_1000.xml +35 -0
- data/spec/xml/responses/contact/update_contact_1000.xml +12 -0
- data/spec/xml/responses/domain/check_domain_1000.xml +23 -0
- data/spec/xml/responses/domain/check_domain_available_1000.xml +19 -0
- data/spec/xml/responses/domain/check_domain_taken_1000.xml +20 -0
- data/spec/xml/responses/domain/create_domain_1000.xml +19 -0
- data/spec/xml/responses/domain/delete_domain_1000.xml +12 -0
- data/spec/xml/responses/domain/get_results_list_domains_1000.xml +18 -0
- data/spec/xml/responses/domain/info_domain_1000.xml +27 -0
- data/spec/xml/responses/domain/list_domains_1000.xml +17 -0
- data/spec/xml/responses/domain/renew_domain_1000.xml +18 -0
- data/spec/xml/responses/domain/transfer_domain_1000.xml +12 -0
- data/spec/xml/responses/domain/update_domain_1000.xml +12 -0
- data/spec/xml/responses/nsset/check_nsset_1000.xml +22 -0
- data/spec/xml/responses/nsset/create_nsset_1000.xml +18 -0
- data/spec/xml/responses/nsset/delete_nsset_1000.xml +12 -0
- data/spec/xml/responses/nsset/info_nsset_1000.xml +33 -0
- data/spec/xml/responses/nsset/update_nsset_1000.xml +12 -0
- data/spec/xml/responses/session/hello.xml +36 -0
- metadata +214 -0
@@ -0,0 +1,9 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
2
|
+
<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">
|
3
|
+
<extension>
|
4
|
+
<fred:extcommand xmlns:fred="http://www.nic.cz/xml/epp/fred-1.4" xsi:schemaLocation="http://www.nic.cz/xml/epp/fred-1.4 fred-1.4.xsd">
|
5
|
+
<fred:getResults />
|
6
|
+
<fred:clTRID>anyp006#10-02-08at14:42:58</fred:clTRID>
|
7
|
+
</fred:extcommand>
|
8
|
+
</extension>
|
9
|
+
</epp>
|
@@ -0,0 +1,9 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
2
|
+
<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">
|
3
|
+
<extension>
|
4
|
+
<fred:extcommand xmlns:fred="http://www.nic.cz/xml/epp/fred-1.4" xsi:schemaLocation="http://www.nic.cz/xml/epp/fred-1.4 fred-1.4.xsd">
|
5
|
+
<fred:listDomains/>
|
6
|
+
<fred:clTRID>anyp010#10-02-08at14:48:05</fred:clTRID>
|
7
|
+
</fred:extcommand>
|
8
|
+
</extension>
|
9
|
+
</epp>
|
@@ -0,0 +1,17 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
2
|
+
<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">
|
3
|
+
<command>
|
4
|
+
<transfer op="request">
|
5
|
+
<domain:transfer xmlns:domain="http://www.nic.cz/xml/epp/domain-1.4" xsi:schemaLocation="http://www.nic.cz/xml/epp/domain-1.4 domain-1.4.xsd">
|
6
|
+
<domain:name>teinetest.ee</domain:name>
|
7
|
+
<domain:authInfo>r3aVYGOz</domain:authInfo>
|
8
|
+
</domain:transfer>
|
9
|
+
</transfer>
|
10
|
+
<extension>
|
11
|
+
<eis:extdata xmlns:eis="urn:ee:eis:xml:epp:eis-1.0" xsi:schemaLocation="urn:ee:eis:xml:epp:eis-1.0 eis-1.0.xsd">
|
12
|
+
<eis:legalDocument type="ddoc">.... base64 encoded document ....</eis:legalDocument>
|
13
|
+
</eis:extdata>
|
14
|
+
</extension>
|
15
|
+
<clTRID>pjay002#10-02-15at18:05:03</clTRID>
|
16
|
+
</command>
|
17
|
+
</epp>
|
@@ -0,0 +1,28 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
2
|
+
<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">
|
3
|
+
<command>
|
4
|
+
<update>
|
5
|
+
<domain:update xmlns:domain="http://www.nic.cz/xml/epp/domain-1.4" xsi:schemaLocation="http://www.nic.cz/xml/epp/domain-1.4 domain-1.4.xsd">
|
6
|
+
<domain:name>testimine.ee</domain:name>
|
7
|
+
<domain:add>
|
8
|
+
<domain:admin>margustest3</domain:admin>
|
9
|
+
</domain:add>
|
10
|
+
<domain:rem>
|
11
|
+
<domain:admin>margustest4</domain:admin>
|
12
|
+
<domain:tempcontact>margustest5</domain:tempcontact>
|
13
|
+
</domain:rem>
|
14
|
+
<domain:chg>
|
15
|
+
<domain:nsset>rackspace1</domain:nsset>
|
16
|
+
<domain:registrant>margustest3</domain:registrant>
|
17
|
+
<domain:authInfo>MyTestPassword</domain:authInfo>
|
18
|
+
</domain:chg>
|
19
|
+
</domain:update>
|
20
|
+
</update>
|
21
|
+
<extension>
|
22
|
+
<eis:extdata xmlns:eis="urn:ee:eis:xml:epp:eis-1.0" xsi:schemaLocation="urn:ee:eis:xml:epp:eis-1.0eis-1.0.xsd">
|
23
|
+
<eis:legalDocument type="ddoc">.... base64 encoded document ....</eis:legalDocument>
|
24
|
+
</eis:extdata>
|
25
|
+
</extension>
|
26
|
+
<clTRID>qmhg010#10-02-15at18:22:25</clTRID>
|
27
|
+
</command>
|
28
|
+
</epp>
|
@@ -0,0 +1,12 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
2
|
+
<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">
|
3
|
+
<command>
|
4
|
+
<check>
|
5
|
+
<nsset:check xmlns:nsset="http://www.nic.cz/xml/epp/nsset-1.2" xsi:schemaLocation="http://www.nic.cz/xml/epp/nsset-1.2 nsset-1.2.xsd">
|
6
|
+
<nsset:id>NSSID:TEST:1</nsset:id>
|
7
|
+
<nsset:id>NSSID:TEST:2</nsset:id>
|
8
|
+
</nsset:check>
|
9
|
+
</check>
|
10
|
+
<clTRID>qspn005#10-02-08at14:25:17</clTRID>
|
11
|
+
</command>
|
12
|
+
</epp>
|
@@ -0,0 +1,20 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
2
|
+
<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">
|
3
|
+
<command>
|
4
|
+
<create>
|
5
|
+
<nsset:create xmlns:nsset="http://www.nic.cz/xml/epp/nsset-1.2" xsi:schemaLocation="http://www.nic.cz/xml/epp/nsset-1.2 nsset-1.2.xsd">
|
6
|
+
<nsset:id>NSSID:TEST:2</nsset:id>
|
7
|
+
<nsset:ns>
|
8
|
+
<nsset:name>test.com</nsset:name>
|
9
|
+
<nsset:addr>123.123.123.123</nsset:addr>
|
10
|
+
</nsset:ns>
|
11
|
+
<nsset:ns>
|
12
|
+
<nsset:name>ns2.test.com</nsset:name>
|
13
|
+
<nsset:addr>111.111.111.111</nsset:addr>
|
14
|
+
</nsset:ns>
|
15
|
+
<nsset:tech>test1</nsset:tech>
|
16
|
+
</nsset:create>
|
17
|
+
</create>
|
18
|
+
<clTRID>qspn006#10-02-08at14:28:04</clTRID>
|
19
|
+
</command>
|
20
|
+
</epp>
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
2
|
+
<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">
|
3
|
+
<command>
|
4
|
+
<delete>
|
5
|
+
<nsset:delete xmlns:nsset="http://www.nic.cz/xml/epp/nsset-1.2" xsi:schemaLocation="http://www.nic.cz/xml/epp/nsset-1.2 nsset-1.2.xsd">
|
6
|
+
<nsset:id>NSSID:TEST:2</nsset:id>
|
7
|
+
</nsset:delete>
|
8
|
+
</delete>
|
9
|
+
<clTRID>hpcv004#10-02-17at11:12:43</clTRID>
|
10
|
+
</command>
|
11
|
+
</epp>
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
2
|
+
<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">
|
3
|
+
<command>
|
4
|
+
<info>
|
5
|
+
<nsset:info xmlns:nsset="http://www.nic.cz/xml/epp/nsset-1.2" xsi:schemaLocation="http://www.nic.cz/xml/epp/nsset-1.2 nsset-1.2.xsd">
|
6
|
+
<nsset:id>NSSID:TEST:2</nsset:id>
|
7
|
+
</nsset:info>
|
8
|
+
</info>
|
9
|
+
<clTRID>qspn008#10-02-08at14:29:00</clTRID>
|
10
|
+
</command>
|
11
|
+
</epp>
|
@@ -0,0 +1,22 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
2
|
+
<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">
|
3
|
+
<command>
|
4
|
+
<update>
|
5
|
+
<nsset:update xmlns:nsset="http://www.nic.cz/xml/epp/nsset-1.2" xsi:schemaLocation="http://www.nic.cz/xml/epp/nsset-1.2 nsset-1.2.xsd">
|
6
|
+
<nsset:id>NSSID:TEST:2</nsset:id>
|
7
|
+
<nsset:add>
|
8
|
+
<nsset:ns>
|
9
|
+
<nsset:name>ns3.test.com</nsset:name>
|
10
|
+
<nsset:addr>112.112.112.112</nsset:addr>
|
11
|
+
</nsset:ns>
|
12
|
+
<nsset:tech>margustech1</nsset:tech>
|
13
|
+
</nsset:add>
|
14
|
+
<nsset:rem>
|
15
|
+
<nsset:name>ns2.test.com</nsset:name>
|
16
|
+
<nsset:tech>test1</nsset:tech>
|
17
|
+
</nsset:rem>
|
18
|
+
</nsset:update>
|
19
|
+
</update>
|
20
|
+
<clTRID>anyp007#10-02-08at14:43:29</clTRID>
|
21
|
+
</command>
|
22
|
+
</epp>
|
@@ -0,0 +1,23 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<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">
|
3
|
+
<response>
|
4
|
+
<result code="1000">
|
5
|
+
<msg>Command completed successfully</msg>
|
6
|
+
</result>
|
7
|
+
<resData>
|
8
|
+
<contact:chkData xmlns:contact="http://www.nic.cz/xml/epp/contact-1.6" xsi:schemaLocation="http://www.nic.cz/xml/epp/contact-1.6 contact-1.6.xsd">
|
9
|
+
<contact:cd>
|
10
|
+
<contact:id avail="1">CID:FRAKTAL:1</contact:id>
|
11
|
+
</contact:cd>
|
12
|
+
<contact:cd>
|
13
|
+
<contact:id avail="0">CID:FRAKTAL:2</contact:id>
|
14
|
+
<contact:reason>already registered.</contact:reason>
|
15
|
+
</contact:cd>
|
16
|
+
</contact:chkData>
|
17
|
+
</resData>
|
18
|
+
<trID>
|
19
|
+
<clTRID>neka003#10-02-08at13:47:58</clTRID>
|
20
|
+
<svTRID>ccReg-0000000435</svTRID>
|
21
|
+
</trID>
|
22
|
+
</response>
|
23
|
+
</epp>
|
@@ -0,0 +1,18 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<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">
|
3
|
+
<response>
|
4
|
+
<result code="1000">
|
5
|
+
<msg>Command completed successfully</msg>
|
6
|
+
</result>
|
7
|
+
 <resData>
|
8
|
+
<contact:creData xmlns:contact="http://www.nic.cz/xml/epp/contact-1.6" xsi:schemaLocation="http://www.nic.cz/xml/epp/contact-1.6 contact-1.6.xsd">
|
9
|
+
<contact:id>CID:TEST:10</contact:id>
|
10
|
+
<contact:crDate>2010-02-08T15:50:55+02:00</contact:crDate>
|
11
|
+
</contact:creData>
|
12
|
+
</resData>
|
13
|
+
<trID>
|
14
|
+
<clTRID>neka005#10-02-08at13:51:37</clTRID>
|
15
|
+
<svTRID>ccReg-0000000437</svTRID>
|
16
|
+
</trID>
|
17
|
+
</response>
|
18
|
+
</epp>
|
@@ -0,0 +1,12 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<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">
|
3
|
+
<response>
|
4
|
+
<result code="1000">
|
5
|
+
<msg>Command completed successfully</msg>
|
6
|
+
</result>
|
7
|
+
<trID>
|
8
|
+
<clTRID>wgyn007#10-02-08at14:03:17</clTRID>
|
9
|
+
<svTRID>ccReg-0000000444</svTRID>
|
10
|
+
</trID>
|
11
|
+
</response>
|
12
|
+
</epp>
|
@@ -0,0 +1,24 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<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">
|
3
|
+
<response>
|
4
|
+
<result code="1000">
|
5
|
+
<msg>Command completed successfully</msg>
|
6
|
+
</result>
|
7
|
+
<resData>
|
8
|
+
<fred:resultsList xmlns:fred="http://www.nic.cz/xml/epp/fred-1.4" xsi:schemaLocation="http://www.nic.cz/xml/epp/fred-1.4 fred-1.3.xsd">
|
9
|
+
<fred:item>CID:TESTREGISTRAR:5</fred:item>
|
10
|
+
<fred:item>CID:TESTREGISTRAR:1</fred:item>
|
11
|
+
<fred:item>CID:TESTREGISTRAR:2</fred:item>
|
12
|
+
<fred:item>CID:TESTREGISTRAR:3</fred:item>
|
13
|
+
<fred:item>CID:TESTREGISTRAR:4</fred:item>
|
14
|
+
<fred:item>CID:TESTREGISTRAR:TECH1</fred:item>
|
15
|
+
<fred:item>CID:TESTREGISTRAR:TECH2</fred:item>
|
16
|
+
<fred:item>CID:TESTREGISTRAR:TECH4</fred:item>
|
17
|
+
</fred:resultsList>
|
18
|
+
</resData>
|
19
|
+
<trID>
|
20
|
+
<clTRID>anyp006#10-02-08at14:42:58</clTRID>
|
21
|
+
<svTRID>ccReg-0000000460</svTRID>
|
22
|
+
</trID>
|
23
|
+
</response>
|
24
|
+
</epp>
|
@@ -0,0 +1,35 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<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">
|
3
|
+
<response>
|
4
|
+
<result code="1000">
|
5
|
+
<msg>Command completed successfully</msg>
|
6
|
+
</result>
|
7
|
+
<resData>
|
8
|
+
<contact:infData xmlns:contact="http://www.nic.cz/xml/epp/contact-1.6" xsi:schemaLocation="http://www.nic.cz/xml/epp/contact-1.6 contact-1.6.xsd">
|
9
|
+
<contact:id>CID:TEST:1</contact:id>
|
10
|
+
<contact:roid>C0000000006-EPP</contact:roid>
|
11
|
+
<contact:status s="linked">Has relation to other records in registry</contact:status>
|
12
|
+
<contact:postalInfo>
|
13
|
+
<contact:name>Uus nimi ajee</contact:name>
|
14
|
+
<contact:addr>
|
15
|
+
<contact:street>Kastani</contact:street>
|
16
|
+
<contact:city>Tallinn</contact:city>
|
17
|
+
<contact:pc>10613</contact:pc>
|
18
|
+
<contact:cc>EE</contact:cc>
|
19
|
+
</contact:addr>
|
20
|
+
</contact:postalInfo>
|
21
|
+
<contact:email>test@test.host</contact:email>
|
22
|
+
<contact:clID>margus</contact:clID>
|
23
|
+
<contact:crID>margus</contact:crID>
|
24
|
+
<contact:crDate>2010-01-21T19:08:10+02:00</contact:crDate>
|
25
|
+
<contact:upID>margus</contact:upID>
|
26
|
+
<contact:upDate>2010-01-22T18:45:29+02:00</contact:upDate>
|
27
|
+
<contact:authInfo>jUEI1F89</contact:authInfo>
|
28
|
+
<contact:disclose flag="0"/></contact:infData>
|
29
|
+
</resData>
|
30
|
+
<trID>
|
31
|
+
<clTRID>wgyn008#10-02-08at14:05:57</clTRID>
|
32
|
+
<svTRID>ccReg-0000000445</svTRID>
|
33
|
+
</trID>
|
34
|
+
</response>
|
35
|
+
</epp>
|
@@ -0,0 +1,12 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<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">
|
3
|
+
<response>
|
4
|
+
<result code="1000">
|
5
|
+
<msg>Command completed successfully</msg>
|
6
|
+
</result>
|
7
|
+
<trID>
|
8
|
+
<clTRID>wgyn002#10-02-08at13:59:51</clTRID>
|
9
|
+
<svTRID>ccReg-0000000439</svTRID>
|
10
|
+
</trID>
|
11
|
+
</response>
|
12
|
+
</epp>
|
@@ -0,0 +1,23 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<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">
|
3
|
+
<response>
|
4
|
+
<result code="1000">
|
5
|
+
<msg>Command completed successfully</msg>
|
6
|
+
</result>
|
7
|
+
<resData>
|
8
|
+
<domain:chkData xmlns:domain="http://www.nic.cz/xml/epp/domain-1.4" xsi:schemaLocation="http://www.nic.cz/xml/epp/domain-1.4 domain-1.4.xsd">
|
9
|
+
<domain:cd>
|
10
|
+
<domain:name avail="0">fraktal.ee</domain:name>
|
11
|
+
<domain:reason>already registered.</domain:reason>
|
12
|
+
</domain:cd>
|
13
|
+
<domain:cd>
|
14
|
+
<domain:name avail="1">edicypages.ee</domain:name>
|
15
|
+
</domain:cd>
|
16
|
+
</domain:chkData>
|
17
|
+
</resData>
|
18
|
+
<trID>
|
19
|
+
<clTRID>wjhl015#10-02-15at17:59:12</clTRID>
|
20
|
+
<svTRID>ccReg-0000000485</svTRID>
|
21
|
+
</trID>
|
22
|
+
</response>
|
23
|
+
</epp>
|
@@ -0,0 +1,19 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<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">
|
3
|
+
<response>
|
4
|
+
<result code="1000">
|
5
|
+
<msg>Command completed successfully</msg>
|
6
|
+
</result>
|
7
|
+
<resData>
|
8
|
+
<domain:chkData xmlns:domain="http://www.nic.cz/xml/epp/domain-1.4" xsi:schemaLocation="http://www.nic.cz/xml/epp/domain-1.4 domain-1.4.xsd">
|
9
|
+
<domain:cd>
|
10
|
+
<domain:name avail="1">edicypages.ee</domain:name>
|
11
|
+
</domain:cd>
|
12
|
+
</domain:chkData>
|
13
|
+
</resData>
|
14
|
+
<trID>
|
15
|
+
<clTRID>wjhl015#10-02-15at17:59:12</clTRID>
|
16
|
+
<svTRID>ccReg-0000000485</svTRID>
|
17
|
+
</trID>
|
18
|
+
</response>
|
19
|
+
</epp>
|
@@ -0,0 +1,20 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<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">
|
3
|
+
<response>
|
4
|
+
<result code="1000">
|
5
|
+
<msg>Command completed successfully</msg>
|
6
|
+
</result>
|
7
|
+
<resData>
|
8
|
+
<domain:chkData xmlns:domain="http://www.nic.cz/xml/epp/domain-1.4" xsi:schemaLocation="http://www.nic.cz/xml/epp/domain-1.4 domain-1.4.xsd">
|
9
|
+
<domain:cd>
|
10
|
+
<domain:name avail="0">fraktal.ee</domain:name>
|
11
|
+
<domain:reason>already registered.</domain:reason>
|
12
|
+
</domain:cd>
|
13
|
+
</domain:chkData>
|
14
|
+
</resData>
|
15
|
+
<trID>
|
16
|
+
<clTRID>wjhl015#10-02-15at17:59:12</clTRID>
|
17
|
+
<svTRID>ccReg-0000000485</svTRID>
|
18
|
+
</trID>
|
19
|
+
</response>
|
20
|
+
</epp>
|
@@ -0,0 +1,19 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<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">
|
3
|
+
<response>
|
4
|
+
<result code="1000">
|
5
|
+
<msg>Command completed successfully</msg>
|
6
|
+
</result>
|
7
|
+
<resData>
|
8
|
+
<domain:creData xmlns:domain="http://www.nic.cz/xml/epp/domain-1.4" xsi:schemaLocation="http://www.nic.cz/xml/epp/domain-1.4 domain-1.4.xsd">
|
9
|
+
<domain:name>testing.ee</domain:name>
|
10
|
+
<domain:crDate>2010-02-15T19:50:00+02:00</domain:crDate>
|
11
|
+
<domain:exDate>2011-02-15</domain:exDate>
|
12
|
+
</domain:creData>
|
13
|
+
</resData>
|
14
|
+
<trID>
|
15
|
+
<clTRID>wjhl005#10-02-15at17:50:59</clTRID>
|
16
|
+
<svTRID>ccReg-0000000475</svTRID>
|
17
|
+
</trID>
|
18
|
+
</response>
|
19
|
+
</epp>
|
@@ -0,0 +1,12 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<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">
|
3
|
+
<response>
|
4
|
+
<result code="1000">
|
5
|
+
<msg>Command completed successfully</msg>
|
6
|
+
</result>
|
7
|
+
<trID>
|
8
|
+
<clTRID>kmki002#10-02-15at18:15:58</clTRID>
|
9
|
+
<svTRID>ccReg-0000000489</svTRID>
|
10
|
+
</trID>
|
11
|
+
</response>
|
12
|
+
</epp>
|
@@ -0,0 +1,18 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<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">
|
3
|
+
<response>
|
4
|
+
<result code="1000">
|
5
|
+
<msg>Command completed successfully</msg>
|
6
|
+
</result>
|
7
|
+
<resData>
|
8
|
+
<fred:resultsList xmlns:fred="http://www.nic.cz/xml/epp/fred-1.4" xsi:schemaLocation="http://www.nic.cz/xml/epp/fred-1.4 fred-1.3.xsd">
|
9
|
+
<fred:item>testing.ee</fred:item>
|
10
|
+
<fred:item>testimine.ee</fred:item>
|
11
|
+
</fred:resultsList>
|
12
|
+
</resData>
|
13
|
+
<trID>
|
14
|
+
<clTRID>anyp006#10-02-08at14:42:58</clTRID>
|
15
|
+
<svTRID>ccReg-0000000460</svTRID>
|
16
|
+
</trID>
|
17
|
+
</response>
|
18
|
+
</epp>
|
@@ -0,0 +1,27 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<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">
|
3
|
+
<response>
|
4
|
+
<result code="1000">
|
5
|
+
<msg>Command completed successfully</msg>
|
6
|
+
</result>
|
7
|
+
<resData>
|
8
|
+
<domain:infData xmlns:domain="http://www.nic.cz/xml/epp/domain-1.4" xsi:schemaLocation="http://www.nic.cz/xml/epp/domain-1.4 domain-1.4.xsd">
|
9
|
+
<domain:name>testing.ee</domain:name>
|
10
|
+
<domain:roid>D0000000052-EPP</domain:roid>
|
11
|
+
<domain:status s="ok">Objekt is without restrictions</domain:status>
|
12
|
+
<domain:registrant>MARGUSTEST2</domain:registrant>
|
13
|
+
<domain:admin>MARGUSTEST3</domain:admin>
|
14
|
+
<domain:nsset>RACKSPACE1</domain:nsset>
|
15
|
+
<domain:clID>margus</domain:clID>
|
16
|
+
<domain:crID>margus</domain:crID>
|
17
|
+
<domain:crDate>2010-02-15T19:50:00+02:00</domain:crDate>
|
18
|
+
<domain:exDate>2011-02-15</domain:exDate>
|
19
|
+
<domain:authInfo>b23G6IDH</domain:authInfo>
|
20
|
+
</domain:infData>
|
21
|
+
</resData>
|
22
|
+
<trID>
|
23
|
+
<clTRID>wjhl006#10-02-15at17:51:27</clTRID>
|
24
|
+
<svTRID>ccReg-0000000476</svTRID>
|
25
|
+
</trID>
|
26
|
+
</response>
|
27
|
+
</epp>
|
@@ -0,0 +1,17 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<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">
|
3
|
+
<response>
|
4
|
+
<result code="1000">
|
5
|
+
<msg>Command completed successfully</msg>
|
6
|
+
</result>
|
7
|
+
<resData>
|
8
|
+
<fred:infoResponse xmlns:fred="http://www.nic.cz/xml/epp/fred-1.4" xsi:schemaLocation="http://www.nic.cz/xml/epp/fred-1.4 fred-1.3.xsd">
|
9
|
+
<fred:count>23</fred:count>
|
10
|
+
</fred:infoResponse>
|
11
|
+
</resData>
|
12
|
+
<trID>
|
13
|
+
<clTRID>anyp010#10-02-08at14:48:05</clTRID>
|
14
|
+
<svTRID>ccReg-0000000464</svTRID>
|
15
|
+
</trID>
|
16
|
+
</response>
|
17
|
+
</epp>
|
@@ -0,0 +1,18 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<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">
|
3
|
+
<response>
|
4
|
+
<result code="1000">
|
5
|
+
<msg>Command completed successfully</msg>
|
6
|
+
</result>
|
7
|
+
<resData>
|
8
|
+
<domain:renData xmlns:domain="http://www.nic.cz/xml/epp/domain-1.4" xsi:schemaLocation="http://www.nic.cz/xml/epp/domain-1.4 domain-1.4.xsd">
|
9
|
+
<domain:name>testing.ee</domain:name>
|
10
|
+
<domain:exDate>2012-02-15</domain:exDate>
|
11
|
+
</domain:renData>
|
12
|
+
</resData>
|
13
|
+
<trID>
|
14
|
+
<clTRID>wjhl008#10-02-15at17:52:18</clTRID>
|
15
|
+
<svTRID>ccReg-0000000478</svTRID>
|
16
|
+
</trID>
|
17
|
+
</response>
|
18
|
+
</epp>
|
@@ -0,0 +1,12 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<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">
|
3
|
+
<response>
|
4
|
+
<result code="1000">
|
5
|
+
<msg>Command completed successfully</msg>
|
6
|
+
</result>
|
7
|
+
<trID>
|
8
|
+
<clTRID>pjay002#10-02-15at18:05:03</clTRID>
|
9
|
+
<svTRID>ccReg-0000000487</svTRID>
|
10
|
+
</trID>
|
11
|
+
</response>
|
12
|
+
</epp>
|
@@ -0,0 +1,12 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<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">
|
3
|
+
<response>
|
4
|
+
<result code="1000">
|
5
|
+
<msg>Command completed successfully</msg>
|
6
|
+
</result>
|
7
|
+
<trID>
|
8
|
+
<clTRID>qmhg010#10-02-15at18:22:25</clTRID>
|
9
|
+
<svTRID>ccReg-0000000500</svTRID>
|
10
|
+
</trID>
|
11
|
+
</response>
|
12
|
+
</epp>
|
@@ -0,0 +1,22 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<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">
|
3
|
+
<response>
|
4
|
+
<result code="1000">
|
5
|
+
<msg>Command completed successfully</msg>
|
6
|
+
</result>
|
7
|
+
<resData>
|
8
|
+
<nsset:chkData xmlns:nsset="http://www.nic.cz/xml/epp/nsset-1.2" xsi:schemaLocation="http://www.nic.cz/xml/epp/nsset-1.2 nsset-1.2.xsd">
|
9
|
+
<nsset:cd>
|
10
|
+
<nsset:id avail="1">NSSID:TEST:1</nsset:id>
|
11
|
+
</nsset:cd>
|
12
|
+
<nsset:cd>
|
13
|
+
<nsset:id avail="1">NSSID:TEST:2</nsset:id>
|
14
|
+
</nsset:cd>
|
15
|
+
</nsset:chkData>
|
16
|
+
</resData>
|
17
|
+
<trID>
|
18
|
+
<clTRID>qspn005#10-02-08at14:25:17</clTRID>
|
19
|
+
<svTRID>ccReg-0000000451</svTRID>
|
20
|
+
</trID>
|
21
|
+
</response>
|
22
|
+
</epp>
|
@@ -0,0 +1,18 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<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">
|
3
|
+
<response>
|
4
|
+
<result code="1000">
|
5
|
+
<msg>Command completed successfully</msg>
|
6
|
+
</result>
|
7
|
+
<resData>
|
8
|
+
<nsset:creData xmlns:nsset="http://www.nic.cz/xml/epp/nsset-1.2" xsi:schemaLocation="http://www.nic.cz/xml/epp/nsset-1.2 nsset-1.2.xsd">
|
9
|
+
<nsset:id>NSSID:TEST:2</nsset:id>
|
10
|
+
<nsset:crDate>2010-02-08T16:27:22+02:00</nsset:crDate>
|
11
|
+
</nsset:creData>
|
12
|
+
</resData>
|
13
|
+
<trID>
|
14
|
+
<clTRID>qspn006#10-02-08at14:28:04</clTRID>
|
15
|
+
<svTRID>ccReg-0000000452</svTRID>
|
16
|
+
</trID>
|
17
|
+
</response>
|
18
|
+
</epp>
|
@@ -0,0 +1,12 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<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">
|
3
|
+
<response>
|
4
|
+
<result code="1000">
|
5
|
+
<msg>Command completed successfully</msg>
|
6
|
+
</result>
|
7
|
+
<trID>
|
8
|
+
<clTRID>hpcv004#10-02-17at11:12:43</clTRID>
|
9
|
+
<svTRID>ccReg-0000000506</svTRID>
|
10
|
+
</trID>
|
11
|
+
</response>
|
12
|
+
</epp>
|
@@ -0,0 +1,33 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<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">
|
3
|
+
<response>
|
4
|
+
<result code="1000">
|
5
|
+
<msg>Command completed successfully</msg>
|
6
|
+
</result>
|
7
|
+
<resData>
|
8
|
+
<nsset:infData xmlns:nsset="http://www.nic.cz/xml/epp/nsset-1.2" xsi:schemaLocation="http:// www.nic.cz/xml/epp/nsset-1.2 nsset-1.2.xsd">
|
9
|
+
<nsset:id>NSSID:TEST:2</nsset:id>
|
10
|
+
<nsset:roid>N0000000051-EPP</nsset:roid>
|
11
|
+
<nsset:status s="ok">Objekt is without restrictions</nsset:status>
|
12
|
+
<nsset:clID>margus</nsset:clID>
|
13
|
+
<nsset:crID>margus</nsset:crID>
|
14
|
+
<nsset:crDate>2010-02-08T16:27:22+02:00</nsset:crDate>
|
15
|
+
<nsset:authInfo>rfEqSdtI</nsset:authInfo>
|
16
|
+
<nsset:ns>
|
17
|
+
<nsset:name>test.com</nsset:name>
|
18
|
+
<nsset:addr>123.123.123.123</nsset:addr>
|
19
|
+
</nsset:ns>
|
20
|
+
<nsset:ns>
|
21
|
+
<nsset:name>ns2.test.com</nsset:name>
|
22
|
+
<nsset:addr>111.111.111.111</nsset:addr>
|
23
|
+
</nsset:ns>
|
24
|
+
<nsset:tech>TEST1</nsset:tech>
|
25
|
+
<nsset:reportlevel>3</nsset:reportlevel>
|
26
|
+
</nsset:infData>
|
27
|
+
</resData>
|
28
|
+
<trID>
|
29
|
+
<clTRID>qspn008#10-02-08at14:29:00</clTRID>
|
30
|
+
<svTRID>ccReg-0000000454</svTRID>
|
31
|
+
</trID>
|
32
|
+
</response>
|
33
|
+
</epp>
|
@@ -0,0 +1,12 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<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">
|
3
|
+
<response>
|
4
|
+
<result code="1000">
|
5
|
+
<msg>Command completed successfully</msg>
|
6
|
+
</result>
|
7
|
+
<trID>
|
8
|
+
<clTRID>anyp007#10-02-08at14:43:29</clTRID>
|
9
|
+
<svTRID>ccReg-0000000461</svTRID>
|
10
|
+
</trID>
|
11
|
+
</response>
|
12
|
+
</epp>
|