A friend showed me the following XML doc and asked me some questions. I'd like to check them with you
For the XML document
<?xml version="1.0"?>
<product xmlns:m="urn:example.com:catalog">
<m:productInfo>
<detail xmlns="urn:example.com:products">
<name>Hello World!</name>
</detail>
</m:productInfo>
</product>
What is the URI of the namespace to which the top level <product> element belongs?
What is the URI of the namespace to which the <productInfo> element belongs?
Thanks!
detailin, and what namespace is elementnamein?