xml-schema

How to Parse XML file in c# (youtube api result)?

I'm trying to parse XML returned from the Youtue API. The APIcalls work correctly and creates an XmlDocument. I can get an XmlNodeList of the "entry" tags, but I'm not sure how to get the elements inside such as the , , etc... XmlDocument xmlDoc = youtubeService.GetSearchResults(search.Term, "published", 1, 50); XmlNodeList listNodes ...

XML complexType with element that ends up as "XmlElement"

In my XSD, I have something similar to this: <?xml version="1.0" encoding="utf-8" ?> <schema xmlns:jump="testThingy" elementFormDefault="qualified" targetNamespace="testThingy" xmlns="http://www.w3.org/2001/XMLSchema"&gt; <element name="command" type="jump:commandType" /> <complexType name="loginType"> <sequence> <element ...

How to realize derived response (XSD)?

Hey, im searching for the best solution of my xml schema (xsd) I have an response: <xs:element name="exampleCatalogResponse"> <xs:complexType> <xs:sequence> <xs:element name="meta" type="tns:metaType" /> <xs:element name="data" type="tns:defaultDataType" /> </xs:sequence> </xs:complexTyp...

What is the best interface for developers to create XML files with XML Schema intellisense?

I've created in my application the ability for developers to create WPF forms by writing an XML file. I would like to now write a XML Schema file (.xsd) to validate this XML file so that developers can validate their Form XML before it is put into the system, and so they can get intellisense based on the XML Schema while they develop it...

XML Schema Migration

I am working on a project where we need to save data in an XML format. The problem is, over time we expect the format / schema for our data to change. What we want to be able to do is to produce scripts to migrate our data across different schema versions. We distribute our product to thousands of customers so we need to be able to ru...

Seeking a survey of community-accepted specific applications of XML

Wikipedia list -- 'business and industry' List by Doug Barry, a consultant These are about all I can find for lists of generally-accepted applications for XML. This mystifies me. I feel sure there are lots more in use or under development, and I'd think everyone would be eager to see them promoted and cross-pollinated. What got me g...

Adding schemas from WSDL to XmlSchemaSet

Guys, I have a WSDL laying at http://blabalba/bla/myWsdl.wsdl, the WSDL contains one schema that import two schema from schemaLocation="Schema/1.xsd" and schemaLocation="Schema1/2.xsd" (physically those two lays in blabalba/bla/Schema and blabalba/bla/Schema1). Using some web utilities I have able to upload the WSDL metadata content int...

Optional or boolean elements to specify characteristics in XML schema?

I'm trying to create an XML schema to describe some aspects of hospitals. A hospital may have 24 hour coverage on: emergency services, operating room, pharmacist, etc. The entire list is relatively short - around 10. The coverage may be on more than one of these services. My question is how best to represent this. I'm thinking along the...

What's the best way of allowing a client to review an XML Schema?

We are working on a schema for a client, and we want them to be able to review it so that tyey can understand it. They are not "untechnical", but a schema file or large diagram seems very unfriendly for the purposes of someone learning what it contains. Further down the line other developers are going to have to learn to use the schema, ...

Generating a JAXB class that implements an interface

I'm currently using JAXB to generate java classes in order to unmarshall XML. Now I would like to create a new schema very similar to the first and have the classes that are generated implement the same interface. Say for example, I have two schema files which define XML with similar tags: adult.xsd <?xml version="1.0" encoding="UTF-8...

XML Schema for a bit complicated record

I am having a problem building a schema for this XML: <record> <field index="1">data</field> <field index="2">data</field> <field index="3">data</field> <field index="4">data</field> <field index="5">data</field> <field index="6">data</field> <group index="7"> <member index="1">data</member> <...

Schema with xsd:any - XmlReader validation error

I have problem with types in my schema when trying to use xsd:any element During validation i've got validation exception: The 'MerchantAccount' element is not declared. The idea is to have ability to specify any properties and values within ExtendedProperties element. Please advice what am i doing wrong. Part of the schema ... <xsd:...

Spring configuration file cannot parse elements defined in my own schema

I have a very simple xsd which defines an element "cache" <?xml version="1.0" encoding="UTF-8" standalone="no"?> <xsd:schema xmlns="http://mysite/schema/cache" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="http://mysite/schema/cache"&gt; <xsd:complexType name="objectType" abstract="false"> <xsd:attribute n...

Framework to Verify XSD with XML in Java

Hi all. I have an XSD and I want to verify incoming XML files from a webservice against that XSD for schema validation? Any suggestions or pointers for existing Frameworks in Java to do that? Help is appreciated in advance. Cheers ...

XML Schema: Different Element Names (sequence)

I think the solution to my problem is very easy, but i couldn't fint it So, here is: I have an XML which have a list of elements with different names, but in sequence. An example: <DOC> <DOC_OBL_1> <TIP_DOC_OBL>1</TIP_DOC_OBL> </DOC_OBL_1> <DOC_OBL_2> <TIP_DOC_OBL>2</TIP_DOC_OBL> </DOC_OBL_2> <DOC_OBL_3> <TIP_DOC_OBL>3</...

Convert XSD without single root Node to XML

I'm looking for an easy way to generate a sample XML file from an XSD that do not contain a single root node. ...

xsd same element, different types?

Hello! I have a situation where an element in the XML-file can be of two different types in the XSD. What I want to do is first to validate the entered value to the more strict type (if it's a person that fills out the form) and if that doesn't pull through, validate it to the lesser strict type (if it's an organization that fills out ...

xsd:boolean element type accept "true" but not "True". How can I make it accept it?

I am using xmllint --schema option to validate my XML that looks like this <XML> <Active>True</Active> </XML> In my schema file, I have following line that describes Active element. <xsd:element name="Active" type="xsd:boolean" /> When I run xmllint, I get error messages that says /tmp/schema_validation.xml:73: element Activ...

XmlSchema.read throws exception when an element is declared nillable

I have a simple schema that I am trying to read using XmlSchema.Read() method. I keep getting The 'nillable' attribute is not supported in this context Here is a simple code in C# XmlSchema schema = null; using (StreamReader reader = new StreamReader(<Path to Schema file name>) { schema = XmlSchema.Read(reader.BaseStream, null);...

XML Schema validation

Why won't this xml schema validate ? Visual studio says that the simpleContent tag is an invalid tag. If I then remove the attribute it says that the base type for my restriction is undefined in http://www.w3.org/2001/XMLSchema <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" > <xs:complexType name="Person"> <xs:at...