473,657 Members | 2,369 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

keyref validation problems

I'm trying to figure out exactly what's going wrong with an xpath
keyref validation scenario.

In brief, I have something like the following in my xsd:
<xs:schema>
<xs:complexTy pe name="topLevelC ontainer">

<!-- define an element -->
<xs:complexTy pe name="element">
...
<xs:attribute name="id" type="xs:int" use="required"/>
</xs:complexType>

<!-- instance one, simple list -->
<xs:element name="instanceO ne" minOccurs="0">
<xs:sequecne>
<xs:element name="elementDe scription" type="element"
minOccurs="0" maxOccurs="unbo unded"/>
</xs:sequence>
</xs:complexType>

<!-- instance two, an inner, heterogenous list -->
<xs:complexTy pe name="instanceT wo" type="anotherTy pe">
<xs:element name="elementLi st">
<xs:complexType >
<xs:choice maxOccurs="unbo unded">
<xs:complexTy pe name="fullEleme nt"
type="elementTy pe"/>
<xs:complexTy pe name="elementRe f" type="xs:int"/>
</xs:choice>
</xs:complexType>
</xs:sequence>

<!-- constraints -->
<!-- key points to the id attribute of instanceOne type -->
<xs:key name="elementKe y">
<xs:selector xpath="instance One/elementDescript ion"/>
<xs:field xpath="@id">
</xs:key>

<!-- keyref points to more-deeply nested instanceTwo type -->
<xs:keyref name="elementRe f" refer="elementK ey">
<xs:selector xpath="instance Two/elementList/elementRef"/>
<xs:field xpath="."/>
</xs:keyref>

</xs:complexType> <!-- end top-level container -->
</xs:schema>

In short, what I am trying to do is ensure that the references from
within the instanceTwo type point to elements within the instanceOne
type. But what I'm not able to figure out is how to enforce that the
instanceTwo type contain references to fully described elements in
instanceOne only. For some reason, a file will validate when the
references out of instanceTwo refer to elementDescript ions from other
instanceTwos in the file.

I'm suspicious that the xpath comparison will never return false for
some reason related to datatype. (My xml editor seems to suggest that
the xpath expressions are returning the appropriate values.)

???

Apr 27 '06 #1
4 1647
Hi,

Your schema has quite a large number of structural problems - keys
within complex types instead of elements, complex types with type
attributes, complex types directly within choice groups, etc.

I'm assuming this is because you cut down the example to be concise, but
it makes it awfully hard to debug the problem when it's not a valid
schema.

Your general approach looks right to me. It could be a namespace issue
- if you're using a target namespace, you must prefix all your element
names in your XPaths. It could also be a problem with your XML Editor,
since some of them are buggy when it comes to identity constraints.

Otherwise, you could post the real schema and we could take a look at
it.

Hope that helps,
Priscilla

----------------------------------
Priscilla Walmsley
Author, Definitive XML Schema
Definitive XQuery
http://www.datypic.com
----------------------------------

*** Sent via Developersdex http://www.developersdex.com ***
Apr 27 '06 #2
Hi,

The xsd is available at
http://psidev.sourceforge.net/mi/rel25/src/MIF25.xsd . XML Spy
documentation is available at
http://psidev.sourceforge.net/mi/rel25/doc/ . As you mentioned it is
quite complicated and likely to have some structural problems, and I've
made some minor revisions to the original for purposes of the example
as I've analyzed the problem.

Thanks...

Apr 27 '06 #3
Hi,

The most obvious thing I notice is that you are using a target
namespace, but you are not prefixing the element names in your paths.
XPath expressions are not affected by default namespace declarations, so
you will need to declare a prefix for the default namespace, e.g.

xmlns:xyz="net: sf:psidev:mi"

Then prefix all the element names in your XPaths, e.g.

<xs:selector xpath="xyz:expe rimentList/xyz:experimentD escription" />

Hope that helps,
Priscilla
----------------------------------
Priscilla Walmsley
Author, Definitive XML Schema
Definitive XQuery
http://www.datypic.com
----------------------------------

*** Sent via Developersdex http://www.developersdex.com ***
Apr 27 '06 #4
Hi Priscilla,

Perhaps you could suggest a good xml style guide or a tool better than
those that I am using? Both XmlSpy and a java validator I wrote myself
(sax parser) fail to choke on the problem use case that I have on hand.

Thanks again...
Jason

May 1 '06 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
3269
by: peterpeter | last post by:
Hi. There is a XML schema problem that I have with key/keyref: I have two complex (A and B) types which both inherit from a common base typ (Base). A refers B using a xs:IDREF element named Ref_to_A. Both are allowed to be instantiated under the root element by declaring an element of the base class. I want to have type safety for the reference by using key/keyref.
0
1802
by: Markus Seibold | last post by:
Hello NG, sorry for pasting that much code but I just can't figure out how get the <key><keyref> to work in XML Schema. I am using XMLSpy 4.3 for editing my XML. I want to represent a recursive 1:n relationship between a database table AdminUnit (i.e., States consist of Counties).
5
6507
by: Russell O'Connor | last post by:
The following XML and Schema doesn't validate in Visual Studio .NET 2003. Is there some mistake I'm making, or is VS.NET in error. The error is r:\test2.xml(3): The key sequence 'foo' in Keyref fails to refer to some key. An error occurred at , (3, 6). Any help is appreciated. Here is the schema. <?xml version="1.0" ?> <xs:schema id="NewDataSet" targetNamespace="http://tempuri.org/test2.xsd" xmlns:mstns="http://tempuri.org/test2.xsd"
0
1220
by: mark.van.der.voort | last post by:
Hi, I have defined a simple key/keyref validation for describing a tree. <xs:key name="key_member"> <xs:selector xpath=".//member"/> <xs:field xpath="@id"/> </xs:key> <xs:keyref name="ref_parent_member" refer="key_member"> <xs:selector xpath=".//member"/>
0
1583
by: jacksuyu | last post by:
I have two xsd files, in one xsd file, I defined a "key", I'd like to use "keyref" to refer to that "key" from another xsd file. But I always get attribute is empty error. my.xsd is my first xsd file with "key", myphone.xsd is the keyref file which need to refer to the "key" Thanks. my.xsd:
1
2858
by: Dmitry Martynov | last post by:
Hi I have a question whether XmlValidatingReader doesn't check keyref constrain (the same with key constraint) or I do smth wrong. I have the following schema <?xml version="1.0" encoding="utf-8"?> <xs:schema id="module" targetNamespace="http://tempuri.org/module.xsd"
0
1155
by: Kent Boogaart | last post by:
Hi, Suppose an XSD as follows: <xsd:complexType name="myType"> <xsd:complexContent> <xsd:extension base="myBaseType"> <xsd:sequence> <xsd:element name="thing" minOccurs="0" maxOccurs="unbounded">
2
2847
by: svestin | last post by:
Hi All! I run into a problem defining a XSD schema with KEYREF references. Is it possible to use KEYREF with nillable fields? Just like a database where a FK could be null. In the example below the tag <Owner> is nillable and also used as FIELD in the KEYREF.
0
1636
by: peterpeter | last post by:
Hi. There is a XML schema problem that I have with key/keyref: I have a complex type "AExtended" which inherits from a base type "ABase". Both are allowed to be instantiated under the "Root" element by declaring an element of the base class with name "A" and either "xsi:type=ABase" or "xsi:type=AExtended". I want to have type safety for the reference "Ref_to_AExtended" from
0
8399
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8312
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8732
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8504
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8606
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
5632
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4159
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4318
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2732
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.