You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When the ext_uris argument to Login::new() is None, Login serializes to and XML document that is invalid against the EPP schema. That's because it outputs an empty <svcExtension/> element, whereas the schema is:
That means that the <svcExtension> element must contain at least one <extURI> element, it can not be empty. To indicate no service extension the <svcExtension> element should be omited.
When the
ext_uris
argument toLogin::new()
isNone
,Login
serializes to and XML document that is invalid against the EPP schema. That's because it outputs an empty<svcExtension/>
element, whereas the schema is:That means that the
<svcExtension>
element must contain at least one<extURI>
element, it can not be empty. To indicate no service extension the<svcExtension>
element should be omited.Example of generated bogus XML:
The text was updated successfully, but these errors were encountered: