XML模式文件中xs和xsd之间的区别?

XML模式文件中的xs和xsd前缀之间有什么区别?
the XSD 1.0 spec on w3.org

The XML representation of schema
components uses a vocabulary
identified by the namespace name
07001. For
brevity,the text and examples in this
specification use the prefix xs: to
stand for this namespace; in practice,
any prefix can be used.

在结束xs或xsd只是前缀。 XSD例如更多地由Microsoft模式使用。

重要的是如何声明命名空间。

<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
  ...
</xs:schema>

要么

<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  ...
</xsd:schema>

应该是等效的。

相关文章

php输出xml格式字符串
J2ME Mobile 3D入门教程系列文章之一
XML轻松学习手册
XML入门的常见问题(一)
XML入门的常见问题(三)
XML轻松学习手册(2)XML概念