1
vote
1answer
37 views

XML Schema - child element valid or not dependent on the parent

I'm trying to write an XML schema for following conditions: I have HTML-like XML. If "b" tag is the child of "p", "li", "cell" etc it can have a child element "footnote". It can also have other child ...
0
votes
2answers
38 views

How to make <xsd:key> apply only to the current scope?

Ok so, basically what I currently have is: XSD: <?xml version="1.0"?> <xsd:schema xmlns="test" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="test" ...
1
vote
1answer
88 views

Using XPath for building hierarchical Menu with recursive elements

I have a problem with building recursive Menu using XMLDataSource in case when I try to use XPath. When XPath="" then Menu works fine showing Root element and all hierarchy under it. But I need that ...
0
votes
2answers
55 views

xs:unique - Enforce Unique Attribute Values in Schema on abstract element

I'm trying to force uniqueness of an attribute using xs:unique. However, I think I'm having some trouble with XPath. I have an abstract element, ObjectA, that has an attribute "identifier" that is a ...
0
votes
0answers
53 views

Create web from xsd containing choice

We've got a complex XSD which has choices, nested choices (atleast to 3 levels), sequence & elements. We are developing an java application that would generate Web forms from the given XSD. ...
1
vote
1answer
151 views

Use Xpath to select all nodes that extend from base class in xsd

My xsd file is like follows: <xs:complexType name="baseClass"> </xs:complexType> <xs:complexType name="childClass1"> <xs:complexContent> <xs:extension base="baseClass"> ...
0
votes
0answers
355 views

Parsing XSD with XPATH w/ PHP

I have an XSD file in the following forward. What is the best way to query and traverse the DOM. The way I am doing has 3 queries and loops and am not feeling comfortable with it. <xsd:simpleType ...
1
vote
1answer
694 views

xsd unique selector path: exclude specific elements [closed]

I have following xml and xsd as basic example for my question: XML <parentgroup> <parent id="1"> <child id="2" /> <child id="3" /> <childgroup ...
1
vote
0answers
106 views

Read annotation from XSD by element XPath

I have XML document builded by XSD. Each element in XSD with annotation. When i validate XML by XSD i can generate an XPath of error (using Stack), how can i read annotation from XSD with XPath of ...
1
vote
0answers
650 views

Generate XPath from XSD in C#

Is there any sample code to generate all the Xpath values from an XSD file. Please let me know if there's a tool that will generate all the xpath values(for all elements & attributes) from an XML ...
4
votes
1answer
143 views

XML schema unique child elements

I am trying to validate that a parent has unique child elements by the element name. I also need to validate that at least one of the possible elements exists. Example <StorageTypes> ...
0
votes
0answers
295 views

Maven(maven-jaxb-plugin) with XSD [ERROR] XPath error: null

So I am getting an error when running jaxb plugin on my code to generate a class. It generates an XPath error: [INFO] XJC compile [INFO] build id of XJC is hudson-jaxb-ri-2.1-833 [INFO] ...
4
votes
1answer
1k views

XSD unique constraint on attribute of sibling elements of a specific type

I have an XML document structured as Q&A which follows the following format (edited for clarity): <question> <answer id="1"> <question> <answer ...
0
votes
1answer
135 views

Navigating XSD and XML file with a common Java tool/api

What is the best way to navigate XSD and XML file? I want to find if XSD and XML both have same elements above or below to an input element. Is it possible XPath? If yes provide a good tutorial as I ...
0
votes
0answers
87 views

How to validate all elements and attributes of the same data type (xs:date) in XML using Schematron and XPath 1.0

How to validate all elements and attributes of the same data type (for example: xs:dateTime) in XML using Schematron and XPath 1.0 in one test? I know you can create multiple tests for this, but ...
1
vote
1answer
138 views

How can I reuse assert tests in Schematron with XPath 1.0?

How can I reuse a Schematron assert test using XPath 1.0? Specifically how can I reuse a test using the found attribute name. If I cannot do this I would like to reuse a test and just have one test ...
1
vote
3answers
757 views

Create Xpath from XSD in Java

I am using Apache XMLSchema framework to parse and get the elements of an XSD. Now I need to associate a XPath string with each of those elements. Can some one give any Idea on how can I do this. Any ...
1
vote
3answers
233 views

XPath - extract value from parent with highest node value

This is my XML snippet <FinancialSummary> <SummaryDate format="YYYYMMDD">20111231</SummaryDate> <Revenue currency="EUR">1249164523</Revenue> ...
1
vote
2answers
438 views

copy complexType to message in BPEL

I am using Apache ODE to write some simple BPEL's to connect 2 web services. One of the WSDL files of my two services contains this complex type: <types> <t:schema ...
1
vote
1answer
148 views

Longest duration that can be specified with xsd:dayTimeDuration()

I have a simple question: what is the longest / "infinite" duration that can be specified using xsd:dayTimeDuration() (in the ISO8601 format)? Thanks, M.
4
votes
1answer
289 views

XSD - how to define relationship between two elements

I have a XSD file like below: <element name="finder-def" minOccurs="0" maxOccurs="unbounded"> <complexType> <attribute name="name" type="string" ...
3
votes
3answers
251 views

How to specify unique values in an XML schema

I am unable to get the xs:unique specifier to work in an XML file. I just don't seem to be able to work out an XPath that works. My apologies for the amount of code in this question, but I would be ...
1
vote
1answer
113 views

Is it possible to build an XML document from a list of XPath values and the XML XSD?

I have a list of name/value pairs that I would like to map into an XML document. My idea is this, assign each of the names an XPath like this: Account_Number = 4294587576-32 = ...
-1
votes
2answers
382 views

How to create an XML document from xpath

I need to transform my domain object into an xml document for a third party data exchange. I have a mapping document with the location of the data from my domain and an xpath of where this data ...
2
votes
1answer
84 views

Negating a word within a line using regular expression

Given the this expression that matches lines that contain minOccurs <xs:element[^>]+?\sminOccurs\s*=[^>]+> and this text: <xs:element name="shipto"> <xs:complexType> ...
0
votes
2answers
751 views

Xpath in XSD C#

I have an XSD file such as: <xs:schema targetNamespace="..."> <xs: import namespace="..."> <xs: import namespace="..."> <xs: import namespace="..."> <xs:element ...
0
votes
1answer
320 views

got null from xpath expression when using xsd schema with Dom4j

I'm trying to use dom4j with my application, and I approached a problem with parsing following xml file: <menu xmlns="http://example.com/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ...
4
votes
1answer
1k views

How to generate xpath from xsd?

How can I generate xpath from an xsd? XSD validates an xml. I am working in a project where I am generating a sample XML from the xsd using java and then generating xpath from that XML. If there is ...
2
votes
1answer
238 views

What is the XML schema to represent a string-to-string dictionary?

Suppose I have a Dictionary<string, string> instance, like this one: { { "a", "1" }, { "b", "2" } } There are several ways to represent it in XML: <root> <item> ...
4
votes
1answer
265 views

Validating attribute uniqueness with XSD across XML document

I'm trying to validate the uniquess of an attribute across all elements that exist in an XML document. Example XML: <exampleXml> <a id="1"/> <a id="2"> <b id="1"/> ...
1
vote
1answer
175 views

How to add an attribute “type” for default data type of elements in XSLT tranformation

For Example : Input XML: <employee> <name>Ragu</name> <city>Chennai</city> <age>25</age> </employee> Data type for above request xml ...
1
vote
1answer
1k views

Selecting Nodes in XSD schema using Xpath

I have the following code that I wish to use to select all the elements I will need in a certain sequence. Here's the snippet: XmlDocument schema = new XmlDocument(); ...
7
votes
2answers
119 views

How can I specify an element to have an attribute that states how many children it contains in an XML Schema?

Is it even possible? I know it’s possible to do a restriction based on regex, but that’s not it I know it’s possible to declare an attribute as a foreign key calculated by an XPath, but it seems it ...
-1
votes
3answers
2k views

How to generate xml from xsd schema?

I am having xsd schema..How can I generate the xml by using this schema programmatically in java..? and it should be dynamic ,means I can give any schema. Is there any library available to do same.? ...
0
votes
1answer
20 views

xml schema having key for differnet depth

i have a flexible configuration that uses a <directory>-element at different hierarchical levels. Now I would like to ensure that one directory can only be used once. <xs:element ...
0
votes
1answer
153 views

What is the best method to manipulate xml files?

I want to manipulate XML files. ... <Document Id="1091"> <Indexes> <Index Name="MODD" Value="aaa" /> <Index Name="DDAT" Value="bbb" /> <Index ...
2
votes
2answers
194 views

best way to check xml reference?

I have many references in my xml files like this: <name id="key1"></name> <ref to="key1"></ref> so what's the best way to check the ref/@to is defined in a name/@id. XSD? ...
5
votes
2answers
3k views

Is it possible to ignore case using xpath and c#?

Just wondered if its possible to ignore case with c# and xpath when searching an xml document?
2
votes
1answer
2k views

Is it possible to ignore namespaces in c# when using xPath?

I could be given either of the following xml: <?xml version="1.0" encoding="UTF-8"?> <dc:video xmlns:dc="http://purl.org/dc/elements/1.1/"> <dc:title> A vid with Pete ...
1
vote
3answers
1k views

How do I set the namespace URI in c#?

Im using a namespace in my xml (I need to use this for xsd validation purposes). Because of this my xpath is no longer working. I have the code: XmlDocument doc = new XmlDocument(); ...
2
votes
3answers
319 views

id() in XPATH with .NET

I'm trying to query XML through XPATH but is having problem getting id() to work. I would like to get all the authors for a book, specifying the book ID. Here's the XML. <?xml version="1.0" ...
1
vote
3answers
213 views

Better control of for-each in xsl/xpath possible?

Hey Friends I've got another xsl/xpath problem. Sure a beginners problem, but I'm thinking still too "imperative". <!-- XML --> <Module> <WideTeaserElement> ...
0
votes
1answer
424 views

Define keyref selector based on element type in XPath

Let's say I have an XML file that will look like this: <a> <b d="value1"/> <c d="value2"/> </a> In the XSD file that defines the structure of this XML file I defined ...
1
vote
1answer
312 views

PHP XML manager/Xquery creator?

i'm looking for a PHP solution to easily traverse (readonly) XML files (rss feeds) from websites. Other providers have XML feeds with different markups and I want to have an easy PHP (possible ...
4
votes
2answers
944 views

Fast python XML validator with XPath support

I need to read a large XML (65 Mb), validate it against a xsd, and run XPath queries on it. Below, I've given an lxml version of that. It takes a lot of time (over 5 minutes) to run the query but ...
1
vote
2answers
159 views

What is wrong with this xsd?

The following XSD should validate that the favorite_fruit element's name attribute should only contain names of fruit in the fruits element. Here is the XSD: <xsd:schema ...
2
votes
1answer
353 views

XML Schema (XSD): How to express “At most one element from group A and at most one element from group b”?

Say I have two sets of XML elements: <One/> <Two/> <Three/> And <A/> <B/> <C/> And I want to have them as children of a bucket element: <Bucket> ...
4
votes
3answers
10k views

How to display XSD validated XML using XSLT

I've been fighting with this for some time now, and haven't been able to find a clear answer to this yet. As I understand correctly I can store data in an XML file, validate it using an XSD and then ...
0
votes
3answers
84 views

is it possible to specify a OR in a Xpath in a XSD?

I want to be able to guarantee uniqueness for two types of elements : MainQuestion and AlternateQuestion. In the select query for my xsd:key, can I specify something that would do "//MainQuestion or ...
1
vote
2answers
2k views

Can I validate an XPath expression against an XML schema?

You can verify an XPath expression against an XML doc to verify it, but is there an easy way to verify the same XPath expression against the schema for that document? Say I have an XSD schema like ...

1 2