Code: Select all
<test>
<subElement value="Hello"></subElement>
</test>
Code: Select all
<test>
<subElement value="Hello" />
</test>
Code: Select all
<myns:test xmlns:myns="http://www.example.com">
<myns:subElement value="Hello" />
</myns:test>
Code: Select all
<test xmlns="http://www.example.com">
<subElement value="Hello" />
</test>