0
votes
0answers
19 views

Extensible XML schema with immutable set of Java classes bound to it

I'm trying to develope extensible XML schema that could be extended without change of Java code bound to it by JAXB. Here is the schema: <schema xmlns="http://www.w3.org/2001/XMLSchema" ...
0
votes
1answer
15 views

What is the logic behind xs:date datatype in xsd schema?

I want to know how the xs:date datatype is defined in W3C xsd schema. Is there anyway to find it? (Not how to use xs:date in my xsd schema)
0
votes
0answers
11 views

Eclipse XML Editor Consistency with XSD File

I am preparing an XML file with Eclipse XML Editor plugin. It gets the syntax information from XSD file and guides me to prepare the XML file. On the build process, we are generating the XSD file on ...
0
votes
0answers
9 views

XSD documentation with Nokogiri

I'm currently writing a XML schema, and I'm using the <annotation> and <documentation> tag for the documentation of the fields. My problem is, that I can't find any good software that ...
0
votes
0answers
17 views

How to access imported xsds

Hi I have a complex schema, the schema is internally calling multiple schemas. I am facing following problems I can't customize the classes <bindings ...
0
votes
0answers
4 views

Want to create XML schema to Restrict Attribute tag based upon value in Xml

I have one xml in which i need to restrict one attribute tag based upon value of it. Like in following xml file if value of attribute "permanent" is true than only its coming in xml ...
0
votes
0answers
15 views

XSD - Specifying default element instances and attributes

More of a conceptual question... I understand that I may define valid elements, attributes, sequences etc. etc. using XSD. Now, supposing I'd like to create an XML document, conforming to a ...
0
votes
0answers
34 views

Generated C# classes with XML schema versioning

I'm working on an C#/.NET application where we're handling XML documents corresponding to an external XSD schema. We've used XSD.exe to generate C# proxy classes from the XSD for easy serialization ...
1
vote
1answer
25 views

SAX parsing through a jar file declares XML document invalid

The picture is self explanatory. When I validate the document using identical process in CMD, the document is declared valid. It is valid when checked manually. The jar file generates this ...
0
votes
1answer
9 views

How do I get the type of the value of a node in an XML document

I have an xml document that was generated using the WriteXml() method of a DataSet. I also used the XmlWriteMode.WriteSchema option. I've opened up the resulting file and found that the resulting ...
0
votes
1answer
20 views

Generating classes from XML in C++ (but NOT using CodeSynthesisXSD)

We require the ability to generate C++ classes from XML (akin to JAXB in Java) but for commercial reasons do not wish to use CodeSynthesisXSD. Are there any other libraries out there that will allow ...
1
vote
1answer
41 views

Understanding JAXB @XmlRootElement annotation

I am using the tutorial here for understanding JAXB. When the writer comes to create the root of the document, the writer begins as below: //This statement means that class "Bookstore.java" is ...
0
votes
1answer
16 views

Get number of defined element attributes in xml schema

I'm using Apache Xerces to parse xml and from some reasons I would need to find how many attributes an element has defined in xsd. element.getAttributes just gives me all present attributes. Any idea ...
0
votes
0answers
24 views

Dilemma with XSD, Generics and C# Classes

I have following simple XSD file: <xs:element name="Search" type="SearchObject"/> <xs:complexType name="SearchObject"> <xs:choice> <xs:element name="Simple" ...
1
vote
1answer
31 views

xml element validation against xsd - how to define unordered element?

Now I'm validating an XML like this: <?xml version="1.0" encoding="utf-8"?> <all> <allElem> <a>12345</a> <b>2</b> ...
1
vote
3answers
28 views

Use Build phase to validate XML (Maven)

I would like to validate my XML files against the XSD i have written during the project Build, and if the XML is not valid the build should not complete. Is the possible? if so can you please point ...
1
vote
1answer
20 views

ACORD standard to define a custom node?

I have been working with ACORD XML standard for a while now with some success. We now have a requirement to gather a piece of data which is custom to my company. (ACORD doesn’t have a place for it.) ...
0
votes
1answer
30 views

Unique attributes with xpath not working

I would like to validate a xml document with an xsd schema file. The xml document contains information about windows services, I would like to set the Name attribute from Service to a unique value. ...
0
votes
0answers
29 views

Namespace in XML request/response in REST

My XSD has some namespace defined like <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:jaxb="http://java.sun.com/xml/ns/jaxb" jaxb:version="2.0" ...
0
votes
2answers
41 views

How to parametrize type in XSD?

I have a type named AdapterInputDataType that defines a format of some kind of input data: <schema xmlns="http://www.w3.org/2001/XMLSchema" ...
1
vote
3answers
31 views

Validating XSD itself

Could anyone please tell me how to validate an XSD file itself (not XML against XSD)? I have checked many forums and sites (including SO) and most of them refers some or the other online validator. ...
1
vote
0answers
15 views

How to XSD-Validating single fields on setting them using moxy

In this fine post i learned how to validate xml using moxy. The problem is that the validation comes at last and probably there are many failures due to invalid parameters given to some setter ...
0
votes
1answer
22 views

What is the proper way in xsd to define a set of elements that may be child elements and may repeat?

I am trying to determine the proper way using an xsd schema to define an element that may contain any of a set of child elements including possible repeat child elements. For example, given the ...
0
votes
2answers
14 views

Can I validate “combinations” with XSD's?

In the following scenario: <apples> <isred>1</isred> <color>red</color> </apples> is there a way to create a restriction on the validation of the isred ...
0
votes
1answer
19 views

Validating XML layout for DockPanel

I got some errors while loading corrupted xml layouts for DockPanel, so I'm trying to code a function to assure that the xml layout is correct before loading it with LoadFromXml. Is there any XSD file ...
1
vote
2answers
48 views

What does targetNamespace do ? Am I getting it right?

Here is the <schema> tag of my XSD: <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns="http://www.cmu.edu/ns/blank" targetNamespace="http://www.cmu.edu/ns/blank" ...
0
votes
1answer
22 views

My XSD does not validate the XML despite proper namespace declarations

The XSD <schema> tag: <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns="http://www.cmu.edu/ns/blank" targetNamespace="http://www.cmu.edu/ns/blank" ...
0
votes
1answer
23 views

cvc-elt.1.a: Cannot find the declaration of element 'people'

I am trying to validate my XML document using an XSD. I have tried providing namespaces to everything, including the default. However, the error persists. if someone could please tell me what is going ...
0
votes
1answer
21 views

How do I add namespaces to an XSD?

The following is my XML and its associated XSD: XML <?xml version="1.0" encoding="UTF-8" ?> <!-- <!DOCTYPE people SYSTEM "validator.dtd"> --> <people ...
1
vote
2answers
27 views

is it possible to validate xml via xsd with no sequence and ignoring extra tags

how to validate xml using xsd without sequence and if any unknown or extra tag is present then that should be skipped(no validation error should be thrown). But for the tags which is present in xsd I ...
0
votes
0answers
15 views

Oracle defines the XSD for XMLTYPE fields as NULL when using DBMS_XMLQUERY.GETXML

When I connect to the sample schema OE and run the following statement: `select dbms_xmlquery.getxml( 'select warehouse_spec from warehouses where rownum = 1', 2) from dual;` The ...
0
votes
1answer
22 views

How to create the xsd schema for tree of nodes

I have the class: class Node{ Public string Name; Public Node LeftNode; Public Node RightNode; } With that class I am able to create a tree of nodes and I will like to represent that ...
0
votes
1answer
20 views

why can't I have an xs:element using ref as a global element in a XSD?

I am experimenting with ref attributes in <xsd:element> and don't get the following: while an <xsd:element> with a ref attribute can be defined in the non-global scope (i.e. not directly below ...
0
votes
1answer
30 views

cvc-elt.1.a: Cannot find the declaration of element 'xxx'

I have to handwriting an sample xml for my xsd, but I always get invalid message: cvc-elt.1.a: Cannot find the declaration of element 'RS_WMS_GET_PO_DATA_v2.0'. My XSD: <?xml version="1.0" ...
2
votes
1answer
35 views

xsd -xml regex validation not working for me using JAXB

I have written a simple XSD where I have written following XSD pattern <xsd:element name="xx"> <xsd:simpleType > <xsd:restriction base="xsd:string"> <xsd:pattern ...
2
votes
3answers
38 views

How to generate XSD from elements of XML

I have a XML input <field> <name>id</name> <dataType>string</dataType> <maxlength>42</maxlength> <required>false</required> ...
0
votes
2answers
69 views

Parsing nested vs flat XML element using Java in generic way

Hi I had written a generic code in Java that parses XML input file without knowing its structure and outputs value in comma separated value. So lets say I have following in my XML document: ...
2
votes
3answers
47 views

Are XSD always generated using third-party tools?

I am a beginner with XML. I can do DTD fairly well. While learning about XSD and how to generate it, I found that all the tutorials available on Google and those on YouTube create XSD using ...
0
votes
2answers
40 views

how to get / download multiple online xsd schema files to validate one xml

I have an xml file with about 300 lines and 10 namespaces. I have also the schemaLocation of the "beginning" xsd file of my xml document. It is somewhere online. That one schema file ...
1
vote
1answer
41 views

XML schema xs:choice inside xs:sequence

I'm trying to use a xs:choice element, but while validating the XSD file, I'm getting an error which I suppose it's related to the xs:choice element. I've searched for this problem for quite a bit, ...
1
vote
1answer
15 views

I am finding difficult to write a regular expression for a location element in xml schema

Location element needs to accept "city, state" data(for exampler: Topsail Beach, NC), but ending up with errors. could someone help me? Here is the code snippet. <xs:element name="Location" ...
0
votes
0answers
14 views

How to create XML instance containing ANY

I am having following XSD (A.xsd). can any1 guide me how should I create instance of A.xsd? I am just confused @ #any part? <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" ...
1
vote
1answer
27 views

XML Schema force two attributes to be different

In my XML I have defined categories <category id="3" parent-category-id="2"> <name>Child category</name> </category> As you can see I have a category element, which can ...
1
vote
2answers
22 views

is xsi:schemaLocation actually used?

I am using the xmllint tool to check some XML files against their XSD schemas. It would appear that the tool is invoked as xmllint --noout --schema foo.xsd bar.xml ... and does not include an ...
0
votes
1answer
39 views

STS/Eclipse Loading Wrong Spring Beans XSD

Spring Tool Suite (3.1.0)/Eclipse is loading the wrong version of a Spring Beans XSD, causing XML validation errors. I've got spring-beans 3.2.2.RELEASE on the classpath as a Maven dependency, and so ...
1
vote
1answer
29 views

Embedded schematron not working in an XML document with a namespace

I'm playing around with some schematron rules embedded in an XSD file. The example is one of the canonical ones, and it works when there are no name spaces involved, but when I introduce a namespace ...
0
votes
0answers
13 views

not able to parse an extended xml schema

I am trying to generate java classes out of ApiExceptionExtended.xsd. ApiExceptionExtended.xsd is an extension of ApiException.xsd. However I am running into this error. ...
0
votes
2answers
37 views

How to read serialized data into a set of entity classes

I've been assigned a task to import reference data from a database into a set of entity classes. Here's an example of one of the simpler entity classes: public class CountryList { public ...
2
votes
1answer
21 views

Validate empty string in attribute

I'm writing an XSD schema to validate a document that stores, among other things, a number of result elements. Two of the attributes for this element, clickIndex and timeViewed are optional and use ...
0
votes
0answers
49 views

how to load .xsd file java

I am trying to call this loadworld method down below, but it always return false. i can load regionsFile properly which is a xml file. I tried to debug, it looks like my xsd file(worldSchema) can not ...

1 2 3 4 5 45