xml-schema

Add new xml schema substituion from separate file

Hi, I'm searching a way to add a new complexType to a substitution group. This type should be contained in a separate file and i don't want to add something to the sourcefile (like a include or import). The intent is to enable someone to add his own types by simply adding a separate xsd-file without changing the original. What I have fo...

How do you define an XML schema ID attribute that has a pattern??

This XML documentation seems to say that the ID derived type supports a pattern, but when I try to define one with this code: <complexType name="CourseType"> <attribute name="courseNumber" type="ID"> <pattern value="[A-Z]{2}(\d{3}).(\d{3})" /> </attribute> <attribute name="numOfCredits"...

Surface an XML schema as an ASP.Net user interface in SharePoint 2010

I have a requirement (at the least possible cost, be that custom dev or 3rd party product) to take an XML schema (which is subject to regular change) and surface a UI to this through SharePoint 2010. The UI cannot require manual changes when the XML schema changes. So in some way the UI needs to be dynamically generated from the schema...

Android Converting objects to XML and vice versa

Hello all, I created a xsd and I created Java objects using Castor. Then I imported this in my Android project and tried to build an XML from the object, using the marshal method. Marshaller.marshal(v, writer); I received some wired exception trouble processing "javax/xml/parsers/DocumentBuilder.class":... So my question is Can I use ...

XSD Enumeration on a range of values

Hello everyone! I've got to build an XSD file for XML structure verifying purposes, as usual. After generating the XSD (with XMLSpy), I've found one portion of the file that is giving me trouble. I've got an enumeration like this: <xs:enumeration value="1"/> <xs:enumeration value="1011"/> <xs:enumeration value="1032"/> a...

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 insufficient because some XmlSchemaTypes can be defined in the depth of the schema(i.e not as a GlobalType). Is there a way in .NET I can get all t...

Changing inherited class name in XML C#

I am serializing a set of classes that looks like: public class Wrapper { IInterface obj; } public interface IInterface { } [XmlType("ClassA")] public ImplA : IInterface { } Currently the XML generated looks like <Wrapper> <IInterface xsi:type="ClassA"> ... </IInterface> </Wrapper> Is there anyway to include the custo...

Is there a shorter way to define a anything element?

Hi, I want to define a tag in my schema for anything. It should be able to contain any combination of tags and text. So far I've found <xs:complexType name="customType" mixed="true"> <xs:sequence> <xs:any processContents="lax" minOccurs="0" maxOccurs="unbounded"/> </xs:sequence> <xs:anyAttribute processContents="lax"/> </xs:c...

XML schema and problem when deriving from mixed type...

Hi, I have following XML schema: <?xml version="1.0" encoding="UTF-8" standalone="no"?> <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"&gt; <xs:element name="content" type="contentType"/> <xs:complexType name="contentType"> <xs:complexContent> <xs:extension base="versionedElementType"> ...

How to evaluate/translate Logic sentences defined in XML Files

I am going to work with some XML files containing logic sentences like these: <condition> <or> <not> <eq> <variable> <name>X</name> <variabletype>Test</variabletype> <datatype>String</datatype> </variable> <c...

Adobe Flex4 mxml schema

Is there a MXML schema xsd given by the latest Flex4 distribution? I found from the old release notes that : Flex includes an XSD file that you can integrate with your third-party editing tools for schema validation and easier MXML coding. This file is installed in the following location: {install.dir}/extras/schema/mxml.xs...

how to avoid sequence using XSD

i want a particular sequence to be generated in a random manner <item> <i1>abc</i1> <i2>pqr</i2> </item> now how can i make an xsd where <i1> can come before <i2> ? ...

.net webservices using complex types with other platforms e.g. Java

I'm working on a .net system that will both expose and consume web-services with another system to pass data back and forth - the other system is java based. Our proposed XSD contains complex types and some concern has been expressed about using complex types and how we'd be better sticking to simple types. I'd have thought .net would ...

javax.xml.parsers.DocumentBuilder support for complex types

Hi, I'm trying to put together some validation code. I am trying to validate against a schema like: <?xml version="1.0" encoding="UTF-8"?> <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" xmlns:choice="http://example.com/SimpleChoice" targetNamespace="http://example.com/Simpl...

controlling the class names generated by JAXB for xsd:attributeGroup?

I am using JAXB to bind XML to Java for an application that I am writing. I have an element called measure which contains two amount elements called amount and maxAmount, with which I want to model a lower and an upper limiting value. amount and maxAmount are otherwise identical and I would like them to be implemented with the same class...

How can I get auto-complete to work for an attribute in my XML document?

In Eclipse, if I create a new Spring application context XML document when I press Ctrl+Space while inside the "class" attribute, Eclipse will let me browse through Classes that I can use, for example: ..and Eclipse will show java.lang.String, etc. I've created my own XSD and now I'm making an XML file that references it. My XSD defi...

finding schemaLocation in c# XmlSchema

Hi, i have the following schema loaded into an xmlSchema : ... <xs:import schemaLocation="\_1.xsd" namespace="http://tempuri.org/" /> ... i want to retrive the string "_1.xsd" how do i reach the schemaLocation value from XmlSchema API ? will schemaSet work better ? Thanks ...

How to define a Xpath-selector in xml schema for a recursive type.

Edit: added keys. Hi, I have a xml schema with the following types: <xs:complexType name="definition"> <xs:sequence/> <xs:attribute name="id"/> </xs:complexType> <xsd:key name="definitionId"> <xsd:selector xpath="definition"/> <xsd:field xpath="@id"/> </xsd:key> <xs:complexType name="elem"> <xs:sequence> <xs:element n...

xml schema order of elements

Hi all, I have an xsd schema and I want to be able to make it so that the order of the elements doesn't matter, this is what I have: <xs:element name="ADT_A08_231_GLO_DEF"> <xs:complexType> <xs:sequence> <xs:element minOccurs="1" maxOccurs="1" name="EVN_EventTypeSegment" type="xs:string" /> <xs:element minOccurs="1" maxOcc...

Can JAXB/MOXy map element value and element attribute to same POJO field?

Hi I've just started working on web services using JAXB to unmarshall the incoming SOAP documents to our domain classes. I've run into a technical challenge, which is dictated by the OIO XML format used within danish govermental institutions. The format states among other things, that it is not allowed to use the xml schema attribute n...