XSD generally refers to a document written in the W3C XML Schema format, containing a description of a particular type of XML document.

learn more… | top users | synonyms

0
votes
0answers
52 views

Difference between using ID+IDREF and direct Type in XML Schema?

I am new to XSD and have a question about the difference between the following two schemas? 1) Direct use of IDREF and ID to limit the selection to another element within the file: <xsd:element ...
1
vote
1answer
66 views

XML Schema type alias?

Is there a way to define a type alias / strong typedef / simpleType with an empty restriction in XSD? <xsd:simpleType name="identifier"> <xsd:restriction base="xsd:string"> ...
0
votes
1answer
20 views

Assigning namespace to element locally

I've got an xml file. I cannot change the xml structure therefore I have to change the xsd file. Problem is about namespace <po:purchaseOrder orderDate="2001-01-01" ...
0
votes
0answers
155 views

Cannot resolve the name 'activity:verb' to a(n) 'element declaration' component

I am trying to create Java classes using xsd which I created from an XML using trang.jar. I am trying to create these Java classes in Eclipse IDE using JAXB tool. Below is my xsd and errors that i get ...
1
vote
2answers
76 views

XML IDREF in JAXB returns the wrong class?

I am new to both XSD design and JAXB. I managed to create my XSD as below: <xsd:element name="policy" > <xsd:complexType> <xsd:sequence> <xsd:element name="actor-def" ...
0
votes
0answers
26 views

XSD: precision of xs:decimal with restricted length vs. xs:float

I'm trying to understand the meaning of "precision" with respect to an element defined as xs:float and one which is defined as xs:decimal but whose length is restricted. I know that one cannot ...
1
vote
2answers
129 views

JAX-WS has XSD schema in different URL

I made a small web service using JAX-WS. The WSDL file has TYPES element like this. <types> <xsd:schema> <xsd:import namespace="http://ws.poc.mawia/" ...
0
votes
1answer
87 views

XSD Validation Error: “cvc-elt.1.a: Cannot find the declaration of element 'school'.”

I've been trying for a bit by looking through similar questions to find an answer to my problem. However, no matter how I change the namespace, I always end up with the same problem. Anybody has any ...
0
votes
0answers
32 views

Exception When creating jaxb classes from xsd

I am getting this exception when generating jaxb classes from xsd. I have included all the necessary jars. But unable to find solution for this exception. I am using java 1.5. Exception in thread ...
1
vote
0answers
18 views

Override default value for attribute in base type

I have an existing type like this, which belongs to a library-level XSD: <xs:complexType name="mybase"> <xs:attribute name="myattr" type="xs:string" default="123"/> ...
1
vote
0answers
55 views

Spring Security XML can't find tag with error cvc-complex-type.2.4.c

I have a problem with Spring Security. Eclipse can't find the html tag in the spring-security.xml with this error : Caused by: org.xml.sax.SAXParseException; lineNumber: 12; columnNumber: 28; ...
1
vote
1answer
34 views

My xml won't validate against my schema

I have just made my first attempt at XSD. When I try and validate my XML against my XSD, I get the error: Cannot find the declaration of element 'linkage'. Below I give my XSD and a cut down version ...
1
vote
1answer
55 views

Custom XML Generator UI from XSD

I have an XSD document. My requirement is to create a UI which will generate an XML based on some input fields values and rules in XSD document. Are there any tools available online, that will take ...
0
votes
1answer
58 views

Spring 'application-context' XSD schema read issue

I'm using JAXWS in my spring project to communicate with server and there is an error of XSD reading in my application context xml. Here is the application context - <?xml version="1.0" ...
1
vote
1answer
79 views

JAXB not treating value attribute as an attribute

I created an XSD and one of my elements attributes is named value. I created classes using JAXB however when I used those classes to create XML value is not an attribute, it is a value within an ...
1
vote
1answer
70 views

How to use key and keyref in XSD?

I have the following XML: <?xml version="1.0" encoding="ISO-8859-1"?> <library xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="library.xsd"> ...
1
vote
1answer
34 views

XSD having metadata at each field level

i have XML structure as below (just part of large XML) <Person> <firstName> <lastName> <Partner> <firstName> ... </Person> i need to keep additional metadata ...
0
votes
1answer
29 views

How to extract namespace from XSD?

I have an XSD that I want to use in serializing my domain objects into XML. I'm using StreamingMarkupBuilder to generate the XML, but I want to be able to extract namespaces out of the XSD to use in ...
0
votes
1answer
22 views

Xsd with nonlatin elements to java

I have an xsd where elements are named with nonlatin chars. How can I generate java classes, where filelds will be named properly, without "strange" chars: may be I can provide my own rules for per ...
0
votes
0answers
81 views

Extracting values from an xsd(xml schema) file

I have following xsd file(just an simple example) from which i want to extract some values. <xs:element name="ACES"> <xs:complexType> <xs:sequence> <xs:element ...
1
vote
1answer
34 views

Extending or redefining XSD complexType

I try to extend the sitemap.xsd : I would like to add a new element (called 'crawl') to the tUrl complexType. So I created a sitemap-extended.xsd (I have redefined sitemap.xsd and I have extended ...
0
votes
1answer
26 views

C# XSD schema - how to get main properties values?

I have the XSD schema definition loaded (XDocument variable type) I can't figure out how to get the someProperty value. Any ideas ? <xsd:form-definition xmlns:xsd="http://url/lorem.xsd" ...
0
votes
1answer
108 views

XML/XSD graphical representation of the tree

I have constructed a XML file and generated a XSD file from it. The XML is almost empty as there are elements but without value : <parent> <child1/> <child2/> </parent> ...
0
votes
0answers
57 views

how to add multiple namespaces in one xml instance with xsd:any element definition?

Here's the xml sample. <?xml version="1.0" encoding="UTF-8"?> <ns:AllInput xmlns:ns="xxx.com" xmlns:ns1="yyy.com" ....> <ns1:Id>some value...</ns1:Id> <ns1:field> ...
1
vote
1answer
30 views

Issue with xml xs:unique

My xs:unique is not working. I tried various solutions provided in this site. None of them seem to be worked for me. I am using C# to validate my xml against the schema. For example key passwordomni ...
0
votes
0answers
11 views

How to reference a XSD in the parent maven project?

I'm having a XSD (Schema) file packed in a parent project (parent pom). From a sub project that references this parent pom, I want to extend a freshly created XSD with this super XSD. How could I ...
0
votes
0answers
45 views

Error in XML when using XSD schema

I am trying to insert custom XML elements inside a custom layout. <?xml version="1.0" encoding="utf-8"?> <com.example.test.CustomLayout ...
0
votes
3answers
55 views

How to create XSD with constrains base on the value of attribute?

I am new to XSD, and have difficulty to create a XSD to validate the following incoming XML message. The difficulty I have are: The data elements "Field", whose attribute "position" value equal to ...
1
vote
1answer
44 views

Is it acceptable to validate an XML document with no namespace against an XSD file that does have a namespace?

We have a customer who is supplying XML documents whose content doesn't have a namespace. We are trying to validate those documents against an official schema that has been assigned a namespace. 1) ...
0
votes
2answers
61 views

Generate class from XSD

I have simple xml like this: <?xml version="1.0" encoding="UTF-8"?> <xmi:XMI xmi:version="2.1" xmlns:xmi="http://schema.omg.org/spec/XMI/2.1" ...
1
vote
0answers
21 views

Change the name of the Request Element in XSD file of a Spring Web Service

I have a Web Service with a method called TestMethod. On the XSD file I have this: <element name="TestMethodResponse"> <complexType> <sequence> <element ...
0
votes
1answer
13 views

how to relate current attribute value to the tag content

I am solving problem in my XML doc. My doc example: <Height unit="m">lala</Height> attribute unit has two values: unit="m" and unit="ft". And I am suggesting is it possible to create XSD ...
0
votes
1answer
45 views

Validating XML in PHP and generating “human readable” error messages?

I'm trying to build a tool for validating specific XML and outputting human-readable results. My existing PHP code uses DOMDocument::schemaValidate to validate the XML against a .xsd file, but the ...
0
votes
1answer
37 views

XML validation with PHP and XSD Error

I dont speak english, so forgive me. I'm trying validate an xml file with your xsd using PHP, but dont work! First I call libxml_use_internal_errors(true); for get the errors. Then I call ...
0
votes
0answers
17 views

XSD/XML Schema error

I have two files, the first with the classes in, the second one with the datatypes I'm using in my classes. I'm trying to create 'AssignmentExam' as a subclass of 'Grades', and 'Examiner' as a ...
1
vote
1answer
33 views

Handling frequent schema change in the jaxb

In my application we are using JAXB for unmarshalling incoming xml response. JAXB pojos are further mapped to DAOs for DB operations. My issue is our service provider is going to frequently update ...
0
votes
1answer
30 views

xsd validate xml optional sub-elements

I have been trying to construct an XSD file to validate some xml XSD Example <xs:element name="person" type="persontype"/> <xs:complexType name="persontype"> <xs:sequence> ...
1
vote
1answer
22 views

How can I retrieve the restiction base value from an XSDsimpleType through EA scripting tool?

I'm making a script to export an XSD from its modelization in enterprise architect to an excel file. So far it's okay though when examining an element stereotyped "XSDSimpleType", I cannot gets its ...
0
votes
2answers
39 views

How to define XML element in xsd schema which can contain either one attribute or several others?

I use MVVM pattern in my project. I describe a view via XML. But I need to split it into several XML files because one XML file will be too large. When my parser reads XML it find "Source" attribute ...
0
votes
0answers
46 views

ComplexType element XSD

Validate two XML XSD types, with different elements. This XML of product. <oils hostDbID="6" hostDetailId="289" model="1l dans 5w30 c3" host="norauto" trademark="oil-dans" id="noil-237789" ...
1
vote
1answer
50 views

jaxb catch exception if field is not found in java class

I need to catch the exception when an xml is unmarshalling to a java class if a field and its attribute(s) found in xml file are not defined in java class. I am not able to construct the xsd ...
1
vote
1answer
60 views

java ignore the DTD for validation if a schema is available

Is this possible to ignore an internal DTD for validation, when a document has XSD schema available? DTD should be used for validation if no schema specified in the source document. Here's how I ...
1
vote
1answer
64 views

JAXB: How to do mapping between xmlMessage and its Java Class to do unmarshal when we have a lot of type of xmlMessage

I have XSD file which I have processed using XJC to generate Java classes. <?xml version="1.0" encoding="UTF-8"?> <schema xmlns="http://www.w3.org/2001/XMLSchema" ...
0
votes
1answer
31 views

Create different element in XSD

I have a XSD modified to add new item without having to create a new XSD. Currently I have a single element in this case is "tire". I created an element of type "tire". <xs:element name="tire" ...
1
vote
1answer
39 views

Optional key in XSD

I've created a key/keyref on the root element in order to create document-wide uniqueness based on the specified element. Therefore, via .//foo/@name every occurrence of @name across all instances of ...
1
vote
1answer
56 views

Handle arrays in C# generating xml?

I got a generated class in C# (from a xsd with xsd/c), that got this declaration (together with string-fields, numeric fields and so): private string[] itemsField; private ItemsChoiceType[] ...
0
votes
1answer
59 views

Get attribute values to the XML-File

I got a issue with XML, and write some information on a XML-file. I got several xsd-files describing my XML. I created one big .cs-file with "xsd/c testfile1.xsd testFile2.xsd..." etc. And ...
0
votes
1answer
52 views

Is XSD data validation reliable in .Net 4.0?

I have written a client to a public SOAP web service, using a WSDL and several XSD files supplied by the service provider. I wanted to find an easy way to validate user data against the XSD files, so ...
0
votes
1answer
98 views

XSD Validation Error : cos-all-limited.1.2: An 'all' model group must appear in a particle with

I have and XSD which gives the following error during the schema generation. org.xml.sax.SAXParseException; systemId: file:/D:/Basil/Projects/myproducts.xsd; lineNumber: 577; columnNumber: 50; ...
-3
votes
1answer
107 views

validate XML against XSD [closed]

I am trying to learn XSD and want to ask if there is another way to validate XML against XSD. It works the way I did it but want to know is anything wrong in my code. I have used an online site to ...

1 2 3 4 5 78