When trying to retrieve Publish Profile information for WebSites, using the Service Management API, many of the fields are not getting populated.
Looking at the getPublishProfile method in WebSiteOperationsImpl, it's calling getAttributeNodeNS with empty quotes as the namespace, but it's not finding anything. The documentation for org.w3c.dom.Element specifies that a null value shouId be used when no namespace is wanted.
WebSiteOperationsImpl L4481 v0.90
The line mentioned above it's just one example, there are many other invocations with namespace being an empty string instead of null, in the same method.
When trying to retrieve Publish Profile information for WebSites, using the Service Management API, many of the fields are not getting populated.
Looking at the getPublishProfile method in WebSiteOperationsImpl, it's calling getAttributeNodeNS with empty quotes as the namespace, but it's not finding anything. The documentation for org.w3c.dom.Element specifies that a null value shouId be used when no namespace is wanted.
WebSiteOperationsImpl L4481 v0.90
The line mentioned above it's just one example, there are many other invocations with namespace being an empty string instead of null, in the same method.