xsd

Validate an XSD using Java

I would like to automatically validate that an XSD Schema is correct. Is there a java API or something Í can call to do this automatically? ...

cleaner extension of elements using XSD

I defined xml schema the contains an element called 'field' and an extension to it called 'composite-field'. it is defined as following: <xs:complexType name="field"> <xs:sequence> <xs:element name="value" type="xs:string" /> </xs:sequence> </xs:complexType> <xs:complexType name="composite-Field"> ...

Validate DITA in php

What php library should I use if I want to get the allowable attributes in a tag, or the allowable tags in a specific part of a DITA XML document, according to it's DTD or XSD? I've tried it with the XML_DTD-0.5.2 pear lib, but it seems it parses the offical 1.1 and 1.2 DITA dtds with many errors... ...

How to Specify Mappings from Proprietary DB to XML?

I am writing a software package whose job is to export DB data from my company's main product into arbitrary XML formats (for interfacing with other applications.) Parsing of arbitrary XML datafiles into our database may be next. I am writing in C/C++, and the product's database is stored as Pervasive BTRV files in a proprietary format...

C# How to fill class created using XSD.EXE from database

Normally I write a class and add XML Serialization to it for my web services. [XmlRootAttribute(ElementName = "dsXmlSummary", IsNullable=true)] public class Class1 { //declare properties //make database calls to pull data and load properties } I am working on a project that requires me to use a strict XSD, I've followed instru...

Is it possible to define an XSD that doesn't care about additional elements?

I have an XSD that defines and element which has been decrecated for some time, I now wish to remove this element and remove it from the class definition (I'm using the .net XmlSerializer with an XmlReaderSettings set to fire validation events). I'd like some of our clients who can't / won't remove the deprecated element from their xml ...

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 validation I just have to store the XML, so I don't need it in an XDocument oder XmlDocument. What's the way to go if I want the fastest per...

Convert XSD to RDF Schema

Is there a tool for generate RDFs from an XSD? ...

How to best capture this XML Schema in C# classes

I have a large XML schema that has elements that look like this: <xs:element name="Tmats"> <xs:complexType> <xs:sequence> <xs:element name="ProgramName" type="xs:string" minOccurs="0"> <xs:annotation> <xs:documentation>PN</xs:documentation> </xs:annotation> ...

How to exclude root elements in an XSD?

I have several elements defined in my XSD file that I use as references later on in the document. I do want any of these "reference" elements to constitute a valid xml file. For example I have <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" attributeFormDefault="unqualified"> <xs:element name=...

How to validate textfield element in xsd:schema

hi Guys, I am using xsd:schema which will be used to generated desired xml, I have a title field in xsd:schema. I want to validate it from xsd:schema only that whenever user try to put values more than 10 characters, it will generate the error. Below is the part of my xsd:schema <xsd:sequence> <xsd:element name="Title" minOccurs=...

XML schema validation and pattern errors

I have a problem validating a perfectly valid XML with it's schema file in Ruby. It works OK on my development machine (OS X 10.6) but fails everytime on the production system (Debian 4.1). The part of the XML that gives errors is this: <ROUNDINGS>-0.02</ROUNDINGS> And the XSD pattern is this: <xsd:element name="ROUNDINGS"> <xsd:s...

Simple XML Schema to POJO converter

I am using Eclipse to build a Android application. Because I use intensely web service I want to be able to create from XML schema some pojos For instance: <xs:schema xmlns:tns="http://schemas.datacontract.org/2004/07/VO.Service.Entities" elementFormDefault="qualified" targetNamespace="http://schemas.datacontract.org/2004/07/VO.Service...

How to generate classes from XSD that implements serializable?

I need to generate many classes from my XML Schema (XSD) in a package (.jar). How can I configure these classes to be serializable? (I'm using Eclipse and JAX-B) ...

How to modify .xsd in visual studio 2003 to add/delete columns from a table

I have an existing visual studio 2003 application that uses .xsd (connect to oracle db). I need to modify one of the tables in the .xsd file but when I save the .xsd file, I get build errors. What is the correct way to modify the .xsd file so that the application doesn't throw compile errors? ...

paint a property pane from xml schema

We need to build a swing component to let users enter property values in a property sheet. These properties are defined in a XSD file. For example: <xs:complexType name="email"> <xs:sequence> <xs:element minOccurs="0" name="body" type="xs:string" /> <xs:element minOccurs="0" name="from" type="tns:person" /> <xs:element min...

xsd2code multiple xsd file create duplicate sub classes

I am using xsd2code to generate classes from the xsd schema provided by the star standard. I did try to use xsd.exe to generate the classes, but it did not do a good job. When I generate the class from 'ProcessCreditApplication.xsd' it generates a single file with all the needed classes. Everything works fine at this point. When I gen...

id() in XPATH with .NET

I'm trying to query XML through XPATH but is having problem getting id() to work. I would like to get all the authors for a book, specifying the book ID. Here's the XML. <?xml version="1.0" encoding="utf-8" ?> <bookstore xmlns="http://litemedia.se/BookStore.xsd"&gt; <book id="ISBN9789170375033"> <title>I väntan på talibanerna</ti...

Validate XML Schema in Delphi received by c# web service as a parameter

I have a C# Web Service that returns a XML as a result that will be consumed by a Delphi 7 application. Normally, I would return a .Net XmlDocument class if I had a .Net client, but, for Delphi, I'm returning a string. Below is the C# Web Service Code: public String ReturnXML() { XmlDocument xmlDoc = GenerateXmlMethod(); String ...

hyperjaxb3 xsd:string length in JPA entity

Hi guys, I use Hyperjaxb3 to generate JPA entities from XSD schema. I have a xsd:string type that I want to use for description text (text area in the UI): <xsd:complexType name="Description"> <xsd:simpleContent> <xsd:extension base="**xsd:string**"> <xsd:attribute name="abc" type="xsd:NCName" use="optional" /> ...