Tagged Questions
the procedure of checking an XML document against some kind of schema that describes rules that this type of document must conform to. This can often be done programmatically in eg. Java or C# and the schemas are often of the type XSD.
9
votes
3answers
155 views
JAXB: when using XML schema (.xsd) to validate an XML file, if validation fail, can I know which XML tag causing it?
so right now when I validate the XML file using an XML schema, I am only able to know whether it fail or pass, and if I want to know why it fail, I need to look at the error message like
...
9
votes
3answers
3k views
Getting started with XSD validation with .NET
Here is my first attempt at validating XML with XSD.
The XML file to be validated:
<?xml version="1.0" encoding="utf-8" ?>
<config xmlns="Schemas" ...
8
votes
1answer
1k views
Using .NET to validate XML against a schema
I want to test (true or false) whether an arbitrary XML file matches a given schema.
For what it's worth, the schema is the Word 2003 WordML schema, which Microsoft defines using a list of about 7 ...
8
votes
4answers
515 views
Validating XML with XSDs … but still allow extensibility
Maybe it's me, but it appears that if you have an XSD
<?xml version="1.0" encoding="utf-8"?>
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" ...
6
votes
1answer
37 views
Schema validation not trimming strings before validating
I have a problem with validating my XML file, after it has been automatically formatted. The validation doesn't trim the string before validating it. Is this a bug in the implementation of the XML ...
5
votes
2answers
310 views
How to validate an XML document?
My C#/.NET application reads XML files that are manually edited by the users. The allowed elements and tags are described in the application's documentation. I'm using LINQ to extract data from the ...
4
votes
1answer
302 views
how to validate xml against dtd
I have a XML document:
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE ONIXMessage SYSTEM "http://www.editeur.org/onix/2.1/reference/onix-international.dtd">
<ONIXMessage>
...
4
votes
1answer
325 views
Solve: XML Schema validation ignored when fragment-level conformance is enabled?
From my sojourn with XML and Schema validation, it seems that when fragment-level conformance is enabled for an XMLReader instance, the XML source stops being validated against any included Schemas.
...
3
votes
1answer
39 views
Perform checks against XML files, such as Oracle OSB files and Soap-UI test files
Looking for a way we can do checks on XML files, beyond just schema validation. Have found a few references to Schematron which looks interesting, but struggling to see how we can piece this all ...
3
votes
2answers
229 views
validating xml document in oracle's java source
Trying to do subject.
I'm trying to use xsd from file(schemasource = 1) and from clob (schemasource = 0).
I have two xsd schemas common_types.xsd and migom.xsd. second includes first.
The problem is ...
3
votes
2answers
801 views
XML XSD Schema - Enforce Unique Attribute Values in Schema
Lets say I have a schema that defines the following XML:
<Values>
<Add Key="Key1">Value 1</Add>
<Add Key="Key2">Value 2</Add>
<Add Key="Key3">Value ...
3
votes
1answer
234 views
Override XHTML validation for Rich Text Fields in Sitecore
I'm trying to embed some renderings as detailed in this article. However when I try to add a rendering into a Rich Text field I get XHTML validation errors. I can't disable XHTML validation for the ...
3
votes
5answers
662 views
The most performant way to validate XML against XSD
I get a string variable with XML in it and have a XSD file. I have to validate the XML in the string against XSD file and know there is more than one way (XmlDocument, XmlReader, ... ?).
After the ...
3
votes
1answer
97 views
How to correct a xml file based on a xml schema?
There are a lot of files that have changed unintentionally and now they don't match their related schema.
What I want to do is to find the errors and to correct them automatically (if possible).
I ...
3
votes
1answer
87 views
Reference an XSD file from different XMLs sitting in different project modules?
I have an XSD file that is referenced in three different XML files in different project modules using:
<item-groups xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ...
3
votes
1answer
373 views
Validating XML in Perl with libxml and an XSD file
I am trying to have my perl script get an Xxml file from online and validate it according to an XSD file.
The code to do this is as follows:
my $url = shift @ARGV;
my $response = $ua->get($url) ...
3
votes
2answers
403 views
XML validation with XSD: how to avoid caring about the sequence of the elements?
I have following XSD code:
<xsd:complexType name="questions">
<xsd:sequence>
<xsd:element name="location" type="location"/>
<xsd:element ...
3
votes
3answers
239 views
.NET IsValidXml Extension Method Performance
I have a legacy application that I inherited that passes a lot of XML around as Strings.
I often need the ability to check if a String will be valid XML. What is the fastest and least expensive way ...
3
votes
2answers
692 views
Fluent NHibernate OptimisticLock.None() causes “The string 'none' is not a valid Boolean value.”
I'm using the following mapping:
public class LoadMap : IAutoMappingOverride<Load> {
public void Override(AutoMapping<Load> mapping) {
mapping.HasMany(x => ...
3
votes
2answers
1k views
Grab, cache and parse remote XML feed, validation checks in PHP
Currently, I'm grabbing a remote site's XML feed and saving a local copy on my server to be parsed in PHP.
Problem is how do I go about adding some checks in PHP to see if the feed.xml file is valid ...
3
votes
1answer
4k views
Server-Side XML Validation with CXF Webservice
I'm working on an Apache CXF webservice (using JAX-WS, over SOAP). The service itself is pretty simple: receive a request, insert the request into a database, and return whether the insert was ...
3
votes
1answer
2k views
What could be wrong with this xsd?
I have an xsd. When I try to validate it in BizTalk it gives these errors:
error BEC2009: Node "<Schema>" - Schema reference "http://www.w3.org/2001/xml.xsd" is not a valid reference or does ...
3
votes
1answer
667 views
Validating with DTD - connection forcibly closed
I'm validating a document with the DTD in the document which is not on my machine, it is stored on the internet.
I am currently getting the following exception
System.Xml.XmlException: An error has ...
2
votes
0answers
52 views
Validating a xml during run-time in C# [closed]
Possible Duplicate:
Xml validation using XSD schema
Validating an XML against referenced XSD in C#
I have to validate a xml against a schema during runtime. The xml is retrieved as a ...
2
votes
2answers
136 views
Creating XML Schema from URL works but from Local File fails?
I need to validate XML Schema Instance (XSD) documents which are programmatically generated so I'm using the following Java snippet, which works fine:
SchemaFactory factory = ...
2
votes
2answers
76 views
How to allow for different XSD versions to be validated properly?
I am attempting to update some xml parsers, and have hit a small snag. We have an xsd that we need to keep compatible with older versions of the xml, and we had to make some changes to it. We made ...
2
votes
1answer
184 views
why can't I validate this xml against this xsd?
I can't seem to validate http://pastebin.com/jbFzRuUD against http://pastebin.com/cgvTdVWA
Here are the errors I get :
/schema-check xml.xml xsd.xsd
Error at file "/stuff/xml.xml", line 3, ...
2
votes
1answer
251 views
.NET: Preventing Web Access When Validating/Reading XML Schemas?
I'm trying to prevent .NET Framework accessing the Web when validating an XML document using XML schemas, because I don't want it to rely on having the Web access all the time. For this purpose I ...
2
votes
0answers
250 views
XSD Validation in Java/or Groovy
I am receiving an error java.lang.StackOverflowError when trying to validate against a couple of schemas. Other Schema Validation tools such as XML Spy and MS VS XSD.exe validate the schemas.
Is ...
2
votes
2answers
226 views
XML validation against XSD failing when node has multiple children
I need to generate a XSD for a XML file we are gonna use between systems so we can validate if the data we get is valid.
The XML looks like this (but with more fields):
<Request>
...
2
votes
0answers
218 views
How can I prevent Xerces from accessing the Internet for a System ID URI?
I'm validating an XML file using Xerces and haven all the schema files locally in my classpath (using an XML catalog).
Validator validator = schema.newValidator();
...
2
votes
2answers
168 views
Having XML validation issues depending on the XML Parser used…how do I represent the constraint to be universally accepted
I have a strange situation that has me perplexed a bit....
I have an XML data file I am trying to validate against a schema that seems to give different results depending on the parsers used. Not ...
2
votes
1answer
95 views
how to find in xsd, whether the particular tag is available in xml or not?
My xml file is,
<?xml version="1.0"?>
<type xmlns:xs="http://www.w3.org/2001/XMLSchema-instance"
...
2
votes
1answer
39 views
How do I match an element but avoid failing validation if attributes are present?
I have the xml:
<video contenttype="asf" fileextension=".wmv" hascontent="no" lang="en-GB" length="1800" pid="3678738364972" sid="">
<title>A vid with Pete</title>
...
2
votes
2answers
89 views
Do i have to use namespace to match xml documents?
Having a bit of trouble trying to get an xsd to match two documents:
XML Document 1:
<?xml version="1.0" encoding="UTF-8"?>
<video contenttype="asf" fileextension=".wmv" hascontent="no" ...
2
votes
2answers
71 views
What are the uri's actually used for after the namespace?
Do the URI's in lines ( 5,6,7 ) actually have to point to anything?
When I point them at duff urls it still seems to work to validate my xml, so what is the point?
<?xml version="1.0" ...
2
votes
2answers
95 views
How do I specify a list of required xml child elements that DONT need to be in sequence?
The following xml validates against the supplied xsd document. However when i start removing elements like from the xml it STILL validates!?
How do I write an xsd that forces the inclusion of ...
2
votes
1answer
104 views
Translating SAX exceptions
I have some Java code that validates XML against an XSD. I am using a modified version of the Error Handler found here: http://www.ibm.com/developerworks/xml/library/x-javaxmlvalidapi.html to catch ...
2
votes
1answer
294 views
Suppress XML DTD error in Eclipse
The XML DTD for a Joomla component is not correct, it does not contain the method="install/upgrade" attribute. In eclipse it is annoying me because there is a permanent error showing for my project.
...
2
votes
1answer
433 views
XML validation by XSLT or Schematron in Eclipse XML Editor?
How can we validate xml document by either schematron or xslt in Eclipse xml editor? The idea is to extend xml document live validation in eclipse xml editor with some rules based validation method.
2
votes
3answers
328 views
How do I validate xml using an xml schema?
Is it possible to validate the following xml with the following schema?
I'd like to validate the xml without specifying the schema in the xml file.
I'm not sure if this is possible or not, but would ...
2
votes
1answer
189 views
PL/SQL - XML Validation errors
I am validating an XML document against a schema. So far, all is going well, but there are some significant differences between the generated document and the schema (hence the validation). I've ...
2
votes
6answers
2k views
Validating xml nodes, not the entire document
I'm working with some xml 'snippets' that form elements down the xml. I have the schema but I cannot validate these files because they are not complete xml documents. These snippets are wrapped with ...
1
vote
2answers
21 views
XML Schema- how to match any integer?
I need to write a XML file which should conform to a schema. The schema enforces datatype of the element (happens to be process id on Linux) to be an integer.
This fragment of the code passed the ...
1
vote
0answers
77 views
Validating XHTML5 in PHP?
Background I have made the decision to serve my website as application/xhtml+xml to anyone who will accept it. I understand that there are consequences, which consequences I'm willing to accept.
...
1
vote
2answers
73 views
How can I get more information on an invalid DOM element through the Validator?
I am validating an in-memory DOM object using the javax.xml.validation.Validator class against an XSD schema. I am getting a SAXParseException being thrown during the validation whenever there is some ...
1
vote
0answers
31 views
Validate XML against a schema having any element
I have a schema say called BPMN20.xsd having an element called extensionElements.see sample below:
<xsd:element name="extensionElements" type="tExtensionElements" />
<xsd:complexType ...
1
vote
1answer
31 views
Include minixsv in google app engine
I want to make use of minixsv to validate an xml against an xsd. I read that google app engine supports this since it's 100% python. My question is, how do I add the minixsv to the GAE? if i do a:
...
1
vote
1answer
54 views
XML targetNamespace and unqualified declaration of elements
I'm somewhat confused as to how the targetNamespace attribute in an XML schema affects the naming of elements. I'm getting an error validating the following:
<xs:schema ...
1
vote
1answer
96 views
Creating a WCF webservice with a single standard response object
I've been asked to implement a webservice using WCF that will return a single standard response object that indicates whether the webservice call succeeds or fails and an error message if one occurs.
...