Subjects
Home
VOTE Move XML Commons to Xerces
Commented: (XERCESJ 589) Bug with pattern restriction on long strings
: Xerces J 2 8 1 Release on Wednesday, September 13th
: Xerces J 2 9 0 Release on Wednesday, November 22nd
Commented: (XERCESJ 1066) Restriction+choice+substitutionGroup error
Commented: (XERCESJ 1178) Error getting prefix for an attribute with no n
Updated: (XERCESJ 1244) XMLSchemaValidator does not contribute element 's
Some consideration about the xerces DOM implementation
Updated: (XERCESJ 1066) Restriction+choice+substitutionGroup error
Commented: (XERCESJ 1227) Poor performance / OutOfMemoryError for sequenc
retain exception stack traces
Updated: (XERCESJ 1193) NPE or hang when parsing using the "continue afte
Future of NekoHTML
Commented: (XERCESJ 1203) NPE in XMLDTDProcessor
DOM Level 3 APIs for Xalan J and a new Xalan release (2 7 1)
: xml commons external 1 3 04 Release on Wednesday, November 22nd
Commented: (XERCESJ 1247) Incorrect location information on SAX when usin
XInclude exceptions how to mirror Xerces J functionality into Xerces C++?
First proposal on SoC project "Add support for the StAX (JSR 173) cursor API
: xml commons resolver 1 2 Release on Wednesday, November 22nd
Typo in RangeToken java Please check
Validator features
java lang ClassCastException when adopting Node
using the org apache xerces impl xs identity package
Updated: (XERCESJ 1257) buffer overflow in UTF8Reader for characters out
Problem with ref attributes and schema validation
Updated: (XERCESJ 122) XMLSchemaValidator does not contribute element 's d
Performance problem under load Xerces with Weblogic 9 x
remove ignored memory allocation
Commented: (XERCESJ 1177) SAXXMLStreamReader doesn 't always report namesp
Commented: (XERCESJ 977) Null pointer exception during DOM parsing
Commented: (XERCESJ 1197) Code cleanup for org apache xml serialize
Commented: (XERCESJ 1201) Initial contribution for StAX Event API
Updated: (XERCESJ 1061) Regex "$ " and "^ " characters treated as special c
Commented: (XERCESJ 1199) SAXXMLStreamReader should attempt to register a
Commented: (XERCESJ 1061) Regex "$ " and "^ " characters treated as special
Updated: (XERCESJ 589) Bug with pattern restriction on long strings
StackOverflow
xerces Range unnecessarily not garbage collectable if not detached
Updated: (XERCESJ 1178) Error getting prefix for an attribute with no nam
Bug in xs:redefine
Commented: (XERCESJ 1204) Can not set XMLEntityResolver for LSParser
Updated: (XERCESJ 1253) Prototype for SoC2007 project "Add support for th
Updated: (XERCESJ 1259) Add SteamFilter Function to SoC2007 project "Add
Assigned: (XERCESJ 444) SAXException thrown by EntityResolver is reported
Google Summer of Code 2007
Xerces J and XInclude relative path issue
Assigned: (XERCESJ 206) Stack overflow when using a schema validation
Commented: (XERCESJ 1215) Restrictions involving two levels of substituti
Closed: (XERCESJ 1203) NPE in XMLDTDProcessor
non overriding equals methoda
Resolved: (XERCESJ 1079) invalid value returned for TOTALDIGITS facet in
Xerces AS3 port
Updated: (XERCESJ 325) Regular Expression; Pattern "| " clause order de
Updated: (XERCESJ 1196) Javadoc generation fails on Java SE 5 0
Closed: (XERCESJ 1202) DTD validation on XIncluded documents when the sch
Created: (XERCESJ 1124) Nonspecific schema error message
a bug in xerces
Updated: (XERCESJ 1201) Initial contribution for StAX Event API
Closed: (XERCESJ 1254) Empty uris in targetNamespace attribute not report
Links
Home
Oracle database error code
 
Search:  
Power your search with and, or, +, -, or "some phrase" operators.
Bug in parser?

Bug in parser?

2003-05-30       - By Jacob Kjome
Reply:     1     2     3     4     5     6     7  


I can tell you exactly why it didn't find
it.  getClass().getResourceAsStream("test.xml") looks for the test.xml file
in the same package as your class exists and nowhere else.  If you want to
find test.xml in the root of the classpath, then do either
getClass().getResourceAsStream("/test.xml") or
getClass().getClassLoader().getResourceAsStream("test.xml")

Jake

At 01:46 PM 5/29/2003 -0700, you wrote:
>Thank you that was the issue.  Although I'm not sure
>why getClass().getResourceAsStream(testDoc); was not
>able to find a file that was present in the
>/WEB-INF/classes directory!  Changing the servlet
>initialization code to
>context.getResourceAsStream("/WEB-INF/classes/" +
>testDoc); worked!
>
>Thanks again,
>Jon
>
>--- Michael Rafael Glavassevich
><mrglavas@(protected)> wrote:
> > Hi Jon,
> >
> > You might want to check if you're passing in a
> > non-null InputStream. I
> > believe getResourceAsStream (unless your class was
> > loaded by some custom
> > ClassLoader), searches the classpath for the
> > resource you want, so if
> > you've only have jars in your classpath, I doubt it
> > would search in the
> > file system.
> >
> > -----------------------------------------
> > Michael Glavassevich
> > mrglavas@(protected)
> > Candidate for Bachelor of Applied Science
> > Computer Engineering
> > University of Waterloo
> >
> > On Tue, 27 May 2003, Jon Wilmoth wrote:
> >
> > > I've tried simplifying the test by attempting to
> > parse
> > > a document without a dtd reference.
> > >
> > > <?xml version="1.0"?>
> > > <test>sample</test>
> > >
> > > The java code I use, which still results in an
> > > exception is:
> > >
> > > log.debug("TRYING TO PARSE SIMPLE DOCUMENT...");
> > > SAXBuilder builder = new SAXBuilder(false);
> > > builder.setIgnoringElementContentWhitespace(true);
> > >
> >
>builder.setFeature("http://xml.org/sax/features/validation",
> > > false);
> > >
> > > String testDoc = "test.xml";
> > > try {
> > >     Document doc =
> > >
> >
>builder.build(getClass().getResourceAsStream(testDoc));
> > >
> > >     //I never get here!
> > >     log.debug("Successfully parsed test
> > document!");
> > >
> > > } catch (JDOMException jdome) {
> > >     Throwable root = jdome.getCause();
> > >     if (root != null) {
> > >         log.error("Root cause:" +
> > root.getMessage());
> > >     }
> > >     log.error("Failed to parse " + testDoc + "
> > file",
> > > root);
> > > }
> > >
> > >
> > > --- Michael Rafael Glavassevich
> > > <mrglavas@(protected)> wrote:
> > > > Hi Jon,
> > > >
> > > > It would be great if you posted a snippet of
> > code
> > > > before and including
> > > > the invocation of SAXBuilder.build, in order to
> > > > diagnose your problem. It
> > > > seems that there is something wrong with the
> > > > location specified for your
> > > > XML file (either an invalid URI, or java.net.URL
> > > > doesn't recognize the
> > > > protocol/scheme of the URI). In either case,
> > Xerces
> > > > is unable to read
> > > > your file.
> > > >
> > > > As a separate issue, I noticed that the system
> > ID
> > > > that you specified for
> > > > your DTD is not a valid URI. It should be
> > > >
> > "file:///C:/temp/projects/EventRegistrations.dtd"
> > > > instead of
> > > >
> > "file:///C:\temp\projects\EventRegistrations.dtd"
> > > > ('\' isn't a valid URI
> > > > character). Xerces (by default) will fix up the
> > > > system ID before it's
> > > > used. However, if you want your documents to be
> > > > portable across different
> > > > XML parsers, then you need to make sure that
> > URIs
> > > > you specify actually
> > > > meet the URI spec.
> > > >
> > > > Hope that helps.
> > > >
> > > > -----------------------------------------
> > > > Michael Glavassevich
> > > > mrglavas@(protected)
> > > > Candidate for Bachelor of Applied Science
> > > > Computer Engineering
> > > > University of Waterloo
> > > >
> > > > On Sat, 24 May 2003, Jon Wilmoth wrote:
> > > >
> > > > > I'm trying to parse a very simple xml document
> > > > with
> > > > > xerces 2.4.0.  Unfortunately I get the
> > following
> > > > > error:
> > > > >
> > > > > java.net.MalformedURLException
> > > > >         at java.net.URL.<init>(URL.java:613)
> > > > >         at java.net.URL.<init>(URL.java:476)
> > > > >         at java.net.URL.<init>(URL.java:425)
> > > > >         at
> > > > >
> > > >
> > >
> >
>org.apache.xerces.impl.XMLEntityManager.setupCurrentEntity(Unknown
> > > > > Source)
> > > > >         at
> > > > >
> > > >
> > >
> >
>org.apache.xerces.impl.XMLVersionDetector.determineDocVersion(Unknown
> > > > > Source)
> > > > >         at
> > > > >
> > > >
> > >
> >
>org.apache.xerces.parsers.XML11Configuration.parse(Unknown
> > > > > Source)
> > > > >         at
> > > > >
> > > >
> > >
> >
>org.apache.xerces.parsers.DTDConfiguration.parse(Unknown
> > > > > Source)
> > > > >         at
> > > > >
> > org.apache.xerces.parsers.XMLParser.parse(Unknown
> > > > > Source)
> > > > >         at
> > > > >
> > > >
> > >
> >
>org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown
> > > > > Source)
> > > > >         at
> > > > >
> > > >
> > org.jdom.input.SAXBuilder.build(SAXBuilder.java:354)
> > > > >         at
> > > > >
> > > >
> > org.jdom.input.SAXBuilder.build(SAXBuilder.java:673)
> > > > >
> > > > > The document:
> > > > > <?xml version="1.0"?>
> > > > > <!DOCTYPE EventRegistrations SYSTEM
> > > > >
> > "file:///C:\temp\projects\EventRegistrations.dtd">
> > > > > <EventRegistrations>
> > > > >         <event
> > > > name="test.events.BusinessObjectChangeEvent">
> > > > >
> > <listener>test.ObjectCreationListener</listener>
> > > > >         </event>
> > > > > </EventRegistrations>
> > > > >
> > > > > Passes validation in my xml editor.  What's
> > going
> > > > on?
> > > > >
> > >
> > > __________________________________
> > > Do you Yahoo!?
> > > The New Yahoo! Search - Faster. Easier. Bingo.
> > > http://search.yahoo.com
> > >
> > >
> >
>---------------------------------------------------------------------
> > > To unsubscribe, e-mail:
> > xerces-j-user-unsubscribe@(protected)
> > > For additional commands, e-mail:
> > xerces-j-user-help@(protected)
> > >
> >
> >
>---------------------------------------------------------------------
> > To unsubscribe, e-mail:
> > xerces-j-user-unsubscribe@(protected)
> > For additional commands, e-mail:
> > xerces-j-user-help@(protected)
> >
>
>
>__________________________________
>Do you Yahoo!?
>Yahoo! Calendar - Free online calendar with sync to Outlook(TM).
>http://calendar.yahoo.com
>
>---------------------------------------------------------------------
>To unsubscribe, e-mail: xerces-j-user-unsubscribe@(protected)
>For additional commands, e-mail: xerces-j-user-help@(protected)

<html>
<body>
<font size=3><br>
I can tell you exactly why it didn't find it.&nbsp;
getClass().getResourceAsStream(&quot;test.xml&quot;) looks for the
test.xml file in the same package as your class exists and nowhere
else.&nbsp; If you want to find test.xml in the root of the classpath,
then do either getClass().getResourceAsStream(&quot;/test.xml&quot;) or
getClass().getClassLoader().getResourceAsStream(&quot;test.xml&quot;)<br><br>
Jake<br><br>
At 01:46 PM 5/29/2003 -0700, you wrote:<br>
<blockquote type=cite class=cite cite>Thank you that was the issue.&nbsp;
Although I'm not sure<br>
why getClass().getResourceAsStream(testDoc); was not<br>
able to find a file that was present in the<br>
/WEB-INF/classes directory!&nbsp; Changing the servlet<br>
initialization code to<br>
context.getResourceAsStream(&quot;/WEB-INF/classes/&quot; +<br>
testDoc); worked!<br><br>
Thanks again,<br>
Jon<br><br>
--- Michael Rafael Glavassevich<br>
&lt;mrglavas@(protected)&gt; wrote:<br>
&gt; Hi Jon,<br>
&gt; <br>
&gt; You might want to check if you're passing in a<br>
&gt; non-null InputStream. I<br>
&gt; believe getResourceAsStream (unless your class was<br>
&gt; loaded by some custom<br>
&gt; ClassLoader), searches the classpath for the<br>
&gt; resource you want, so if<br>
&gt; you've only have jars in your classpath, I doubt it<br>
&gt; would search in the<br>
&gt; file system.<br>
&gt; <br>
&gt; -----------------------------------------<br>
&gt; Michael Glavassevich<br>
&gt; mrglavas@(protected)<br>
&gt; Candidate for Bachelor of Applied Science<br>
&gt; Computer Engineering<br>
&gt; University of Waterloo<br>
&gt; <br>
&gt; On Tue, 27 May 2003, Jon Wilmoth wrote:<br>
&gt; <br>
&gt; &gt; I've tried simplifying the test by attempting to<br>
&gt; parse<br>
&gt; &gt; a document without a dtd reference.<br>
&gt; &gt;<br>
&gt; &gt; &lt;?xml version=&quot;1.0&quot;?&gt;<br>
&gt; &gt; &lt;test&gt;sample&lt;/test&gt;<br>
&gt; &gt;<br>
&gt; &gt; The java code I use, which still results in an<br>
&gt; &gt; exception is:<br>
&gt; &gt;<br>
&gt; &gt; log.debug(&quot;TRYING TO PARSE SIMPLE
DOCUMENT...&quot;);<br>
&gt; &gt; SAXBuilder builder = new SAXBuilder(false);<br>
&gt; &gt; builder.setIgnoringElementContentWhitespace(true);<br>
&gt; &gt;<br>
&gt;<br>
builder.setFeature(&quot;<a href="http://xml.org/sax/features/validation"
eudora="autourl">http://xml.org/sax/features/validation</a>&quot;,<br>
&gt; &gt; false);<br>
&gt; &gt;<br>
&gt; &gt; String testDoc = &quot;test.xml&quot;;<br>
&gt; &gt; try {<br>
&gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp; Document doc =<br>
&gt; &gt;<br>
&gt;<br>
builder.build(getClass().getResourceAsStream(testDoc));<br>
&gt; &gt;<br>
&gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp; //I never get here!<br>
&gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp; log.debug(&quot;Successfully parsed
test<br>
&gt; document!&quot;);<br>
&gt; &gt;<br>
&gt; &gt; } catch (JDOMException jdome) {<br>
&gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp; Throwable root =
jdome.getCause();<br>
&gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp; if (root != null) {<br>
&gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
log.error(&quot;Root cause:&quot; +<br>
&gt; root.getMessage());<br>
&gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp; }<br>
&gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp; log.error(&quot;Failed to parse &quot;
+ testDoc + &quot;<br>
&gt; file&quot;,<br>
&gt; &gt; root);<br>
&gt; &gt; }<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt; --- Michael Rafael Glavassevich<br>
&gt; &gt; &lt;mrglavas@(protected)&gt; wrote:<br>
&gt; &gt; &gt; Hi Jon,<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt; It would be great if you posted a snippet of<br>
&gt; code<br>
&gt; &gt; &gt; before and including<br>
&gt; &gt; &gt; the invocation of SAXBuilder.build, in order to<br>
&gt; &gt; &gt; diagnose your problem. It<br>
&gt; &gt; &gt; seems that there is something wrong with the<br>
&gt; &gt; &gt; location specified for your<br>
&gt; &gt; &gt; XML file (either an invalid URI, or java.net.URL<br>
&gt; &gt; &gt; doesn't recognize the<br>
&gt; &gt; &gt; protocol/scheme of the URI). In either case,<br>
&gt; Xerces<br>
&gt; &gt; &gt; is unable to read<br>
&gt; &gt; &gt; your file.<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt; As a separate issue, I noticed that the system<br>
&gt; ID<br>
&gt; &gt; &gt; that you specified for<br>
&gt; &gt; &gt; your DTD is not a valid URI. It should be<br>
&gt; &gt; &gt;<br>
&gt;
&quot;<a href="file://C:\temp\projects\EventRegistrations.dtd" eudora="autourl"
>file:///C:/temp/projects/EventRegistrations.dtd</a>&quot;<br>
&gt; &gt; &gt; instead of<br>
&gt; &gt; &gt;<br>
&gt;
&quot;<a href="file://C:\temp\projects\EventRegistrations.dtd" eudora="autourl"
>file:///C:\temp\projects\EventRegistrations.dtd</a>&quot;<br>
&gt; &gt; &gt; ('\' isn't a valid URI<br>
&gt; &gt; &gt; character). Xerces (by default) will fix up the<br>
&gt; &gt; &gt; system ID before it's<br>
&gt; &gt; &gt; used. However, if you want your documents to be<br>
&gt; &gt; &gt; portable across different<br>
&gt; &gt; &gt; XML parsers, then you need to make sure that<br>
&gt; URIs<br>
&gt; &gt; &gt; you specify actually<br>
&gt; &gt; &gt; meet the URI spec.<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt; Hope that helps.<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt; -----------------------------------------<br>
&gt; &gt; &gt; Michael Glavassevich<br>
&gt; &gt; &gt; mrglavas@(protected)<br>
&gt; &gt; &gt; Candidate for Bachelor of Applied Science<br>
&gt; &gt; &gt; Computer Engineering<br>
&gt; &gt; &gt; University of Waterloo<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt; On Sat, 24 May 2003, Jon Wilmoth wrote:<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; I'm trying to parse a very simple xml document<br>
&gt; &gt; &gt; with<br>
&gt; &gt; &gt; &gt; xerces 2.4.0.&nbsp; Unfortunately I get the<br>
&gt; following<br>
&gt; &gt; &gt; &gt; error:<br>
&gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; java.net.MalformedURLException<br>
&gt; &gt; &gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; at
java.net.URL.&lt;init&gt;(URL.java:613)<br>
&gt; &gt; &gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; at
java.net.URL.&lt;init&gt;(URL.java:476)<br>
&gt; &gt; &gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; at
java.net.URL.&lt;init&gt;(URL.java:425)<br>
&gt; &gt; &gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
at<br>
&gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt;<br>
&gt; &gt;<br>
&gt;<br>
org.apache.xerces.impl.XMLEntityManager.setupCurrentEntity(Unknown<br>
&gt; &gt; &gt; &gt; Source)<br>
&gt; &gt; &gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
at<br>
&gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt;<br>
&gt; &gt;<br>
&gt;<br>
org.apache.xerces.impl.XMLVersionDetector.determineDocVersion(Unknown<br>
&gt; &gt; &gt; &gt; Source)<br>
&gt; &gt; &gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
at<br>
&gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt;<br>
&gt; &gt;<br>
&gt;<br>
org.apache.xerces.parsers.XML11Configuration.parse(Unknown<br>
&gt; &gt; &gt; &gt; Source)<br>
&gt; &gt; &gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
at<br>
&gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt;<br>
&gt; &gt;<br>
&gt;<br>
org.apache.xerces.parsers.DTDConfiguration.parse(Unknown<br>
&gt; &gt; &gt; &gt; Source)<br>
&gt; &gt; &gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
at<br>
&gt; &gt; &gt; &gt;<br>
&gt; org.apache.xerces.parsers.XMLParser.parse(Unknown<br>
&gt; &gt; &gt; &gt; Source)<br>
&gt; &gt; &gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
at<br>
&gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt;<br>
&gt; &gt;<br>
&gt;<br>
org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown<br>
&gt; &gt; &gt; &gt; Source)<br>
&gt; &gt; &gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
at<br>
&gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt;<br>
&gt; org.jdom.input.SAXBuilder.build(SAXBuilder.java:354)<br>
&gt; &gt; &gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
at<br>
&gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt;<br>
&gt; org.jdom.input.SAXBuilder.build(SAXBuilder.java:673)<br>
&gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; The document:<br>
&gt; &gt; &gt; &gt; &lt;?xml version=&quot;1.0&quot;?&gt;<br>
&gt; &gt; &gt; &gt; &lt;!DOCTYPE EventRegistrations SYSTEM<br>
&gt; &gt; &gt; &gt;<br>
&gt;
&quot;<a href="file://C:\temp\projects\EventRegistrations.dtd" eudora="autourl"
>file:///C:\temp\projects\EventRegistrations.dtd</a>&quot;&gt;<br>
&gt; &gt; &gt; &gt; &lt;EventRegistrations&gt;<br>
&gt; &gt; &gt; &gt;
<x-tab>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</x-tab>&lt;event<br>
&gt; &gt; &gt;
name=&quot;test.events.BusinessObjectChangeEvent&quot;&gt;<br>
&gt; &gt; &gt; &gt;
<x-tab>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</x-tab><br>
&gt; &lt;listener&gt;test.ObjectCreationListener&lt;/listener&gt;<br>
&gt; &gt; &gt; &gt;
<x-tab>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</x-tab>&lt;/event&gt;
<br>
&gt; &gt; &gt; &gt; &lt;/EventRegistrations&gt;<br>
&gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; Passes validation in my xml editor.&nbsp;
What's<br>
&gt; going<br>
&gt; &gt; &gt; on?<br>
&gt; &gt; &gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt; __________________________________<br>
&gt; &gt; Do you Yahoo!?<br>
&gt; &gt; The New Yahoo! Search - Faster. Easier. Bingo.<br>
&gt; &gt;
<a href="http://search.yahoo.com/" eudora="autourl">http://search.yahoo.com</a>
<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt;<br>
---------------------------------------------------------------------<br>
&gt; &gt; To unsubscribe, e-mail:<br>
&gt; xerces-j-user-unsubscribe@(protected)<br>
&gt; &gt; For additional commands, e-mail:<br>
&gt; xerces-j-user-help@(protected)<br>
&gt; &gt;<br>
&gt; <br>
&gt;<br>
---------------------------------------------------------------------<br>
&gt; To unsubscribe, e-mail:<br>
&gt; xerces-j-user-unsubscribe@(protected)<br>
&gt; For additional commands, e-mail:<br>
&gt; xerces-j-user-help@(protected)<br>
&gt; <br><br>
<br>
__________________________________<br>
Do you Yahoo!?<br>
Yahoo! Calendar - Free online calendar with sync to Outlook(TM).<br>
<a href="http://calendar.yahoo.com/" eudora="autourl">http://calendar.yahoo.com
</a><br><br>
---------------------------------------------------------------------<br>
To unsubscribe, e-mail: xerces-j-user-unsubscribe@(protected)<br>
For additional commands, e-mail:
xerces-j-user-help@(protected)</font></blockquote></body>
</html>