Tagged Questions
The xmlschemaset tag has no wiki summary.
5
votes
2answers
387 views
xmldocument and nested schemas
Using c# and .net 3.5 I'm trying to validate an xml document against a schema that has includes.
The schemas and there includes are as below
Schema1.xsd -> include another.xsd
another.xsd -> ...
2
votes
1answer
61 views
Get All Derived Types in SchemaSet
I need to find all types in a given SchemaSet.
What I do today is:
1) Iterate all XmlSchemaTypes in SchemaSet.GlobalTypes.Values.
2) Iterate all values of XmlTypeCode enum
I find this as ...
2
votes
1answer
311 views
How to compile a schema that uses a DataSet (xs:schema)?
I have created the simplest web service in c#:
public void AddData(DataSet ds)
The generated schema (Wsdl) looks like this:
<s:schema xmlns:s="http://www.w3.org/2001/XMLSchema">
...
...
1
vote
1answer
37 views
XmlSchemaValidationException.LineNumber and LinePosition are 0 when validating an Xml Schema with XDocument.Validate
I'm trying to validate an Xml fragment using an Xml Schema with the XDocument.Validate extension method. Whenever an invalid Xml fragment is used the ValidationEventHandler fires properly, however ...
1
vote
3answers
569 views
right approach to handling bad xml data
I've got a little c# windows service that periodically pulls xml from a web service and stores the data in a database table.
Unfortunately it's failing because the web service has occasional bad data ...
0
votes
0answers
20 views
Getting compilation errors from XmlSchemaSet compilation
I need to get an error list from attempts to compile XmlSchemaSet. The .Net framework seems only to return the first error in the schema but i need to have the complete error list to write a log file. ...
0
votes
1answer
238 views
IXmlSerializable with valid XmlSchema (XMLSchema:schema' element is not declared..)
I am trying to implement IXmlSerializable.
My class implements serializable and writes a single string. I wish to be able to export an object graph schema using XsdDataContractExporter (the standard ...