chobo2
chobo2

Reputation: 85715

Does VS2010 have an xml schema validator?

I am wondering does VS 2010 have something that I can use to compare an xml document to my schema? I tried a few online tools but my xml document seems to big and my browser just crashes.

Upvotes: 6

Views: 7662

Answers (1)

Garett
Garett

Reputation: 16818

Visual Studio provides design time validation and intellisense for XML. When you open an XML file you have to option of associating one of more schemas (from the properties window), which can be used to validate the file. See the documentation on the XML Editor in Visual Studio. While this article applies to Visual Studio 2005, it provides a graphical view of the capabilites that are present in 2005 and onwards.

Upvotes: 5

Related Questions