xsd

How to generate a Java class which implements Serializable interface from xsd using JAXB?

I would like to introduce caching into an existing Spring project which uses JAXB to expose WebServices. Caching will be done on the level of end points. In order to do that classes generated from XSD using JAXB need to implement Serializable interface and override Object's toString() method How to instruct the xjc tool using XSD to gen...

How to generate @XmlRootElement Classes for Base Types in XSD?

I am having some issues with generating Java Classes with appropriate JAXB annotations from an XSD using XJC. I have a relatively simple XSD file defining my XML schema. The complex types within the XSD take advantage of inheritance using the tags. The problem I having is that I need all complex types to generate Java Classes with the ...

Unit testing using NDBUnit framework

Am writing unit tests for an app that has matured a lot with time..We are using NDBUnit as the test cases become independent of each other..while we started the development of this app the DB schema was pretty manageable and hence dragging and dropping the tables on VS designer to create an XSD was never an issue. Well, with my current D...

Create XSD from database programatically in C#

My DB schema has matured a lot. The XSD had increased in size and hence using Visual Studio 2008 designer is getting difficult. Is there a way i can automate the XSD generation? ...

An on-line validator for xsd.

Could you suggest any on-line XSD validator that can validate a given element specified in a XSD file? For instance here is a XSD for an oai-identifier http://www.openarchives.org/OAI/2.0/oai-identifier.xsd If I create a sample sampleIdentifierType specified in the above file I would like to validate it against the XSD. What an on-line...

Skip the .xsd when searching

We use the built in table adapter wizard in VS2005 to build a portion of our app, resulting in an enormous .xsd file being generated. It's never interesting to have this .xsd included when searching through code, so I would like to be able to skip it when using Quick Find. Is this possible? ...

Where should I resctric the ocurrences of a type in an XML Schema, element or sequence

Is there any difference between limiting the occurrences of an element in the element tag or the sequence tag, what would be the best place to do it? Or it's just a matter of style? Example: <xs:element name="Provider"> <xs:complexType> <xs:sequence minOcurrs="1" maxOccurs="unbounded"> <xs:element ref="Distribui...

Limiting or restricting the value used for a xsi:type attribute

Hi, i have the following piece of xml: <MyField> <FieldName>Blah</FieldName> <ValueFormatting xsi:type="DateFormatter"> <Format>dd/MM/yy</Format> </ValueFormatting> </MyField> in my xsd, how can i limit or restrict the values that are supplied for the xsi:type attribute on the ValueFormatting element, as i have a l...

Problem validating in SSIS XML Task

I have an XML file that I'm trying to validate against an XSD file in an SSIS XML Task. The XSD does do a handful of imports and includes to other files and utilizes multiple namespaces. I have opened these all in VS2005 and verified that no errors occur when validating the file there. However, when I execute my SSIS package, it does ...

a xsd general tree structure, to be compiled to object model with xsd.exe

hi, say i want my xml to include any number of CONTAINER tags, which every one of those to include yet again any number of container tags, and so on. how would the xsd look like? p.s. i want this xsd to be compiled to classes. thank you very much. ...

What is the best way to validate XML w.r.t XSD using Free XML Validator ?

Hi, I need to validate XML against XSD and so what are free XML Validator available out there that could be useful for my task. Thanks. ...

Splitting huge XSDs?

Hi All, I have this big huge XSD which contains many complex elements. I want to split this huge XSD into smaller XSDs, containing the complex elements as standalone XSDs. Are there any tools for this? ...

XSD and ASMX Services

I have received few WSDLs and XSD defining a service that I need to consume for one of my project. Now here is a similar structure: *XSD_EMPDetails.xsd* - Define few of the EmployerDetails *XSD_EMP.xsd* - has imported EmployerDetails xsd and some more attributes. (xsd import) EMP.wsdl - imports XSD_EMP.xsd (xsd import) EMPServcie.w...

Schema validation error "Duplicate named <element> : name = 'X'"

I'm trying to use the IXMLDOMDocument2 interface (C++) to validate an Xml document against some schema and I'm getting the following error: Duplicate named <element> : name = '{http://www.site.com/MySchema}envelope'. I'm struggling to understand what this means - is there a problem with my schema, or is this a problem with the Xml? I'...

How to avoid "The element 'x' in namespace 'x.xsd' has invalid child element 'Items' in namespace 'x.xsd'" ?

I have xml file whose structure is defined with following xsd: <?xml version="1.0" encoding="utf-8"?> <xs:schema targetNamespace="http://schemas.TEST.com/TEST/TEST.xsd" elementFormDefault="qualified" xmlns="http://schemas.TEST.com/TEST/TEST.xsd" xmlns:mstns="http://schemas.TEST.com/TEST/TEST.xsd" xmlns:xs="http://www.w3.org/2001/XMLSche...

Crystal Reports - Dynamically change XSD filepath

I have a crystal report that is based on an XSD schema file. Within the report definition, I can modify the datasource location, specifically, the file path. This is where I can set the file path to where the XSD schema file resides on my machine. At this point, everything works correctly. Here is the problem: If the file path does ...

Validate Xml in Flex3 Air

Hi, I am opening xml in air application . i need to validate opening xml(Xml need to have specific node), for this some of them telling there is XSD validation on vb and .net , but i need to know, likewise any validation tool is available in Air ?. Thanks in Advance ...

Include Elements in XSD Complex Type Without New Element

Hi I have this complex type: <xsd:complexType name="Identifier"> <xsd:sequence> <xsd:element name="Id" type="xsd:string"/> <xsd:element name="Version" type="xsd:string"/> </xsd:sequence> </xsd:complexType> Now I want to include this in another complex type and I've been doing that like this: <xsd:complexType> <...

bnf/ebnf for xml schema

I'm looking for a BNF/EBNF of XML Schema. I just found the one for XML (http://www.w3.org/TR/REC-xml or extracted at http://www.jelks.nu/XML/xmlebnf.html). Well it's a starting point, but I'm curious that I couldn't find a more specific one for XML Schema. ...

XSD Make minOccurs depend on containing type

Hi I have a complex type defined which doesn't currently contain any minOccurs restrictions. When I use this comlpex type as an element type I sometimes want the elements to have minOccurs 0, other times 1. E.g. <xsd:complexType name="Identifier"> <xsd:sequence> <xsd:element name="Id" type="xsd:string"/> <xsd:e...