Tagged Questions
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
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"
...
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
22 views
Where does Mozilla host their XUL XSD Schema?
I'm trying to find the official schema (XSD or DTD) for Mozilla XUL.
Nothing except this weird link crop up in Google searches.
What gives?
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 ...
0
votes
1answer
14 views
Is it preferred to define a separate plural complexType for multiple singular elements
Is there any established standard for inlining trivial plural complexTypes vs. defining them separately?
In detail: When defining some XML schemas I frequently encounter cases where I want one ...
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
0answers
14 views
How to find xml tags using VB
I have created xsd file which has xml tags(only elements).
And attached that xsd file to word document.
xsd file path(screen shot) :(after adding to word document)
http://sdrv.ms/12P9GLZ
...
0
votes
2answers
70 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:
...
0
votes
2answers
41 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
42 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" ...
1
vote
1answer
33 views
XML Schema: multiple adjacent xs:documentation elements within xs:annotation
I am looking at an XMLSchema *.xsd file and see forms like the following:
<xs:element name="shortName" type="vr:ShortName" minOccurs="0">
<xs:annotation>
...
1
vote
2answers
38 views
specify type for IDREF in XML schema
I am generating Java objects from and XML schema using xjc. I would like to reference the same element multiple times within the document using IDREF. I would also like to constrain the objects ...
3
votes
1answer
70 views
Visual Studio XML Schema annotations (vs:htmlequivalent)
I'm creating an xml schema for a document that will eventually be translated into javascript. It would be really useful to allow the insertion of custom js scripts right within the document. This ...
0
votes
2answers
55 views
XSD and XML - Cannot find the declaration of element
Probably this has been asked many times.But I went through all the posts but could not clear my error as I have no knowledge about XML and XSD. Can somebody please find out the error?
XML
<?xml ...
0
votes
1answer
51 views
XSD: Define element with any type and any name
I have following XML structure:
<?xml version="1.0" encoding="utf-8"?>
<DataSets>
<DataSet>
<Parameter id="1"/>
<Parameter Description="My Description"/>
...
1
vote
1answer
33 views
Include the same attributes into multiple elements without copy paste
I have such elements as Laptop, PC, Printer. All of them should have the same attributes, for example, price and model. Is it possible to declare attribute list just once and include it into 3 ...
2
votes
1answer
29 views
XSD: Specifying a name for a text node property
I am using an XML schema and xjc to generate java classes. I would like to define an XML structure that looks like this:
<unicorn color="white" ...
0
votes
1answer
42 views
XML - Schema Element with attribute and sequence of sub-elements
I have a XML schema as follows:
<?xml version="1.0" encoding="ISO-8859-1"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
elementFormDefault="qualified">
...
0
votes
0answers
56 views
Unable to read WSDL/schema; the operation null and/or the namespace is invalid
The schema is:
<xsd:element name="ImportCPCContentResponse">
<xsd:complexType>
<xsd:sequence>
<xsd:any minOccurs="0" maxOccurs="unbounded" processContents="skip" ...
0
votes
1answer
28 views
Reference elements in XML Schema
The W3Schools site describes an improvement to a basic XML Schema layout by defining the types at the start of a schema definition and referencing these types later within other complexTypes. Here is ...
0
votes
2answers
27 views
XSD - Validate element which is a value of an attribute
I have following xml.
<a>
<thing tag="song1">
<name>john doe</name>
<email>john@example.com</email>
</thing>
<owner ...
0
votes
2answers
51 views
XML / XSD how to create a key
I am having problems defining a key in XML Schema.
CODE:
XSD:
<xsd:element name="players">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="player" ...
1
vote
3answers
67 views
Difference between <xsd:all> and <xsd:sequence> in schema definition?
Hi all I am new to schema definition Right now I am using xsd:all in complex type..When I missed any mandatory elements while validating it will show all the elements It will not display exact missed ...
0
votes
0answers
50 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
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
69 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">
...
0
votes
3answers
54 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 ...
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>
...
0
votes
2answers
38 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 ...
1
vote
1answer
37 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
votes
1answer
65 views
Regex Number Range multiple ranges
I'm not very good at regular expressions, can someone help me with a regex with these specifications:
Any integer between 0-365 OR 888
1
vote
1answer
92 views
Primary and foreign keys in xml schema
Hello Am new to XML schema am trying to insert primary and foreign keys in XSD schema file below.
Primary key is StudentID.
Foreign Keys are courseID, AddressID, GradeID.
<?xml ...
0
votes
1answer
74 views
XML Schema Reference and Types Not Declared
I'm a novice to schema construction and am having problems understanding how namespace references should work. I work with an application that is similar to BizTalk and performs a de-envelop ...
1
vote
3answers
488 views
XML Schema Validation : Cannot find the declaration of element
I am still a bit new to XML Schema etc. and have been working to develop some XML, Schema and a Stylesheet (XSLT). I have made reasonable progress, but then realised that my Schema had stopped ...
1
vote
1answer
105 views
XML-RPC Schema .xsd
Does anyone have, or know how to edit, an XSD for XML-RPC method calls?
I found this one: MSDN Xml Rpc Schema
However it doesnt allow a valid XML-RPC case. The bit which seems off is:
...
0
votes
1answer
198 views
Generate vb class from xsd. xmldsig#:SignatureType
I'm trying to generate a vb.net class using the xsd tool, from a xsd file, but I receiving the following message:
schema validation warning: complext type ...
2
votes
1answer
146 views
XML Schema 1.1 not recognizing 'assert' or 'assertion'
I am trying to use the following in an XSD
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" >
<xs:element name="dimension">
<xs:complexType>
...
1
vote
1answer
118 views
How do I make a valid inline XML schema?
I need to author an embedded XML schema, i.e. where the schema is define within the same XML as the data.
I'm trying to understand how to do it correctly, but so far I'm failing to get a simple ...
1
vote
0answers
47 views
Extend XML Schema enumeration without changing files using it
I've got a lot of XML schemas, let's say a.xsd, b.xsd, c.xsd which contains element types that make use of an enumeration for some of their attributes.
So imagine that somewhere in the definition of ...
0
votes
0answers
27 views
gends_run_gen_django with custom methods (or creating django models from xsd to use in web2py)
Below is a letter I wrote to the author of generateDS for generating python classes & xml parsers from xsd files. After hitting send I thought it might be cool to post here. If you like a good ...
0
votes
1answer
58 views
XSD Required Elements with specific child elements (Multiple Definitions with different types)
All, I have an XML doc which I don't control for which I need to create an xsd to validate. The XML doc has multiple transaction types, some of which are required a specific number of times, and ...
1
vote
0answers
56 views
Same element name in xsd, but different validation logic
I have xml file that seems like that
<doc>
<field name="simple_meta">book</field>
<field name="complex_meta">journal</field>
<field name="text_date">some ...
0
votes
1answer
30 views
XML Schema: How to handle different occurrences in an unordered list?
What kind of choice block(or something comparable) matches the following XML documents:
Example 1
<root>
<multiple1 />
<multiple2 />
<multiple2 />
<single1 ...
1
vote
1answer
32 views
Are the both schemas equivalent?
1.
<xsd:element name="tuple">
<xsd:complexType>
<xsd:sequence>
<xsd:any minOccurs="0" maxOccurs="unbounded" namespace="##any" processContents="skip" />
...
1
vote
1answer
122 views
XML schema validation results “Attribute not declared”
I validate an XML document against my XML schema. I recently added a new attribute in the XML files and the XSD schema. But when doing the validation I always get an exception
...
0
votes
0answers
68 views
Return Nested XMLSCHEMA from SQL Server 2005
Is it possible to return a nested XMLSCHEMA from SQL Server 2005?
Right now I have a stored procedure to generate a NESTED select query that can be executed to return an XML document. I do this by ...
0
votes
1answer
23 views
XSD - How can I describe a complexType whose children and 1 or more of any element
I am trying to create and element description which will contain XHTML. I do not know at design time what the contents will be. What I want do do is something like this:
<xs:element ...
1
vote
2answers
33 views
How can I describe an element with some ANY child element and some known?
How can I describe the "content" element in a schema file such that the order of the children is know but after "metadata" and before "content-section" any elements may placed?
Basically I want to do ...




