xml-schema

Programatically determining which node in an XML document caused validation against its XML Schema to fail

My input is a well-formed XML document and a corresponding XML Schema document. What I would like to do is determine the location within the XML document that causes it to fail validation against the XML Schema document. I could not figure out how to do this using the standard validation approach in Java: SchemaFactory schemaFactory =...

How to compare attributes with each other

I have a Range element like <Range min="-5.0" max="5.0" /> which is described in an XML schema as the type RangeType <complexType name="RangeType"> <attribute name="min" use="required" type="double" /> <attribute name="max" use="required" type="double" /> </complexType> Is it possible to use XML-Schema to require the max at...

Are there any tools that estimate XML schema based on documents only?

Or to display some statistics at least. I need some statistics like this: * All documents have root node with two children and * 50% of the documents have product/picture node * Documents have between 1 and 10 product/a/comment nodes ...

map xml element to xsd complexType based on attribute

Assume there exists an XML instance document that looks like this: <root> <object type="foo"> <!-- ... --> </object> <object type="bar"> <!-- ... --> </object> </root> My goal is to have a small (static) schema that verifies proper <element type="xxx" /> syntax for objects, and another schema (more pro...

can i write a schema that all XML are valid to it ?

Hi, i need to write a schema that all xml instances are valid to it. i tried: <xs:element name="Arguments"> <xs:complexType> <xs:sequence> <xs:any namespace="##any" minOccurs="0" maxOccurs="unbounded" processContents="lax" /> </xs:sequence> </xs:complexType> but it enforces a root element named Argum...

Problem with develop of XML Schema based on an existent XML

Hello! I have a problem with the validation of this piece of XML: <?xml version="1.0" encoding="UTF-8"?> <i-ching xmlns="http://www.oracolo.it/i-ching"&gt; <predizione> <esagramma nome="Pace"> <trigramma> <yang/><yang/><yang/> </trigramma> <trigramma> <yin/>...

Can we add new attribute or change type of existing attribute to a "Referenced Element"?

In my XML schema I have an element being referenced tens of times by other elements but with different enumerated values for one of its attribute. For now, instead of creating this element in global space and referencing it later, I am creating a new instance wherever it is needed. This approach has increased my schema size enormously be...

How to specify read only text or label in an XML data schema

I am referring to XML data schema as detailed here: http://www.w3schools.com/schema/default.asp. When I retrieve data from the database and submit it to the client, there are text fields which I wish to retain as uneditable display/read only fields. For example, hypothetically in the following sequence, <xsd:element .... <xsd:element ...

Cannot validate xml doc againest a xsd schema (Cannot find the declaration of element 'replyMessage')

Hi Guyz, I am using the following code to validate an an XML file against a XSD schema package com.forat.xsd; import java.io.IOException; import java.net.URL; import javax.xml.XMLConstants; import javax.xml.transform.Source; import javax.xml.transform.stream.StreamSource; import javax.xml.validation.Schema; import javax.xml.validatio...

Error when generating a class from xsd schema file

Hi, I'm trying to generate a class from an xsd schema but I obtain the following error message: Warning: cannot generate classes because no top-level elements with complex type were found. My xsd file looks like that: <?xml version="1.0" encoding="utf-8"?> <xs:schema id="MonitoringConfiguration" targetNamespace="urn:MonitoringCo...

XML parsing design using xmlpp and C++

I would like to use an xml format similar to the following: <CONFIG> <PROFILE NAME="foobar"> <PARAM ID="0" NAME="Foo" CLASS="BaseParam"/> <PARAM ID="2" NAME="Bar" CLASS="StrIntParam"> <VALUE TYPE="STRING">some String</VALUE> <VALUE TYPE="INT">1234</VALUE> </PARAM> </PROFILE> </CONFIG> CONFIG contains a list...

xsd:any question

Hi ppl, I need a clarification on one of scenarios of <xsd:any>. What if namespace attribute's value is ##any and the attribute processContents doesn't exist (the default value is strict)? What will be the case here, Should the processor validate the elements against any schemes!? Ex for clarification: Here's XSD section: ...... <xs...

RESTful Web Services: Different XML Representation for the same resource

Hi, I'm developing a REST Web Service using a XML format response and I have some problems (Really, one problem). One of my resources has some final fields so once they're created, they can't be modified. According to that, I need different representations for this resource depending on what I'm doing: Creating or modifiying it. W...

Can I create a schema that validates both soap 1.1 and 1.2

I need a schema that validates both soap 1.1 and 1.2 how can I do it ? ...

How to compare two xml schemas

We generate xml schema for our web services. Amongst other details these schema contain the defintion of the complex types consumers of our services pass in. Those complex types can change if our third party suppliers decide they want to add more details but as can be imagined that's something that shouldn't happen on the whim of a d...

XML Schema - how to define that element contains a string or child elements

Hi everybody, I need to define a XML schema. The result should looks like this: <option value="priority">4</option> <option value="values"> <value name="x86-32" lang="en-GB" group="root">x86 32-Bit</value> <value name="x86-64" lang="en-GB" group="root">x86 64-Bit</value> <value name="ARM" lang="en-GB" group="root">ARM</valu...

Building xerces using -icu

Hi, is any body aware of building xerces using icu library , when i am building it giving all icu related option on MacOS its never going for icu option ( it finally says ICU option can not be enabled in config.log ). ./configure --prefix=/tmp/xer --enable-msgloader-icu --disable-shared --disable-network --enable-static --disable-t...

XML Schema to Dataset

I have one master schema which has all the elements required. I have different child schema which ref the master schema for different element. I need to convert the same into typed dataset in VS 2005. On including the Master the the Child schema I can view the ref. elements in the child schema correctly but when i try to convert the same...

HyperJaxb3 and xsd:anyType

Hi, I have a schema fragment that looks like <xs:element name="dataValue"> <xs:complexType> <xs:sequence> <xs:element name="value" type="xs:anyType"\> </xs:sequence> </xs:complexType> </xs:element> The class produced by hyperjaxb3 contains the following fragment: @Xm...

.Net XmlSchemaSet works on Client but not Server OS?

I have the following code that loads the xhtml_transitional.xsd file (source at http://www.w3.org/2002/08/xhtml/xhtml1-transitional.xsd) private static void SetupSchemas() { if (_xmlSchemaSet != null) return; _xmlSchemaSet = new XmlSchemaSet(); _xmlSchemaSet.ValidationEventHandler += ValidationHandler; ...