Replace the login validating command with a non-EPP impl

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=125336530
This commit is contained in:
cgoldfeder 2016-06-20 07:52:37 -07:00 committed by Ben McIlwain
parent 2b2fb958f6
commit 757aed2d80
3 changed files with 13 additions and 106 deletions

View file

@ -1,27 +0,0 @@
{namespace domain.registry.tools autoescape="strict"}
/**
* Login request.
*/
{template .login}
{@param clientIdentifier: string}
{@param password: string}
<epp xmlns="urn:ietf:params:xml:ns:epp-1.0">
<command>
<login>
<clID>{$clientIdentifier}</clID>
<pw>{$password}</pw>
<options>
<version>1.0</version>
<lang>en</lang>
</options>
<svcs>
<objURI>urn:ietf:params:xml:ns:host-1.0</objURI>
<objURI>urn:ietf:params:xml:ns:domain-1.0</objURI>
<objURI>urn:ietf:params:xml:ns:contact-1.0</objURI>
</svcs>
</login>
<clTRID>FakeClTrid</clTRID>
</command>
</epp>
{/template}