mirror of
https://github.com/google/nomulus.git
synced 2025-08-04 08:52:12 +02:00
Specifically domain_info.xml, domain_delete.xml, and domain_create_response.xml. As of this CL, all domain-related commands are standardized on the parameter "DOMAIN" for the domain name. No more ambiguous "NAME", which could be confused with a host name. This finishes the domain_create_response consolidation work from [] ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=204981136
19 lines
529 B
XML
19 lines
529 B
XML
<epp xmlns="urn:ietf:params:xml:ns:epp-1.0">
|
|
<response>
|
|
<result code="1000">
|
|
<msg>Command completed successfully</msg>
|
|
</result>
|
|
<resData>
|
|
<domain:creData
|
|
xmlns:domain="urn:ietf:params:xml:ns:domain-1.0">
|
|
<domain:name>%DOMAIN%</domain:name>
|
|
<domain:crDate>%CRDATE%</domain:crDate>
|
|
<domain:exDate>%EXDATE%</domain:exDate>
|
|
</domain:creData>
|
|
</resData>
|
|
<trID>
|
|
<clTRID>ABC-12345</clTRID>
|
|
<svTRID>server-trid</svTRID>
|
|
</trID>
|
|
</response>
|
|
</epp>
|