Hi all,
Have been programming my own drop catch system and was just nearly ready to go live after testing with the epp testbed etc until I switched to live and when I fire off an EPP create command I get a response that the domain created successfully but said domain hasn't really been created at all.
No errors or anything, a perfectly fine command completed successfully response.
Anyone else seen this before? Here's my (very standard) create command:
P.S The registrant isn't really XXXXX by the way but a valid ID.
Have been programming my own drop catch system and was just nearly ready to go live after testing with the epp testbed etc until I switched to live and when I fire off an EPP create command I get a response that the domain created successfully but said domain hasn't really been created at all.
No errors or anything, a perfectly fine command completed successfully response.
Anyone else seen this before? Here's my (very standard) create command:
Code:
<?xml version=""1.0"" encoding=""UTF-8""?>
<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"">
<command>
<create>
<domain:create
xmlns:domain=""urn:ietf:params:xml:ns:domain-1.0""
xsi:schemaLocation=""urn:ietf:params:xml:ns:domain-1.0
domain-1.0.xsd"">
<domain:name>amazingdomain.co.uk</domain:name>
<domain:period unit=""y"">2</domain:period>
<domain:ns>
<domain:hostObj>ns1.mynameserver.com</domain:hostObj>
<domain:hostObj>ns2.mynameserver.com</domain:hostObj>
</domain:ns>
<domain:registrant>XXXXXXX</domain:registrant>
<domain:authInfo>
<domain:pw>**********</domain:pw>
</domain:authInfo>
</domain:create>
</create>
<clTRID>4182ca77-fe29-4b96-8636-509539297d3f</clTRID>
</command>
</epp>
P.S The registrant isn't really XXXXX by the way but a valid ID.