php-epp-client icon indicating copy to clipboard operation
php-epp-client copied to clipboard

eurid does not work with eppUpdateDomainRequest

Open toonmbox opened this issue 3 years ago • 0 comments
trafficstars

?xml version="1.0" encoding="UTF-8"?> epp> command> update> domain:update> domain:name>DOMAIN</domain:name> domain:add> domain:contact type="onsite">ONSITE</domain:contact> /domain:add> domain:rem> domain:contact type="onsite"> ONSITE </domain:contact> /domain:rem> domain:chg> domain:registrant>REGISTRANT</domain:registrant> /domain:chg> /domain:update> /update> clTRID>CLTRID</clTRID> /command> /epp>

is incorrect format. Should be;

?xml version="1.0" encoding="UTF-8" standalone="no"?> epp xmlns="urn:ietf:params:xml:ns:epp-1.0"> command> update> domain:update xmlns:domain="urn:ietf:params:xml:ns:domain-1.0"> domain:name>somedomain</domain:name> domain:chg> domain:registrant> REGISTRANT </domain:registrant> /domain:chg> /domain:update> /update> extension> domain-ext:update xmlns:domain-ext="http://www.eurid.eu/xml/epp/domain-ext-2.3"> domain-ext:add> domain-ext:contact type="onsite"> ONSITE </domain-ext:contact> /domain-ext:add> domain-ext:rem> domain-ext:contact type="onsite"> ONSITE </domain-ext:contact> /domain-ext:rem> /domain-ext:update> /extension> clTRID> CLTRID </clTRID> /command> /epp>

toonmbox avatar Sep 20 '22 07:09 toonmbox