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

Home Posts Topics Members FAQ

XSD keyRef

Hello,

I have a complex type defined in its own schema as follows:

<xsd:complexTyp e name="myType">
<xsd:complexCon tent>
<xsd:extensio n base="myBaseTyp e">
<xsd:attribut e name="parentId" type="xsd:strin g" use="optional"/>
</xsd:extension>
</xsd:complexCont ent>
</xsd:complexType >

I want to apply a keyRef so that the parentId attribute must refer to a
valid ID (defined elsewhere in another schema). However, as far as I can
tell, XSD only allows you to specify a keyRef inside an element declaration.
But I don't want to declare an element. Does anyone know how I can declare a
keyRef without requiring the element?

Thanks,
Kent
Nov 15 '05 #1
2 1806
You can't. key/kerefs must be declared on an element. It could be either a
global element or a local element.

--
Stan Kitsis
Program Manager, XML Technologies
Microsoft Corporation

This posting is provided "AS IS" with no warranties, and confers no rights.
Use of included script samples are subject to the terms specified at
http://www.microsoft.com/info/cpyright.htm

"Kent Boogaart" <ke****@interno de.on.net> wrote in message
news:uH******** ******@TK2MSFTN GP12.phx.gbl...
Hello,

I have a complex type defined in its own schema as follows:

<xsd:complexTyp e name="myType">
<xsd:complexCon tent>
<xsd:extensio n base="myBaseTyp e">
<xsd:attribut e name="parentId" type="xsd:strin g" use="optional"/>
</xsd:extension>
</xsd:complexCont ent>
</xsd:complexType >

I want to apply a keyRef so that the parentId attribute must refer to a
valid ID (defined elsewhere in another schema). However, as far as I can
tell, XSD only allows you to specify a keyRef inside an element
declaration. But I don't want to declare an element. Does anyone know how
I can declare a keyRef without requiring the element?

Thanks,
Kent

Nov 15 '05 #2
Thanks for the reply. Is this a known flaw in XSD? Will something be done
about it? It seems a bit limiting to me. I have a similar problem trying to
declare uniqueness on a complex type's outer element's children.

Thanks again,
Kent

"Stan Kitsis [MSFT]" <sk***@microsof t.com> wrote in message
news:43******** @news.microsoft .com...
You can't. key/kerefs must be declared on an element. It could be either
a global element or a local element.

--
Stan Kitsis
Program Manager, XML Technologies
Microsoft Corporation

This posting is provided "AS IS" with no warranties, and confers no
rights. Use of included script samples are subject to the terms specified
at http://www.microsoft.com/info/cpyright.htm

"Kent Boogaart" <ke****@interno de.on.net> wrote in message
news:uH******** ******@TK2MSFTN GP12.phx.gbl...
Hello,

I have a complex type defined in its own schema as follows:

<xsd:complexTyp e name="myType">
<xsd:complexCon tent>
<xsd:extensio n base="myBaseTyp e">
<xsd:attribut e name="parentId" type="xsd:strin g" use="optional"/>
</xsd:extension>
</xsd:complexCont ent>
</xsd:complexType >

I want to apply a keyRef so that the parentId attribute must refer to a
valid ID (defined elsewhere in another schema). However, as far as I can
tell, XSD only allows you to specify a keyRef inside an element
declaration. But I don't want to declare an element. Does anyone know how
I can declare a keyRef without requiring the element?

Thanks,
Kent


Nov 15 '05 #3

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.
4
1647
by: jasonnerothin | last post by:
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:complexType name="topLevelContainer"> <!-- define an element --> <xs:complexType name="element"> ...
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
8395
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
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
8503
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
8605
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...
1
6166
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
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
4155
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
4306
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2726
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.