vote up 0 vote down star
1

Hello everyone,

I want to do XML validation to validate whether an input XML file conforming to a schema file (.xsd). My question is when do we need to specify the target namespace parameter and what is the function of the target namespace parameter?

I got this question from the following MSDN pages,

http://msdn.microsoft.com/en-us/library/1hh8b082.aspx

http://msdn.microsoft.com/en-us/library/system.xml.schema.xmlschemaset.aspx

More specifically, I am referring to the 1st parameter of Add method of XmlSchemaSet class.

thanks in advance, George

EDIT1: My current confusion is,

  1. In the XML schema file, there is a target namespace attribute at top, and all elements defined in this XML schema file are defined in the target namespace;
  2. In the XML document file to check against scheme, the XML document may use elements defined in the "target namespace" of the XML schema file, and may also use elements from other namespaces other than the "target namespace" defined in the XML schema file;
  3. Question is, should we just add the "target namespace" to the Add method of XmlSchemaSet class, or add all namespaces which the XML document will use to the Add method of XmlSchemaSet class?
  4. Another question is, whether we could define multiple "target namespace" in the XML schema file? If yes, how?
flag

42% accept rate

1 Answer

vote up 2 vote down

You'd need to use that parameter if you were using namespaces in your XML document - e.g. if some of you tags were of the form <xx:TagName>. Otherwise you can just pass in an empty string ("").

link|flag
To add to your answer, you need to pass in Null/Nothing as the targetNamespace if you want to XmlSchemaSet to use the namespace defined in the XmlSchema. This allows you to dispense with explicitly passing the namespace in the Add method. +1 – Cerebrus Apr 15 at 8:07
@dommer, "using namespaces in your document ", you mean using namespace in the XML docuemnt or the schema document? – George2 Apr 15 at 8:53
@Cerebrus, "use the namespace defined in the XmlSchema", what means namespace defined in the XML Schame file or something else? Could you illustrate you points by the sample here (about the books.xml and books.xsd sampl)? msdn.microsoft.com/en-us/library/… – George2 Apr 15 at 8:59
In the XML document (edited post to make clear). – dommer Apr 15 at 10:24
@George: You guessed right... It means the namespace defined in the Xml schema file. – Cerebrus Apr 15 at 11:07
show 5 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.