472,354 Members | 2,095 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,354 software developers and data experts.

targetNamespace/import conflict



I've been asked to look over an integration toolkit that has a bunch
of schemas to specify message format. There are a couple of strange
things I noticed right off the bat and I wanted to get others'
thoughts on it (disclaimer, obviously I'm no XML expert so forgive me if
these are basic).

--------Exhibit A: The start of a response message schema-----------
<xsd:schema targetNamespace="http://www.QQQ.com"
xmlns:QQQ="http://www.QQQ.com/datatypes"
xmlns="http://www.QQQ.com"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
elementFormDefault="unqualified">

<xsd:import namespace="http://www.QQQ.com/datatypes"
schemaLocation="../general/datatypes.xsd"/>

<xsd:import namespace="http://www.QQQ.com"
schemaLocation="../general/datatypes.xsd"/>
--------Exhibit B: The start of general/datatypes.xsd --------------

<xsd:schema targetNamespace="http://www.QQQ.com/datatypes"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns="http://www.QQQ.com/datatypes"
elementFormDefault="unqualified"
attributeFormDefault="unqualified">

--------------------------------------------------------------------

#1) Exhibit A seems to be following poor form by using such a generic
targetNamespace (the same one is used for all their top-level schema).
The convention I've seen is that the targetNamespace should be the
public URL of the document.

#2) Exhibit A defines both the default and QQQ namespace to point to
the same schema (namely, Exhibit B). I guess I don't have a problem
with it technically (sans #3) but it does seem bizarre. Seems like a
really bad idea in fact. Would you do this so you could normally refer
to a name X without qualification unless there were some ambiguity with
an X in the current document (and so you could refer to it as QQQ:X)?

#3) The namespace used in the 2nd import of Exhibit A does not match the
targetNamespace of Exhibit B. Why would someone do this?

#4) Please confirm/dispute my interpretation of the elementForDefault
and the attributeFormDefault: all these say is that I do not have to qualify
elements in the document but they are still implicitly part of the
default namespace for that document (and hence would be subject to the
appropriate validations).

If this is all just bad form, so be it (and I may have a chance to
get it fixed) but if there are plausible reasons for why one would
do things this way I sure would like to hear about them.

Thanks,

Charlie Fineman

Jul 20 '05 #1
2 9868
Charles Fineman <cf**************@yahoo.com> writes:
--------Exhibit A: The start of a response message schema-----------

<xsd:schema targetNamespace="http://www.QQQ.com"
xmlns:QQQ="http://www.QQQ.com/datatypes"
xmlns="http://www.QQQ.com"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
elementFormDefault="unqualified">

<xsd:import namespace="http://www.QQQ.com/datatypes"
schemaLocation="../general/datatypes.xsd"/>

<xsd:import namespace="http://www.QQQ.com"
schemaLocation="../general/datatypes.xsd"/>
--------Exhibit B: The start of general/datatypes.xsd --------------

<xsd:schema targetNamespace="http://www.QQQ.com/datatypes"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns="http://www.QQQ.com/datatypes"
elementFormDefault="unqualified"
attributeFormDefault="unqualified">

--------------------------------------------------------------------

#1) Exhibit A seems to be following poor form by using such a generic
targetNamespace (the same one is used for all their top-level schema).
The convention I've seen is that the targetNamespace should be the
public URL of the document.
Odd, perhaps, but it doesn't seem likely to make anything harder, now
or later. On the question of whether a namespace name should be
dereferenceable, large numbers of electrons have been spilt; suffice
to say that both sides of the question can be argued, and are.
#2) Exhibit A defines both the default and QQQ namespace to point to
the same schema (namely, Exhibit B).
Well, not as you have shown it. Exhibit A and Exhibit B each define
their target namespace as their default namespace. Exhibit A binds
the prefix 'QQQ' to the URL "http://www.QQQ.com/datatypes", not to the
default namespace (which is "http://www.QQQ.com").

And (pedantry alert) Exhibit B is, I assume, a document available via
some URI. A namespace is an abstraction named by a URI, and should
not be confused with a document.
#3) The namespace used in the 2nd import of Exhibit A does not match
the targetNamespace of Exhibit B. Why would someone do this?
Good question.

Perhaps they want to test the conformance of the schema processor: as
far as I can tell, the second import statement violates constraint
src-import.1.1 (" If the namespace [attribute] is present [on the
import element], then its actual value must not match the actual value
of the enclosing <schema>'s targetNamespace [attribute]").

As it happens, Xerces J agrees with me: its error message is

[Error] a.xsd:11:38: src-import.1.1: The namespace attribute
'http://www.QQQ.com' of an <import> element information item
must not be the same as the targetNamespace of the schema it
exists in.

To my surprise, XSV doesn't seem to catch this problem and
accepts the schema documents.
#4) Please confirm/dispute my interpretation of the
elementForDefault and the attributeFormDefault: all these say is
that I do not have to qualify elements in the document but they are
still implicitly part of the default namespace for that document
(and hence would be subject to the appropriate validations).


Well, I think you're close but I'm not sure I understand exactly what
you mean.

If the elementFormDefault and attributeFormDefault attributes are both
set to "unqualified", it means that local elements and local
attributes are defined without any namespace affiliation. They will
be referred to in a document instance by unqualified names
(i.e. unprefixed names in an environment without a default namespace),
and occurrences of them in the document instance in the relevant
contexts will be validated against the relevant declarations or
definitions in the schema -- so far, I think this is what you mean by
"I do not have to qualify elements in the document" and by being
"subject to the appropriate validations".

But they are not implicitly, explicitly, or in any other way "in", or
"part of", the target namespace of the schema document. (Or, to be
painfully precise, such a conclusion is not licensed by either the
namespaces Rec or the XML Schema spec.) Their only link to the target
namespace is that they are declared as local to a type defined in the
target namespace.

I hope this helps.

-C. M. Sperberg-McQueen

Jul 20 '05 #2
Thanks for the response... only just now noticed it :-)

C. M. Sperberg-McQueen wrote:
Charles Fineman <cf**************@yahoo.com> writes:

--------Exhibit A: The start of a response message schema-----------

<xsd:schema targetNamespace="http://www.QQQ.com"
xmlns:QQQ="http://www.QQQ.com/datatypes"
xmlns="http://www.QQQ.com"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
elementFormDefault="unqualified">

<xsd:import namespace="http://www.QQQ.com/datatypes"
schemaLocation="../general/datatypes.xsd"/>

<xsd:import namespace="http://www.QQQ.com"
schemaLocation="../general/datatypes.xsd"/>
--------Exhibit B: The start of general/datatypes.xsd --------------

<xsd:schema targetNamespace="http://www.QQQ.com/datatypes"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns="http://www.QQQ.com/datatypes"
elementFormDefault="unqualified"
attributeFormDefault="unqualified">

--------------------------------------------------------------------
#2) Exhibit A defines both the default and QQQ namespace to point to
the same schema (namely, Exhibit B).

Well, not as you have shown it. Exhibit A and Exhibit B each define
their target namespace as their default namespace. Exhibit A binds
the prefix 'QQQ' to the URL "http://www.QQQ.com/datatypes", not to the
default namespace (which is "http://www.QQQ.com").

And (pedantry alert) Exhibit B is, I assume, a document available via
some URI. A namespace is an abstraction named by a URI, and should
not be confused with a document.


Ah but this was the source of my confusion. In this case, they specify
that the document in exhibit B as the definition of both the default and
QQQ namespace. I just don't see the value in doing this.

#4) Please confirm/dispute my interpretation of the
elementForDefault and the attributeFormDefault: all these say is
that I do not have to qualify elements in the document but they are
still implicitly part of the default namespace for that document
(and hence would be subject to the appropriate validations).

Well, I think you're close but I'm not sure I understand exactly what
you mean.

If the elementFormDefault and attributeFormDefault attributes are both
set to "unqualified", it means that local elements and local
attributes are defined without any namespace affiliation. They will
be referred to in a document instance by unqualified names
(i.e. unprefixed names in an environment without a default namespace),
and occurrences of them in the document instance in the relevant
contexts will be validated against the relevant declarations or
definitions in the schema -- so far, I think this is what you mean by
"I do not have to qualify elements in the document" and by being
"subject to the appropriate validations".

But they are not implicitly, explicitly, or in any other way "in", or
"part of", the target namespace of the schema document. (Or, to be
painfully precise, such a conclusion is not licensed by either the
namespaces Rec or the XML Schema spec.) Their only link to the target
namespace is that they are declared as local to a type defined in the
target namespace.


Thanks... the distinction is clear and makes sense. I have questions
about ambiguity rolling around in my head though... what happens in
complex types when sub-elements come from different name spaces. For
example, can we ever run into problems with things like:

<a:A>
<b:B>
<c:C>
<value> ... </value>
</c:C>
</b:B>
</a:A>

If value is declared in multiple namespaces?

Thanks again for the response.

Jul 20 '05 #3

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

Similar topics

9
by: Paul Rubin | last post by:
That's what the Python style guides advise. They don't seem to like def frob(x): import re if re.search('sdfxyz', x): ... instead preferring that you pollute your module's global namespace...
1
by: kevin bailey | last post by:
hi there, i'm reading up on schema - but am probably missing something obvious RE targetnamespace i know there can only be one... is it that the elements which are defined in the schema...
0
by: comic_rage | last post by:
Hi, I am trying to add the targetNamespace with the xmlns to my xml schema file, but I am getting the following <?xml version="1.0" encoding="utf-8"?> <xsd:schema...
1
by: Maansi Sanghi | last post by:
Hello, I am trying to write an xsd file using .NET System.Xml.Sxhema Class Library. (1) I get an error while writitng if the XSD has a taregetnamespace. (II) for any xsd with no...
5
by: Jeff | last post by:
We are using .Net and the wsdl Utility to generate proxies to consume web services built using the BEA toolset. The data architects on the BEA side create XML schemas with various entities in...
11
by: Connelly Barnes | last post by:
Hi, I wrote the 'autoimp' module , which allows you to import lazy modules: from autoimp import * (Import lazy wrapper objects around all modules; "lazy modules" will turn into normal...
3
by: rplzqx402 | last post by:
Hello, I have a problem where I need to set up two separate Python projects that each live under the same package. Once they are distributed, they will live under the same filesystem path, but...
10
by: iu2 | last post by:
Hi all I've got three files: file a1.py: ======== the_number = None file a2.py: ========
5
by: Stef Mientki | last post by:
hello, The import statement "import sqlite3" gives the error given below. In simple programs, the import statement (sometimes) succeed, and I can indeed access the database. So I guess there is...
0
jalbright99669
by: jalbright99669 | last post by:
Am having a bit of a time with URL Rewrite. I need to incorporate http to https redirect with a reverse proxy. I have the URL Rewrite rules made but the http to https rule only works for...
0
by: antdb | last post by:
Ⅰ. Advantage of AntDB: hyper-convergence + streaming processing engine In the overall architecture, a new "hyper-convergence" concept was proposed, which integrated multiple engines and...
0
by: Matthew3360 | last post by:
Hi there. I have been struggling to find out how to use a variable as my location in my header redirect function. Here is my code. header("Location:".$urlback); Is this the right layout the...
0
by: AndyPSV | last post by:
HOW CAN I CREATE AN AI with an .executable file that would suck all files in the folder and on my computerHOW CAN I CREATE AN AI with an .executable file that would suck all files in the folder and...
0
by: Arjunsri | last post by:
I have a Redshift database that I need to use as an import data source. I have configured the DSN connection using the server, port, database, and credentials and received a successful connection...
0
hi
by: WisdomUfot | last post by:
It's an interesting question you've got about how Gmail hides the HTTP referrer when a link in an email is clicked. While I don't have the specific technical details, Gmail likely implements measures...
0
by: Matthew3360 | last post by:
Hi, I have been trying to connect to a local host using php curl. But I am finding it hard to do this. I am doing the curl get request from my web server and have made sure to enable curl. I get a...
0
by: Carina712 | last post by:
Setting background colors for Excel documents can help to improve the visual appeal of the document and make it easier to read and understand. Background colors can be used to highlight important...
0
BLUEPANDA
by: BLUEPANDA | last post by:
At BluePanda Dev, we're passionate about building high-quality software and sharing our knowledge with the community. That's why we've created a SaaS starter kit that's not only easy to use but also...

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.