Removed EPP session example #2721

This commit is contained in:
Priit Tark 2015-06-29 12:47:56 +03:00
parent adf29f1276
commit 175bae30b0

View file

@ -13213,53 +13213,3 @@ RESPONSE:
</response>
</epp>
```
### EPP Session when connected with valid user fails if new password is not valid
REQUEST:
```xml
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<epp xmlns="urn:ietf:params:xml:ns:epp-1.0">
<command>
<login>
<clID>gitlab</clID>
<pw>ghyt9e4fu</pw>
<newPW/>
<options>
<version>1.0</version>
<lang>en</lang>
</options>
<svcs>
<objURI>https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/domain-eis-1.0.xsd</objURI>
<objURI>https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/contact-eis-1.0.xsd</objURI>
<objURI>urn:ietf:params:xml:ns:host-1.0</objURI>
<objURI>urn:ietf:params:xml:ns:keyrelay-1.0</objURI>
<svcExtension>
<extURI>urn:ietf:params:xml:ns:secDNS-1.1</extURI>
<extURI>https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd</extURI>
</svcExtension>
</svcs>
</login>
<clTRID>ABC-12345</clTRID>
</command>
</epp>
```
RESPONSE:
```xml
<?xml version="1.0" encoding="UTF-8"?>
<epp schemaLocation="urn:ietf:params:xml:ns:epp-1.0 epp-1.0.xsd">
<response>
<result code="2306">
<msg lang="en">Password is missing [password]</msg>
</result>
<trID>
<clTRID>ABC-12345</clTRID>
<svTRID>ccReg-0674363838</svTRID>
</trID>
</response>
</epp>
```