xml-schema

XML Schema reference

I have two XML Schemas. First (A.xsd) is located in a library jar file (mylib.jar) and the second one (B.xsd) is in my project. I want to import A.xsd into the B.xsd and validate incoming XML via Jaxb2Marshaller embedded validator. However I'm unable to make it work properly: it seems that inner XML validator of Jaxb2Marshaller does no...

xml schema creation

Hi All, I need to create schema for an XML file in which I have an element that requires "unbounded" value set for maxOccurs property and the same time I have to use tag for this element's parent, so that subelements can be placed in any order. Here is an example : <A> <B>TagB</B> <C>TagC1</C> <C>TagC2</C> </A> in t...

Global declarations within Xml Schema

a) Why must global element and attribute declarations always belong to a namespace and as such must always be qualified within instance documents? b) Are local element/attribute declarations ( with their form attributes set to unqualified) still part of a schema’s target namespace, even though they aren’t associated with any namespace i...

Xml Schema namespace

1) I realize namespaces are a means of differentiating between different schemas/vocabularies specified using XML Schema, but I don’t understand why it’s a good idea that a namespace ( for which the schema is developing a vocabulary ) is specified within the schema itself ( via targetNamespace attribute ). a) Wouldn’t it be better if w...

eclipse validator - Invalid content was found starting with element 'display-name' in web.xml

I am using Eclipse Helios Release. Eclipse xml validater don't like display-name element under in my web.xml here is part of my web.xml http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5"> PropTax PropTax PropTax org.slco.treasurer.propertytax.servlet.PropTax ....... If I remove display-name...

How to get location of includes in XmlSchema?

Hi everyone, XSD file has include tag that has location for the other reference XSD. When we load original XSD in C# into XmlSchema object how to get the location of the referenced XSD? Thanks ...

xml schema uniqueness amoung heterogenous elements

I have accountId and accountId2 as elements in schema. I want ensure that values for these two elements should not be same. How can configure Xpath to maintain uniqueness among accountId and accountId2 element values? ...

How to get XmlSchema object from XSD which is string in C#?

How to get XmlSchema object from large string that contains all Xsd content? Thanks. ...

validating a XML document against a schema

Hi, I need some code sample which shows how i can validate a xml file against a schema... Below is say my XML document.. "a.xml" January 21 1983 Say the schema against which i want to validate the above xml is as below named "XMLValidationSchema.xsd" Now ...

XML validation using Java Code

I need some code sample which shows how I can validate a xml file against a schema. Below is my XML document: <birthdate> <month>January</month> <day>21</day> <year>1983</year> </birthdate> The schema against which I want to validate the above XML is: <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"&gt; <xs:import...

Generate a data entry form dynamically from XSD including validation rules

Is there anything around that can read an XSD schema and dynamically create a (Windows C#) data entry form? It would also need to read the type definitions and use them to validate the data entered. The data would then be save as an XML file. I would prefer it was a dynamic form since the XSD could, and probably will change. I'd rather ...

Validating XML against XSD using Silverlight?

So I have been twiddling with a personal project to import my garmin gps data into a local database. The data lives in a GPX xml file, whose schema is defined by an xsd file. The idea is for the client to upload their GPX file, and the SL client would validate it before sending it to the server. But I ran into some issues here, first ...

get elements of xs:choice on XML Beans

I have a schema that looks like <xs:choice minOccurs="0" maxOccurs="unbounded"> <xs:element name="a" type="a" /> <xs:element name="b" type="b" /> </xs:choice> XML Beans generates the two methods getAArray() and getBArray(), which return A and B elements separately, losing their ordering. I tried to let types a and b extend th...

XML Schema Nillable use?

Hi All, I have a very simple XSD like below <?xml version="1.0" encoding="utf-8"?> <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified"> <xs:element name="SEARCH_INCIDENT" type="SEARCH_INCIDENT" /> <xs:complexType name="SEARCH_INCIDENT"> <xs:sequence> <xs:element name="INCIDENT_NUMBER" typ...

PHP DOMDocument validate against referenced XSI schema

Hello! I have a problem validating a given XML file in PHP. This works with a given $myFile xsi schema: function validate($file){ $xsi = $myFile; if(@!$this->dom->schemaValidate($xsi)){ $warning = error_get_last(); throw new Exception ('XML validation of file "'.$this->file.'" failed: '.$warning['message']); ...

Is there an XSD for XSD's, a Meta-XSD?

Does there exist an Xml schema that will validate other XML schemas? What I want to do is take such a meta-schema (if it exists) and run it through XSD.EXE so that I can use C# classes to read an arbitrary XML schema and analyze it. ...

How do I troubleshoot this exception when creating an XmlSerializer object?

I downloaded the XML Schema for XML Schemas at http://www.w3.org/2001/XMLSchema.xsd. I then used XSD.EXE to create a class from the downloaded file. I called the class schema.cs. I then executed this line of code: XmlSerializer serializer = new XmlSerializer(typeof(schema)); and got this error: The XML element 'annotation' from ...

XmlSchema object from an XML file with inlined Xsd

Hi, In .Net, I'm trying to get a XmlSchema object from Xml file with an embedded Xsd and can not find out how to do it? anybody know? For example if it just an Xml file I can Infer Schema using the XmlSchemaInference class or if its a Xsd I can use XmlSchema class, but can not find away with inlined Xsd. example file is at http://past...

How to import a Schema (XSD) which is in a jar file into another Schema(XSD)

I have some common types which are defined in an xsd file which is then later bundled as a jar file. I have this jar file in my classpath and I want to include this xsd into another xsd to use those types. How to refer the schema in a jar file? Also I want to create JAXB objects from the new schema is it possible. Also I want to use this...

Validation Layer with interdependency checks

Existing backend services will be opened for more clients (adding a Web Service Layer to the Web-Frontend client). Currently, XML Schema is used for validation of DTOs, but since the frontend is out of our control, we will have to move extended tests (eg. interdependency tests) from the frontend layer to a new "validation layer". Now ou...