mirror of
https://github.com/internetee/epp_proxy.git
synced 2025-08-15 03:53:48 +02:00
Add example EPP frames
They correspond with EIS schema used in the registry project
This commit is contained in:
parent
8a64f88586
commit
18fb3462c4
1 changed files with 68 additions and 0 deletions
68
EXAMPLES.md
Normal file
68
EXAMPLES.md
Normal file
|
@ -0,0 +1,68 @@
|
||||||
|
# Example EPP commands
|
||||||
|
|
||||||
|
Can be used for local testing
|
||||||
|
```
|
||||||
|
Login
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<epp xmlns="https://epp.tld.ee/schema/epp-ee-1.0.xsd">
|
||||||
|
<command>
|
||||||
|
<login>
|
||||||
|
<clID>test_bestnames</clID>
|
||||||
|
<pw>testtest</pw>
|
||||||
|
<options>
|
||||||
|
<version>1.0</version>
|
||||||
|
<lang>en</lang>
|
||||||
|
</options>
|
||||||
|
<svcs>
|
||||||
|
<objURI>https://epp.tld.ee/schema/domain-eis-1.0.xsd</objURI>
|
||||||
|
<objURI>https://epp.tld.ee/schema/contact-ee-1.1.xsd</objURI>
|
||||||
|
<objURI>urn:ietf:params:xml:ns:host-1.0</objURI>
|
||||||
|
<objURI>urn:ietf:params:xml:ns:keyrelay-1.0</objURI>
|
||||||
|
</svcs>
|
||||||
|
</login>
|
||||||
|
</command>
|
||||||
|
</epp>
|
||||||
|
|
||||||
|
Logout
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<epp xmlns="https://epp.tld.ee/schema/epp-ee-1.0.xsd">
|
||||||
|
<command>
|
||||||
|
<logout>
|
||||||
|
<clID>test_bestnames</clID>
|
||||||
|
<pw>testtest</pw>
|
||||||
|
<options>
|
||||||
|
<version>1.0</version>
|
||||||
|
<lang>en</lang>
|
||||||
|
</options>
|
||||||
|
<svcs>
|
||||||
|
<objURI>https://epp.tld.ee/schema/domain-eis-1.0.xsd</objURI>
|
||||||
|
<objURI>https://epp.tld.ee/schema/contact-ee-1.1.xsd</objURI>
|
||||||
|
<objURI>urn:ietf:params:xml:ns:host-1.0</objURI>
|
||||||
|
<objURI>urn:ietf:params:xml:ns:keyrelay-1.0</objURI>
|
||||||
|
</svcs>
|
||||||
|
</logout>
|
||||||
|
</command>
|
||||||
|
</epp>
|
||||||
|
|
||||||
|
Poll
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<epp xmlns="https://epp.tld.ee/schema/epp-ee-1.0.xsd">
|
||||||
|
<command>
|
||||||
|
<poll op="req"/>
|
||||||
|
<clTRID>foo bar baz</clTRID>
|
||||||
|
</command>
|
||||||
|
</epp>
|
||||||
|
|
||||||
|
Check
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<epp xmlns="https://epp.tld.ee/schema/epp-ee-1.0.xsd">
|
||||||
|
<command>
|
||||||
|
<check>
|
||||||
|
<domain:check xmlns:domain="https://epp.tld.ee/schema/domain-eis-1.0.xsd">
|
||||||
|
<domain:name>airport.test</domain:name>
|
||||||
|
</domain:check>
|
||||||
|
</check>
|
||||||
|
<clTRID>Some some some</clTRID>
|
||||||
|
</command>
|
||||||
|
</epp>
|
||||||
|
```
|
Loading…
Add table
Add a link
Reference in a new issue