Can you give me an example on how you can do this? Do I just need to extarct each XML node from my file containing the full XML file (i.e., dlgSave.FileName.ToString(
Main Topics
Browse All TopicsIs it possible to validate XML against fragments of a SCHEMA? For example, my XML below refers to several different elements in the SCHEMA. Currently, I am validating the entire XML structure against the SCHEMA but now I want to only validate certain elements. Is it possible to validate just the AttributeGroupLink element from my XML against the AttributeGroupLink element in the SCHEMA?
My XML being validated:
<Attribute ID="070_23000 " FullTextIndexed="false" ExternallyMaintained="fals
<Name>Abduction 160 degrees</Name>
<Validation BaseType="text" />
<AttributeGroupLink AttributeGroupID="Product Specification" />
<LinkType LinkTypeID="P" />
</Attribute>
My Code to validate XML against a SCHEMA.
XmlReaderSettings settings = new XmlReaderSettings();
settings.ValidationType = ValidationType.Schema;
settings.Schemas.Add(null,
settings.ValidationEventHa
{
//Console.WriteLine("{0}: {1}", vargs.Severity, vargs.Message);
errortext = vargs.Severity + " " + vargs.Message + " Line # = " + vargs.Exception.LineNumber
txtData.Text = string.Format("{0}{1}{2}\r
XMLErrors++;
};
using (XmlReader reader = XmlReader.Create(dlgSave.F
//using (XmlReader reader = XmlReader.Create(@"c:\\FUL
{
while (reader.Read()) {
ValidateCnt++;
}
}
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Can you give me an example on how you can do this? Do I just need to extarct each XML node from my file containing the full XML file (i.e., dlgSave.FileName.ToString(
Business Accounts
Answer for Membership
by: jensfiedererPosted on 2009-05-06 at 06:13:05ID: 24314255
Any single node of an XML document can be turned into a document itself, which can have a schema.