targetNamespace

Posted 主的羊

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了targetNamespace相关的知识,希望对你有一定的参考价值。

targetNamespace是一个xml的schema中的概念
  比如我们定义了这么个schema:
  <xs:schema xmlns:xs="url/2001/XMLSchema"
  targetNamespace="http://a.name/space">
  <xs:element name="address" type="xs:string" />
  </xs:schema>
  那么它表示的意思是address这个元素是属于"http://a.name/space"命名空间的。你想想看,如果你不指定targetNamespace,那么address是属于什么命名空间是不知道的,它肯定不是属于“url/2001/XMLSchema”命名空间。指定了这个以后,就能让我们定义的schema中的元素都有自己的命名空间。这个命名空间都是自己定义的。

以上是关于targetNamespace的主要内容,如果未能解决你的问题,请参考以下文章