Hello everyone,
Suppose I have the following XML document, which has no default namespace defined, and "Information" element is not prefixed with any namespace prefix. My questions are, 1. what is the namespace element "Information" belong to? 2. is there any way to apply XML schema check against "Information" element (for example, I want to check the content of Information element is not null or something using schema definition)?
<?xml version="1.0" encoding="utf-8"?>
<Information>Hello XML</Information>
thanks in advance, George