Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Archived » XML Schema Definition (XSD) » XSD v1.0.2 -- Undesired Messages
XSD v1.0.2 -- Undesired Messages [message #19554] Fri, 02 May 2003 11:11 Go to next message
Eclipse UserFriend
Originally posted by: paechoi.earthlink.net

When I was creating an instance of XML Schema(XS) by using
the org.eclipse.xsd.XSDSchema.setDocument() from the DOM
using the org.w3c.dom.Document interface all seems well
except an unwanted messages as follows:

// ########## The unwanted messages ############
qNamePrefixToNamespaceMap.put(): start
key: [xsd] and value: [http://www.w3.org/2001/XMLSchema]
qNamePrefixToNamespaceMap.put(): start
key: [xs] and value: [http://www.w3.org/2001/XMLSchema]
qNamePrefixToNamespaceMap.put(): start
key: [hfp] and value: [http://www.w3.org/2001/XMLSchema-hasFacetAndProperty]
qNamePrefixToNamespaceMap.put(): start
key: [xs] and value: [http://www.w3.org/2001/XMLSchema]
qNamePrefixToNamespaceMap.put(): start
key: [null] and value: [http://www.w3.org/2001/XMLSchema]
qNamePrefixToNamespaceMap.put(): start
key: [xs] and value: [http://www.w3.org/2001/XMLSchema]
qNamePrefixToNamespaceMap.put(): start
key: [xsi] and value: [http://www.w3.org/2001/XMLSchema-instance]


I think those message came out after the setElement() method
which inherited from the org.eclipse.xsd.XSDConcreteComponent
interface.

What is happening here and how can we turn them off?

Any comments?


Pae
Re: XSD v1.0.2 -- Undesired Messages [message #19691 is a reply to message #19554] Fri, 02 May 2003 12:17 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: merks.ca.ibm.com

Pae,

This looks like some old debugging messages, but I can't reproduce it and I
don't see anything like that in the current code base. What driver does this
happen with?

Pae Choi wrote:

> When I was creating an instance of XML Schema(XS) by using
> the org.eclipse.xsd.XSDSchema.setDocument() from the DOM
> using the org.w3c.dom.Document interface all seems well
> except an unwanted messages as follows:
>
> // ########## The unwanted messages ############
> qNamePrefixToNamespaceMap.put(): start
> key: [xsd] and value: [http://www.w3.org/2001/XMLSchema]
> qNamePrefixToNamespaceMap.put(): start
> key: [xs] and value: [http://www.w3.org/2001/XMLSchema]
> qNamePrefixToNamespaceMap.put(): start
> key: [hfp] and value: [http://www.w3.org/2001/XMLSchema-hasFacetAndProperty]
> qNamePrefixToNamespaceMap.put(): start
> key: [xs] and value: [http://www.w3.org/2001/XMLSchema]
> qNamePrefixToNamespaceMap.put(): start
> key: [null] and value: [http://www.w3.org/2001/XMLSchema]
> qNamePrefixToNamespaceMap.put(): start
> key: [xs] and value: [http://www.w3.org/2001/XMLSchema]
> qNamePrefixToNamespaceMap.put(): start
> key: [xsi] and value: [http://www.w3.org/2001/XMLSchema-instance]
>
> I think those message came out after the setElement() method
> which inherited from the org.eclipse.xsd.XSDConcreteComponent
> interface.
>
> What is happening here and how can we turn them off?
>
> Any comments?
>
> Pae
Re: XSD v1.0.2 -- Undesired Messages [message #19736 is a reply to message #19691] Sat, 03 May 2003 02:50 Go to previous message
Eclipse UserFriend
Originally posted by: paechoi.earthlink.net

Ed,

It's my fault. It is referencing the old version, 1.0.1, in my script.
After I changed that to v1.0.2, the problem is gone. Thank you.

Regards,


Pae


P.S.: Although it seems working with v1.0.2, but breaking the code
when I just tested with v1.1.0. I will have to test it more before I
make any comment on that.


"Ed Merks" <merks@ca.ibm.com> wrote in message
news:3EB261D0.9C3C6F1F@ca.ibm.com...
> Pae,
>
> This looks like some old debugging messages, but I can't reproduce it and
I
> don't see anything like that in the current code base. What driver does
this
> happen with?
>
> Pae Choi wrote:
>
> > When I was creating an instance of XML Schema(XS) by using
> > the org.eclipse.xsd.XSDSchema.setDocument() from the DOM
> > using the org.w3c.dom.Document interface all seems well
> > except an unwanted messages as follows:
> >
> > // ########## The unwanted messages ############
> > qNamePrefixToNamespaceMap.put(): start
> > key: [xsd] and value: [http://www.w3.org/2001/XMLSchema]
> > qNamePrefixToNamespaceMap.put(): start
> > key: [xs] and value: [http://www.w3.org/2001/XMLSchema]
> > qNamePrefixToNamespaceMap.put(): start
> > key: [hfp] and value:
[http://www.w3.org/2001/XMLSchema-hasFacetAndProperty]
> > qNamePrefixToNamespaceMap.put(): start
> > key: [xs] and value: [http://www.w3.org/2001/XMLSchema]
> > qNamePrefixToNamespaceMap.put(): start
> > key: [null] and value: [http://www.w3.org/2001/XMLSchema]
> > qNamePrefixToNamespaceMap.put(): start
> > key: [xs] and value: [http://www.w3.org/2001/XMLSchema]
> > qNamePrefixToNamespaceMap.put(): start
> > key: [xsi] and value: [http://www.w3.org/2001/XMLSchema-instance]
> >
> > I think those message came out after the setElement() method
> > which inherited from the org.eclipse.xsd.XSDConcreteComponent
> > interface.
> >
> > What is happening here and how can we turn them off?
> >
> > Any comments?
> >
> > Pae
>
Re: XSD v1.0.2 -- Undesired Messages [message #569109 is a reply to message #19554] Fri, 02 May 2003 12:17 Go to previous message
Ed Merks is currently offline Ed MerksFriend
Messages: 33142
Registered: July 2009
Senior Member
Pae,

This looks like some old debugging messages, but I can't reproduce it and I
don't see anything like that in the current code base. What driver does this
happen with?

Pae Choi wrote:

> When I was creating an instance of XML Schema(XS) by using
> the org.eclipse.xsd.XSDSchema.setDocument() from the DOM
> using the org.w3c.dom.Document interface all seems well
> except an unwanted messages as follows:
>
> // ########## The unwanted messages ############
> qNamePrefixToNamespaceMap.put(): start
> key: [xsd] and value: [http://www.w3.org/2001/XMLSchema]
> qNamePrefixToNamespaceMap.put(): start
> key: [xs] and value: [http://www.w3.org/2001/XMLSchema]
> qNamePrefixToNamespaceMap.put(): start
> key: [hfp] and value: [http://www.w3.org/2001/XMLSchema-hasFacetAndProperty]
> qNamePrefixToNamespaceMap.put(): start
> key: [xs] and value: [http://www.w3.org/2001/XMLSchema]
> qNamePrefixToNamespaceMap.put(): start
> key: [null] and value: [http://www.w3.org/2001/XMLSchema]
> qNamePrefixToNamespaceMap.put(): start
> key: [xs] and value: [http://www.w3.org/2001/XMLSchema]
> qNamePrefixToNamespaceMap.put(): start
> key: [xsi] and value: [http://www.w3.org/2001/XMLSchema-instance]
>
> I think those message came out after the setElement() method
> which inherited from the org.eclipse.xsd.XSDConcreteComponent
> interface.
>
> What is happening here and how can we turn them off?
>
> Any comments?
>
> Pae


Ed Merks
Professional Support: https://www.macromodeling.com/
Re: XSD v1.0.2 -- Undesired Messages [message #569159 is a reply to message #19691] Sat, 03 May 2003 02:50 Go to previous message
Eclipse UserFriend
Originally posted by: paechoi.earthlink.net

Ed,

It's my fault. It is referencing the old version, 1.0.1, in my script.
After I changed that to v1.0.2, the problem is gone. Thank you.

Regards,


Pae


P.S.: Although it seems working with v1.0.2, but breaking the code
when I just tested with v1.1.0. I will have to test it more before I
make any comment on that.


"Ed Merks" <merks@ca.ibm.com> wrote in message
news:3EB261D0.9C3C6F1F@ca.ibm.com...
> Pae,
>
> This looks like some old debugging messages, but I can't reproduce it and
I
> don't see anything like that in the current code base. What driver does
this
> happen with?
>
> Pae Choi wrote:
>
> > When I was creating an instance of XML Schema(XS) by using
> > the org.eclipse.xsd.XSDSchema.setDocument() from the DOM
> > using the org.w3c.dom.Document interface all seems well
> > except an unwanted messages as follows:
> >
> > // ########## The unwanted messages ############
> > qNamePrefixToNamespaceMap.put(): start
> > key: [xsd] and value: [http://www.w3.org/2001/XMLSchema]
> > qNamePrefixToNamespaceMap.put(): start
> > key: [xs] and value: [http://www.w3.org/2001/XMLSchema]
> > qNamePrefixToNamespaceMap.put(): start
> > key: [hfp] and value:
[http://www.w3.org/2001/XMLSchema-hasFacetAndProperty]
> > qNamePrefixToNamespaceMap.put(): start
> > key: [xs] and value: [http://www.w3.org/2001/XMLSchema]
> > qNamePrefixToNamespaceMap.put(): start
> > key: [null] and value: [http://www.w3.org/2001/XMLSchema]
> > qNamePrefixToNamespaceMap.put(): start
> > key: [xs] and value: [http://www.w3.org/2001/XMLSchema]
> > qNamePrefixToNamespaceMap.put(): start
> > key: [xsi] and value: [http://www.w3.org/2001/XMLSchema-instance]
> >
> > I think those message came out after the setElement() method
> > which inherited from the org.eclipse.xsd.XSDConcreteComponent
> > interface.
> >
> > What is happening here and how can we turn them off?
> >
> > Any comments?
> >
> > Pae
>
Previous Topic:XSD and XPath
Next Topic:Cannot run XSDFindTypesMissingFacets in V1.1.0
Goto Forum:
  


Current Time: Fri Apr 26 17:07:39 GMT 2024

Powered by FUDForum. Page generated in 0.03642 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top