【发布时间】:2013-06-22 03:31:47
【问题描述】:
我看到一些 XSD 架构文档在其顶部 schema 元素中声明了 targetNamespace 和 xmlns:tns 属性。例如。以下一张采取from here。它们似乎也具有相同的字符串值。我了解targetNamespace 的作用,但除此之外xmlns:tns 还能做什么?
<?xml version="1.0" encoding="UTF-8"?>
<schema
xmlns="http://www.w3.org/2001/XMLSchema"
targetNamespace="http://www.example.org/Product"
xmlns:tns="http://www.example.org/Product"
elementFormDefault="qualified">
...
【问题讨论】:
标签: xsd xml-namespaces