[xmlc] Re: Re: Re: Re: Issues with XMLC 2.3.2

Sasa Bojanic <[email protected]> Thu, 24 Mar 2011 22:41:23 +0100
Newsgroups gmane.comp.java.enhydra.xmlc
Message-ID <[email protected]>
This is a multi-part message in MIME format.
--------------040408060503030308090905
Content-Type: multipart/alternative;
 boundary="------------010605070601030103020800"


--------------010605070601030103020800
Content-Type: text/plain; charset=ISO-8859-1; format=flowed
Content-Transfer-Encoding: 7bit

Hi,

from what I can see in Enhydra code, XMLCDeferredParsingFactory is 
obtained by calling its constructor:

       xmlcFactory = new 
XMLCDeferredParsingFactory(StandardDocumentLoader.getInstance(),
                                                    (MultiClassLoader) 
presentationManager.getAppClassLoader(),
                                                    new 
EnhydraXMLCLogger(logChannel));

First of all let me show you an error that occurs when XMLC is in the 
application classloader. The error is in the attached document...

I use Tomcat 6.0.29, Java 1.6_23, Win7 x64, and all the JARs you've 
mentioned are in this case in the application's WEB-INF\lib folder.

If you notice, the XMLC is reporting to search for:

d:\apache-tomcat-6.0.29\webapps\discRack\WEB-INF\lib\*discRack.jardiscRack*\presentation\ErrorHTML.xmlc

When I "patch" XMLC as described before, this scenario works well.

Regards,
Sasa.

On 21-Mar-11 00:34, Jacob Kjome wrote:
> Hi Sasa,
>
> I finally made some time to look into the issues you reported.  Interestingly, I'm
> not able to reproduce either issue.  I used Tomcat-6.0.29 standalone, as that's
> the version you used (note that I did not try Enhydra).
>
> To test issue #1, I jar'ed up the classes and markup files and made sure to rename
> the resource dirs so files located there could not be found.  I also renamed the
> WEB-INF/xmlc directory in the demo app to ensure templates could not be loaded via
> the servlet context (allowed for by the custom
> ValidatingDocumentLoader.ValidatingResourceLoader class used in the xmlc tomcat
> demo), thus could only be loaded via the classloader.  I placed the templates jar
> in WEB-INF/lib and ran tomcat.  First I tried loading the Welcome.html page
> (french locale, because that's what I had selected in the tomcat demo), which came
> up fine.  I took a look at the log to see how the file was loaded...
>
> INFO:>>>Parsing DOM for $$XMLC_GENERATED$$.xmlc.demo.Welcome.html from source URL
> jar:file:/D:/dev/XMLC_FORGE_SVN/tags/XMLC_2_3_2/xmlc/examples/tomcat/build/webapps/xmlc/WEB-INF/lib/xmlc-templates.jar!/demo/Welcome_fr.html
>
> ...so, clearly it is being loaded via the classloader... and working fine for me.
>
>
> To test issue #2, I copied the following jars into ${catalina.base}/shared...
>
> jregex.jar
> nekohtml.jar
> resolver.jar
> xercesImpl.jar
> xml-apis.jar
> xmlc-all-runtime.jar
>
> Note that the Tomcat demo has a modified
> ${catalina.base}/conf/catalina.properties, which places the
> ${catalina.base}/shared directory, as well as contained jars, in the common
> loader.  It looks like...
>
> common.loader=${catalina.base}/shared,${catalina.base}/shared/*.jar,${catalina.home}/shared,${catalina.home}/shared/*.jar,${catalina.home}/lib,${catalina.home}/lib/*.jar
>
> This would be no different than putting the jars in ${catalina.home}/lib, but
> avoids having to muck with the contents of the stock Tomcat installation.
>
> Anyway, I left my jar file containing the XMLC classes and templates in
> WEB-INF/lib.  Again I tried loading the Welcome.html page and, again, it came up
> fine.  I looked at the log and the INFO message was the same as above.  I then
> moved the templates jar file to the ${catalina.base}/shared directory and tried it
> again.  The page came up fine and the INFO message looked like...
>
> INFO:>>>Parsing DOM for $$XMLC_GENERATED$$.xmlc.demo.Welcome.html from source URL
> jar:file:/D:/dev/XMLC_FORGE_SVN/tags/XMLC_2_3_2/xmlc/examples/tomcat/build/shared/xmlc-templates.jar!/demo/Welcome_fr.html
>
>
> I'm not sure what to tell you?  It all works fine for me.  Note that my
> environment consists of...
>
> Windows XP sp3
> Java 1.6.0_24
> Tomcat-6.0.29 (standalone run from the command line)
>
>
> Note that I use XMLCContext to obtain the XMLCDeferredParsingFactory.
>
>
> At this point, I can only say that it works for me.  Maybe the it's platform
> differences that are causing issues?  What OS and version of Java do you use?
> What does the original "jar:" URL look like when you run it (prior to having to
> muck with it to get it to work in your environment)?  And please let me know how
> you obtain the XMLCDeferredParsingFactory.
>
>
> Jake
>
>
> On 3/7/2011 1:46 PM, Sasa Bojanic wrote:
>> Well, it is not really a patch, but something that made my use case one
>> working...I agree nowdays it would be reasonable to move XMLC to JDK1.5
>> or even 1.6...
>>
>> Thanks a lot for the quick response!
>>
>> Sasa.
>>
>>
>> On 07-Mar-11 17:13, Jacob Kjome wrote:
>>> I can look into using your patch for #1 (or something like it) for the
>>> next XML release.  I think the primary issue here is that we've
>>> maintained a dependency on JDK1.3, which does not have java.net.URI.
>>> I've tried to maintain this minimum dependency as long as Xerces does
>>> so.  Plus it makes for easy testing because JDK1.3 doesn't add any of
>>> its own XML libraries.  It's easy to dictate the version without
>>> getting buggy JDK1.4 XML behavior.  But I think most of the world has
>>> moved on to JDK1.5+, so maybe XMLC should too at some point?
>>>
>>> I'll have to test #2.  Not sure how quickly I'll be able to get to
>>> this, though.  But I'll try and spend some time this week on it.
>>>
>>> Jake
>>>
>>> On Mon, 07 Mar 2011 13:56:15 +0100
>>>   Sasa Bojanic<[email protected]>  wrote:
>>>> Hi,
>>>>
>>>> I'm trying to upgrade our applications that use XMLC 2.3.1 to the
>>>> newest XMLC version.
>>>> Our applications are deployed both under the Tomcat 6.0.29
>>>> application server and Enhydra application server (based on Tomcat
>>>> 6.0.29).
>>>>
>>>> There are two issues I faced:
>>>>
>>>> 1) when deploying under the Tomcat, XMLC JAR files are placed
>>>> together with the application JAR files into application's
>>>> WEB-INF\lib folder (so application classloader is used to load them).
>>>> In this case, XMLC can't load resources (*.html and *.xmlc files)
>>>> from JAR file. When resources are not in the JAR file but unpacked
>>>> into WEB-INF\classes folder everything works.
>>>>
>>>> After "patching" the method getPathURLFromClasspath() from
>>>> XMLCDeferredParsingFactory to add:
>>>>
>>>>         if (srcURL != null&&  srcURL.toString().indexOf(".jar")>= 0) {
>>>>               try {
>>>>                  String mdurl = srcURL.toString();
>>>>                  srcURL = new URL("jar:"
>>>>                                   + mdurl.substring(0,
>>>> mdurl.indexOf(".jar")) + ".jar!/"
>>>>                                   +
>>>> mdurl.substring(mdurl.indexOf(".jar") + 4));
>>>>               } catch (Exception ex) {
>>>>            }
>>>>         }
>>>>
>>>> after the line:
>>>>
>>>>         URL srcURL = fDynamicClassLoader.getResource(path);
>>>>
>>>> it works fine.
>>>>
>>>> 2) when deploying under Enhydra application server or under Tomcat,
>>>> but instead of putting XMLC JAR files into application's WEB-INF\lib,
>>>> we put it into Tomcat's lib folder, XMLC can't find resources no
>>>> matter if resources are inside JAR file or unpacked, and it can't
>>>> find it even in the case I put application's JAR file into Tomcat's
>>>> lib folder.
>>>>
>>>> Is it a bug in XMLC? Can somebody help?
>>>>
>>>> Regards,
>>>> Sasa.
>>>>


--------------010605070601030103020800
Content-Type: text/html; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <meta content="text/html; charset=ISO-8859-1"
      http-equiv="Content-Type">
  </head>
  <body text="#000000" bgcolor="#ffffff">
    Hi,<br>
    <br>
    from what I can see in Enhydra code, XMLCDeferredParsingFactory&nbsp;is
    obtained by calling its constructor: <br>
    <br>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; xmlcFactory = new
    XMLCDeferredParsingFactory(StandardDocumentLoader.getInstance(),<br>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    (MultiClassLoader) presentationManager.getAppClassLoader(),<br>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; new
    EnhydraXMLCLogger(logChannel));<br>
    <br>
    First of all let me show you an error that occurs when XMLC is in
    the application classloader. The error is in the attached
    document...<br>
    <br>
    I use Tomcat 6.0.29, Java 1.6_23, Win7 x64, and all the JARs you've
    mentioned are in this case in the application's WEB-INF\lib folder.<br>
    <br>
    If you notice, the XMLC is reporting to search for: <br>
    <br>
    d:\apache-tomcat-6.0.29\webapps\discRack\WEB-INF\lib\<b>discRack.jardiscRack</b>\presentation\ErrorHTML.xmlc<br>
    <br>
    When I "patch" XMLC as described before, this scenario works well.<br>
    <br>
    Regards,<br>
    Sasa.<br>
    <br>
    On 21-Mar-11 00:34, Jacob Kjome wrote:
    <blockquote cite="mid:[email protected]" type="cite">
      <pre wrap="">
Hi Sasa,

I finally made some time to look into the issues you reported.  Interestingly, I'm
not able to reproduce either issue.  I used Tomcat-6.0.29 standalone, as that's
the version you used (note that I did not try Enhydra).

To test issue #1, I jar'ed up the classes and markup files and made sure to rename
the resource dirs so files located there could not be found.  I also renamed the
WEB-INF/xmlc directory in the demo app to ensure templates could not be loaded via
the servlet context (allowed for by the custom
ValidatingDocumentLoader.ValidatingResourceLoader class used in the xmlc tomcat
demo), thus could only be loaded via the classloader.  I placed the templates jar
in WEB-INF/lib and ran tomcat.  First I tried loading the Welcome.html page
(french locale, because that's what I had selected in the tomcat demo), which came
up fine.  I took a look at the log to see how the file was loaded...

INFO: &gt;&gt;&gt;Parsing DOM for $$XMLC_GENERATED$$.xmlc.demo.Welcome.html from source URL
<a class="moz-txt-link-freetext" href="jar:file:/D:/dev/XMLC_FORGE_SVN/tags/XMLC_2_3_2/xmlc/examples/tomcat/build/webapps/xmlc/WEB-INF/lib/xmlc-templates.jar!/demo/Welcome_fr.html">jar:file:/D:/dev/XMLC_FORGE_SVN/tags/XMLC_2_3_2/xmlc/examples/tomcat/build/webapps/xmlc/WEB-INF/lib/xmlc-templates.jar!/demo/Welcome_fr.html</a>

...so, clearly it is being loaded via the classloader... and working fine for me.


To test issue #2, I copied the following jars into ${catalina.base}/shared...

jregex.jar
nekohtml.jar
resolver.jar
xercesImpl.jar
xml-apis.jar
xmlc-all-runtime.jar

Note that the Tomcat demo has a modified
${catalina.base}/conf/catalina.properties, which places the
${catalina.base}/shared directory, as well as contained jars, in the common
loader.  It looks like...

common.loader=${catalina.base}/shared,${catalina.base}/shared/*.jar,${catalina.home}/shared,${catalina.home}/shared/*.jar,${catalina.home}/lib,${catalina.home}/lib/*.jar

This would be no different than putting the jars in ${catalina.home}/lib, but
avoids having to muck with the contents of the stock Tomcat installation.

Anyway, I left my jar file containing the XMLC classes and templates in
WEB-INF/lib.  Again I tried loading the Welcome.html page and, again, it came up
fine.  I looked at the log and the INFO message was the same as above.  I then
moved the templates jar file to the ${catalina.base}/shared directory and tried it
again.  The page came up fine and the INFO message looked like...

INFO: &gt;&gt;&gt;Parsing DOM for $$XMLC_GENERATED$$.xmlc.demo.Welcome.html from source URL
<a class="moz-txt-link-freetext" href="jar:file:/D:/dev/XMLC_FORGE_SVN/tags/XMLC_2_3_2/xmlc/examples/tomcat/build/shared/xmlc-templates.jar!/demo/Welcome_fr.html">jar:file:/D:/dev/XMLC_FORGE_SVN/tags/XMLC_2_3_2/xmlc/examples/tomcat/build/shared/xmlc-templates.jar!/demo/Welcome_fr.html</a>


I'm not sure what to tell you?  It all works fine for me.  Note that my
environment consists of...

Windows XP sp3
Java 1.6.0_24
Tomcat-6.0.29 (standalone run from the command line)


Note that I use XMLCContext to obtain the XMLCDeferredParsingFactory.


At this point, I can only say that it works for me.  Maybe the it's platform
differences that are causing issues?  What OS and version of Java do you use?
What does the original "jar:" URL look like when you run it (prior to having to
muck with it to get it to work in your environment)?  And please let me know how
you obtain the XMLCDeferredParsingFactory.


Jake


On 3/7/2011 1:46 PM, Sasa Bojanic wrote:
</pre>
      <blockquote type="cite">
        <pre wrap="">Well, it is not really a patch, but something that made my use case one
working...I agree nowdays it would be reasonable to move XMLC to JDK1.5
or even 1.6...

Thanks a lot for the quick response!

Sasa.


On 07-Mar-11 17:13, Jacob Kjome wrote:
</pre>
        <blockquote type="cite">
          <pre wrap="">I can look into using your patch for #1 (or something like it) for the
next XML release.  I think the primary issue here is that we've
maintained a dependency on JDK1.3, which does not have java.net.URI. 
I've tried to maintain this minimum dependency as long as Xerces does
so.  Plus it makes for easy testing because JDK1.3 doesn't add any of
its own XML libraries.  It's easy to dictate the version without
getting buggy JDK1.4 XML behavior.  But I think most of the world has
moved on to JDK1.5+, so maybe XMLC should too at some point?

I'll have to test #2.  Not sure how quickly I'll be able to get to
this, though.  But I'll try and spend some time this week on it.

Jake

On Mon, 07 Mar 2011 13:56:15 +0100
 Sasa Bojanic <a class="moz-txt-link-rfc2396E" href="mailto:[email protected]">&lt;[email protected]&gt;</a> wrote:
</pre>
          <blockquote type="cite">
            <pre wrap="">Hi,

I'm trying to upgrade our applications that use XMLC 2.3.1 to the
newest XMLC version.
Our applications are deployed both under the Tomcat 6.0.29
application server and Enhydra application server (based on Tomcat
6.0.29).

There are two issues I faced:

1) when deploying under the Tomcat, XMLC JAR files are placed
together with the application JAR files into application's
WEB-INF\lib folder (so application classloader is used to load them).
In this case, XMLC can't load resources (*.html and *.xmlc files)
from JAR file. When resources are not in the JAR file but unpacked
into WEB-INF\classes folder everything works.

After "patching" the method getPathURLFromClasspath() from
XMLCDeferredParsingFactory to add:

       if (srcURL != null &amp;&amp; srcURL.toString().indexOf(".jar") &gt;= 0) {
             try {
                String mdurl = srcURL.toString();
                srcURL = new URL("jar:"
                                 + mdurl.substring(0,
mdurl.indexOf(".jar")) + ".jar!/"
                                 +
mdurl.substring(mdurl.indexOf(".jar") + 4));
             } catch (Exception ex) {
          }
       }

after the line:

       URL srcURL = fDynamicClassLoader.getResource(path);

it works fine.

2) when deploying under Enhydra application server or under Tomcat,
but instead of putting XMLC JAR files into application's WEB-INF\lib,
we put it into Tomcat's lib folder, XMLC can't find resources no
matter if resources are inside JAR file or unpacked, and it can't
find it even in the case I put application's JAR file into Tomcat's
lib folder.

Is it a bug in XMLC? Can somebody help?

Regards,
Sasa.

</pre>
          </blockquote>
          <pre wrap="">
</pre>
        </blockquote>
        <pre wrap="">
</pre>
      </blockquote>
    </blockquote>
    <br>
  </body>
</html>

--------------010605070601030103020800--

--------------040408060503030308090905
Content-Type: text/plain;
 name="xmlcerror.txt"
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment;
 filename="xmlcerror.txt"

2011-03-24 22:26:11,221: ERROR: RID:0: Unhandled Application error in discRack.DiscRack
org.enhydra.xml.xmlc.XMLCError: Couldn't load XMLC class
        at org.enhydra.xml.xmlc.XMLCStdFactory.handleError(XMLCStdFactory.java:79)
        at org.enhydra.xml.xmlc.XMLCStdFactory.create(XMLCStdFactory.java:142)
        at discRack.presentation.ErrorHandler.run(ErrorHandler.java:64)
        at com.lutris.appserver.server.httpPresentation.HttpPresentationManager.runPresentationObj(Unknown Source)
        at com.lutris.appserver.server.httpPresentation.HttpPresentationManager.Run(Unknown Source)
        at com.lutris.appserver.server.httpPresentation.servlet.HttpPresentationServlet.serviceDirect(Unknown Source)
        at com.lutris.appserver.server.httpPresentation.servlet.HttpPresentationServlet.service(Unknown Source)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
        at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
        at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
        at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
        at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
        at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
        at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
        at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
        at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:298)
        at org.apache.coyote.http11.Http11AprProcessor.process(Http11AprProcessor.java:859)
        at org.apache.coyote.http11.Http11AprProtocol$Http11ConnectionHandler.process(Http11AprProtocol.java:579)
        at org.apache.tomcat.util.net.AprEndpoint$Worker.run(AprEndpoint.java:1555)
        at java.lang.Thread.run(Thread.java:662)
Caused by: org.enhydra.xml.xmlc.XMLCRuntimeException: java.lang.reflect.InvocationTargetException
        at org.enhydra.xml.xmlc.deferredparsing.XMLCDeferredParsingFactory.createObject(XMLCDeferredParsingFactory.java:166)
        at org.enhydra.xml.xmlc.deferredparsing.XMLCDeferredParsingFactory.doCreate(XMLCDeferredParsingFactory.java:185)
        at org.enhydra.xml.xmlc.XMLCStdFactory.create(XMLCStdFactory.java:139)
        ... 18 more
Caused by: java.lang.reflect.InvocationTargetException
        at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
        at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
        at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
        at org.enhydra.xml.xmlc.deferredparsing.XMLCDeferredParsingFactory.createObject(XMLCDeferredParsingFactory.java:160)
        ... 20 more
Caused by: org.enhydra.xml.xmlc.XMLCRuntimeException: parse of org.enhydra.xml.io.ClosingInputSource@59566a6c failed
        at org.enhydra.xml.xmlc.deferredparsing.DocumentLoaderImpl.parseDocument(DocumentLoaderImpl.java:426)
        at org.enhydra.xml.xmlc.deferredparsing.DocumentLoaderImpl.getCacheEntry(DocumentLoaderImpl.java:175)
        at org.enhydra.xml.xmlc.deferredparsing.DocumentLoaderImpl.getDocument(DocumentLoaderImpl.java:247)
        at discRack.presentation.ErrorHTML.buildDocument(ErrorHTML.java:104)
        at discRack.presentation.ErrorHTML.<init>(ErrorHTML.java:84)
        at discRack.presentation.ErrorHTML.<init>(ErrorHTML.java:96)
        ... 25 more
Caused by: org.enhydra.xml.xmlc.XMLCException: parse of org.enhydra.xml.io.ClosingInputSource@59566a6c failed
        at org.enhydra.xml.xmlc.commands.options.OptionsParser.parseMetaDataOptionsFile(OptionsParser.java:255)
        at org.enhydra.xml.xmlc.commands.options.OptionsParser.parseMetaDataOptionsFiles(OptionsParser.java:267)
        at org.enhydra.xml.xmlc.commands.options.OptionsParser.parse(OptionsParser.java:331)
        at org.enhydra.xml.xmlc.commands.xmlc.XMLCOptionsParser.parse(XMLCOptionsParser.java:89)
        at org.enhydra.xml.xmlc.deferredparsing.XMLCDeferredParsingFactory.loadMetaData(XMLCDeferredParsingFactory.java:508)
        at org.enhydra.xml.xmlc.deferredparsing.DocumentLoaderImpl.loadMetaData(DocumentLoaderImpl.java:343)
        at org.enhydra.xml.xmlc.deferredparsing.DocumentLoaderImpl.parseDocument(DocumentLoaderImpl.java:401)
        ... 30 more
Caused by: java.io.FileNotFoundException: d:\apache-tomcat-6.0.29\webapps\discRack\WEB-INF\lib\discRack.jardiscRack\presentation\
ErrorHTML.xmlc (The system cannot find the path specified)
        at java.io.FileInputStream.open(Native Method)
        at java.io.FileInputStream.<init>(FileInputStream.java:106)
        at java.io.FileInputStream.<init>(FileInputStream.java:66)
        at sun.net.www.protocol.file.FileURLConnection.connect(FileURLConnection.java:70)
        at sun.net.www.protocol.file.FileURLConnection.getInputStream(FileURLConnection.java:161)
        at org.enhydra.xml.io.InputSourceOps.openSystemId(InputSourceOps.java:65)
        at org.enhydra.xml.io.InputSourceOps.open(InputSourceOps.java:85)
        at org.enhydra.xml.io.InputSourceOps.isXMLDocument(InputSourceOps.java:191)
        at org.enhydra.xml.xmlc.commands.options.OptionsParser.parseMetaDataOptionsFile(OptionsParser.java:249)
        ... 36 more
*** Caused by:
org.enhydra.xml.xmlc.XMLCRuntimeException: java.lang.reflect.InvocationTargetException
        at org.enhydra.xml.xmlc.deferredparsing.XMLCDeferredParsingFactory.createObject(XMLCDeferredParsingFactory.java:166)
        at org.enhydra.xml.xmlc.deferredparsing.XMLCDeferredParsingFactory.doCreate(XMLCDeferredParsingFactory.java:185)
        at org.enhydra.xml.xmlc.XMLCStdFactory.create(XMLCStdFactory.java:139)
        at discRack.presentation.ErrorHandler.run(ErrorHandler.java:64)
        at com.lutris.appserver.server.httpPresentation.HttpPresentationManager.runPresentationObj(Unknown Source)
        at com.lutris.appserver.server.httpPresentation.HttpPresentationManager.Run(Unknown Source)
        at com.lutris.appserver.server.httpPresentation.servlet.HttpPresentationServlet.serviceDirect(Unknown Source)
        at com.lutris.appserver.server.httpPresentation.servlet.HttpPresentationServlet.service(Unknown Source)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
        at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
        at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
        at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
        at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
        at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
        at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
        at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
        at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:298)
        at org.apache.coyote.http11.Http11AprProcessor.process(Http11AprProcessor.java:859)
        at org.apache.coyote.http11.Http11AprProtocol$Http11ConnectionHandler.process(Http11AprProtocol.java:579)
        at org.apache.tomcat.util.net.AprEndpoint$Worker.run(AprEndpoint.java:1555)
        at java.lang.Thread.run(Thread.java:662)
Caused by: java.lang.reflect.InvocationTargetException
        at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
        at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
        at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
        at org.enhydra.xml.xmlc.deferredparsing.XMLCDeferredParsingFactory.createObject(XMLCDeferredParsingFactory.java:160)
        ... 20 more
Caused by: org.enhydra.xml.xmlc.XMLCRuntimeException: parse of org.enhydra.xml.io.ClosingInputSource@59566a6c failed
        at org.enhydra.xml.xmlc.deferredparsing.DocumentLoaderImpl.parseDocument(DocumentLoaderImpl.java:426)
        at org.enhydra.xml.xmlc.deferredparsing.DocumentLoaderImpl.getCacheEntry(DocumentLoaderImpl.java:175)
        at org.enhydra.xml.xmlc.deferredparsing.DocumentLoaderImpl.getDocument(DocumentLoaderImpl.java:247)
        at discRack.presentation.ErrorHTML.buildDocument(ErrorHTML.java:104)
        at discRack.presentation.ErrorHTML.<init>(ErrorHTML.java:84)
        at discRack.presentation.ErrorHTML.<init>(ErrorHTML.java:96)
        ... 25 more
Caused by: org.enhydra.xml.xmlc.XMLCException: parse of org.enhydra.xml.io.ClosingInputSource@59566a6c failed
        at org.enhydra.xml.xmlc.commands.options.OptionsParser.parseMetaDataOptionsFile(OptionsParser.java:255)
        at org.enhydra.xml.xmlc.commands.options.OptionsParser.parseMetaDataOptionsFiles(OptionsParser.java:267)
        at org.enhydra.xml.xmlc.commands.options.OptionsParser.parse(OptionsParser.java:331)
        at org.enhydra.xml.xmlc.commands.xmlc.XMLCOptionsParser.parse(XMLCOptionsParser.java:89)
        at org.enhydra.xml.xmlc.deferredparsing.XMLCDeferredParsingFactory.loadMetaData(XMLCDeferredParsingFactory.java:508)
        at org.enhydra.xml.xmlc.deferredparsing.DocumentLoaderImpl.loadMetaData(DocumentLoaderImpl.java:343)
        at org.enhydra.xml.xmlc.deferredparsing.DocumentLoaderImpl.parseDocument(DocumentLoaderImpl.java:401)
        ... 30 more
Caused by: java.io.FileNotFoundException: d:\apache-tomcat-6.0.29\webapps\discRack\WEB-INF\lib\discRack.jardiscRack\presentation\
ErrorHTML.xmlc (The system cannot find the path specified)
        at java.io.FileInputStream.open(Native Method)
        at java.io.FileInputStream.<init>(FileInputStream.java:106)
        at java.io.FileInputStream.<init>(FileInputStream.java:66)
        at sun.net.www.protocol.file.FileURLConnection.connect(FileURLConnection.java:70)
        at sun.net.www.protocol.file.FileURLConnection.getInputStream(FileURLConnection.java:161)
        at org.enhydra.xml.io.InputSourceOps.openSystemId(InputSourceOps.java:65)
        at org.enhydra.xml.io.InputSourceOps.open(InputSourceOps.java:85)
        at org.enhydra.xml.io.InputSourceOps.isXMLDocument(InputSourceOps.java:191)
        at org.enhydra.xml.xmlc.commands.options.OptionsParser.parseMetaDataOptionsFile(OptionsParser.java:249)
        ... 36 more
*** Caused by:
java.lang.reflect.InvocationTargetException
        at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
        at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
        at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
        at org.enhydra.xml.xmlc.deferredparsing.XMLCDeferredParsingFactory.createObject(XMLCDeferredParsingFactory.java:160)
        at org.enhydra.xml.xmlc.deferredparsing.XMLCDeferredParsingFactory.doCreate(XMLCDeferredParsingFactory.java:185)
        at org.enhydra.xml.xmlc.XMLCStdFactory.create(XMLCStdFactory.java:139)
        at discRack.presentation.ErrorHandler.run(ErrorHandler.java:64)
        at com.lutris.appserver.server.httpPresentation.HttpPresentationManager.runPresentationObj(Unknown Source)
        at com.lutris.appserver.server.httpPresentation.HttpPresentationManager.Run(Unknown Source)
        at com.lutris.appserver.server.httpPresentation.servlet.HttpPresentationServlet.serviceDirect(Unknown Source)
        at com.lutris.appserver.server.httpPresentation.servlet.HttpPresentationServlet.service(Unknown Source)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
        at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
        at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
        at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
        at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
        at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
        at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
        at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
        at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:298)
        at org.apache.coyote.http11.Http11AprProcessor.process(Http11AprProcessor.java:859)
        at org.apache.coyote.http11.Http11AprProtocol$Http11ConnectionHandler.process(Http11AprProtocol.java:579)
        at org.apache.tomcat.util.net.AprEndpoint$Worker.run(AprEndpoint.java:1555)
        at java.lang.Thread.run(Thread.java:662)
Caused by: org.enhydra.xml.xmlc.XMLCRuntimeException: parse of org.enhydra.xml.io.ClosingInputSource@59566a6c failed
        at org.enhydra.xml.xmlc.deferredparsing.DocumentLoaderImpl.parseDocument(DocumentLoaderImpl.java:426)
        at org.enhydra.xml.xmlc.deferredparsing.DocumentLoaderImpl.getCacheEntry(DocumentLoaderImpl.java:175)
        at org.enhydra.xml.xmlc.deferredparsing.DocumentLoaderImpl.getDocument(DocumentLoaderImpl.java:247)
        at discRack.presentation.ErrorHTML.buildDocument(ErrorHTML.java:104)
        at discRack.presentation.ErrorHTML.<init>(ErrorHTML.java:84)
        at discRack.presentation.ErrorHTML.<init>(ErrorHTML.java:96)
        ... 25 more
Caused by: org.enhydra.xml.xmlc.XMLCException: parse of org.enhydra.xml.io.ClosingInputSource@59566a6c failed
        at org.enhydra.xml.xmlc.commands.options.OptionsParser.parseMetaDataOptionsFile(OptionsParser.java:255)
        at org.enhydra.xml.xmlc.commands.options.OptionsParser.parseMetaDataOptionsFiles(OptionsParser.java:267)
        at org.enhydra.xml.xmlc.commands.options.OptionsParser.parse(OptionsParser.java:331)
        at org.enhydra.xml.xmlc.commands.xmlc.XMLCOptionsParser.parse(XMLCOptionsParser.java:89)
        at org.enhydra.xml.xmlc.deferredparsing.XMLCDeferredParsingFactory.loadMetaData(XMLCDeferredParsingFactory.java:508)
        at org.enhydra.xml.xmlc.deferredparsing.DocumentLoaderImpl.loadMetaData(DocumentLoaderImpl.java:343)
        at org.enhydra.xml.xmlc.deferredparsing.DocumentLoaderImpl.parseDocument(DocumentLoaderImpl.java:401)
        ... 30 more
Caused by: java.io.FileNotFoundException: d:\apache-tomcat-6.0.29\webapps\discRack\WEB-INF\lib\discRack.jardiscRack\presentation\
ErrorHTML.xmlc (The system cannot find the path specified)
        at java.io.FileInputStream.open(Native Method)
        at java.io.FileInputStream.<init>(FileInputStream.java:106)
        at java.io.FileInputStream.<init>(FileInputStream.java:66)
        at sun.net.www.protocol.file.FileURLConnection.connect(FileURLConnection.java:70)
        at sun.net.www.protocol.file.FileURLConnection.getInputStream(FileURLConnection.java:161)
        at org.enhydra.xml.io.InputSourceOps.openSystemId(InputSourceOps.java:65)
        at org.enhydra.xml.io.InputSourceOps.open(InputSourceOps.java:85)
        at org.enhydra.xml.io.InputSourceOps.isXMLDocument(InputSourceOps.java:191)
        at org.enhydra.xml.xmlc.commands.options.OptionsParser.parseMetaDataOptionsFile(OptionsParser.java:249)
        ... 36 more
*** Caused by:
org.enhydra.xml.xmlc.XMLCRuntimeException: parse of org.enhydra.xml.io.ClosingInputSource@59566a6c failed
        at org.enhydra.xml.xmlc.deferredparsing.DocumentLoaderImpl.parseDocument(DocumentLoaderImpl.java:426)
        at org.enhydra.xml.xmlc.deferredparsing.DocumentLoaderImpl.getCacheEntry(DocumentLoaderImpl.java:175)
        at org.enhydra.xml.xmlc.deferredparsing.DocumentLoaderImpl.getDocument(DocumentLoaderImpl.java:247)
        at discRack.presentation.ErrorHTML.buildDocument(ErrorHTML.java:104)
        at discRack.presentation.ErrorHTML.<init>(ErrorHTML.java:84)
        at discRack.presentation.ErrorHTML.<init>(ErrorHTML.java:96)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
        at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
        at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
        at org.enhydra.xml.xmlc.deferredparsing.XMLCDeferredParsingFactory.createObject(XMLCDeferredParsingFactory.java:160)
        at org.enhydra.xml.xmlc.deferredparsing.XMLCDeferredParsingFactory.doCreate(XMLCDeferredParsingFactory.java:185)
        at org.enhydra.xml.xmlc.XMLCStdFactory.create(XMLCStdFactory.java:139)
        at discRack.presentation.ErrorHandler.run(ErrorHandler.java:64)
        at com.lutris.appserver.server.httpPresentation.HttpPresentationManager.runPresentationObj(Unknown Source)
        at com.lutris.appserver.server.httpPresentation.HttpPresentationManager.Run(Unknown Source)
        at com.lutris.appserver.server.httpPresentation.servlet.HttpPresentationServlet.serviceDirect(Unknown Source)
        at com.lutris.appserver.server.httpPresentation.servlet.HttpPresentationServlet.service(Unknown Source)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
        at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
        at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
        at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
        at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
        at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
        at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
        at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
        at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:298)
        at org.apache.coyote.http11.Http11AprProcessor.process(Http11AprProcessor.java:859)
        at org.apache.coyote.http11.Http11AprProtocol$Http11ConnectionHandler.process(Http11AprProtocol.java:579)
        at org.apache.tomcat.util.net.AprEndpoint$Worker.run(AprEndpoint.java:1555)
        at java.lang.Thread.run(Thread.java:662)
Caused by: org.enhydra.xml.xmlc.XMLCException: parse of org.enhydra.xml.io.ClosingInputSource@59566a6c failed
        at org.enhydra.xml.xmlc.commands.options.OptionsParser.parseMetaDataOptionsFile(OptionsParser.java:255)
        at org.enhydra.xml.xmlc.commands.options.OptionsParser.parseMetaDataOptionsFiles(OptionsParser.java:267)
        at org.enhydra.xml.xmlc.commands.options.OptionsParser.parse(OptionsParser.java:331)
        at org.enhydra.xml.xmlc.commands.xmlc.XMLCOptionsParser.parse(XMLCOptionsParser.java:89)
        at org.enhydra.xml.xmlc.deferredparsing.XMLCDeferredParsingFactory.loadMetaData(XMLCDeferredParsingFactory.java:508)
        at org.enhydra.xml.xmlc.deferredparsing.DocumentLoaderImpl.loadMetaData(DocumentLoaderImpl.java:343)
        at org.enhydra.xml.xmlc.deferredparsing.DocumentLoaderImpl.parseDocument(DocumentLoaderImpl.java:401)
        ... 30 more
Caused by: java.io.FileNotFoundException: d:\apache-tomcat-6.0.29\webapps\discRack\WEB-INF\lib\discRack.jardiscRack\presentation\
ErrorHTML.xmlc (The system cannot find the path specified)
        at java.io.FileInputStream.open(Native Method)
        at java.io.FileInputStream.<init>(FileInputStream.java:106)
        at java.io.FileInputStream.<init>(FileInputStream.java:66)
        at sun.net.www.protocol.file.FileURLConnection.connect(FileURLConnection.java:70)
        at sun.net.www.protocol.file.FileURLConnection.getInputStream(FileURLConnection.java:161)
        at org.enhydra.xml.io.InputSourceOps.openSystemId(InputSourceOps.java:65)
        at org.enhydra.xml.io.InputSourceOps.open(InputSourceOps.java:85)
        at org.enhydra.xml.io.InputSourceOps.isXMLDocument(InputSourceOps.java:191)
        at org.enhydra.xml.xmlc.commands.options.OptionsParser.parseMetaDataOptionsFile(OptionsParser.java:249)
        ... 36 more
*** Caused by:
org.enhydra.xml.xmlc.XMLCException: parse of org.enhydra.xml.io.ClosingInputSource@59566a6c failed
        at org.enhydra.xml.xmlc.commands.options.OptionsParser.parseMetaDataOptionsFile(OptionsParser.java:255)
        at org.enhydra.xml.xmlc.commands.options.OptionsParser.parseMetaDataOptionsFiles(OptionsParser.java:267)
        at org.enhydra.xml.xmlc.commands.options.OptionsParser.parse(OptionsParser.java:331)
        at org.enhydra.xml.xmlc.commands.xmlc.XMLCOptionsParser.parse(XMLCOptionsParser.java:89)
        at org.enhydra.xml.xmlc.deferredparsing.XMLCDeferredParsingFactory.loadMetaData(XMLCDeferredParsingFactory.java:508)
        at org.enhydra.xml.xmlc.deferredparsing.DocumentLoaderImpl.loadMetaData(DocumentLoaderImpl.java:343)
        at org.enhydra.xml.xmlc.deferredparsing.DocumentLoaderImpl.parseDocument(DocumentLoaderImpl.java:401)
        at org.enhydra.xml.xmlc.deferredparsing.DocumentLoaderImpl.getCacheEntry(DocumentLoaderImpl.java:175)
        at org.enhydra.xml.xmlc.deferredparsing.DocumentLoaderImpl.getDocument(DocumentLoaderImpl.java:247)
        at discRack.presentation.ErrorHTML.buildDocument(ErrorHTML.java:104)
        at discRack.presentation.ErrorHTML.<init>(ErrorHTML.java:84)
        at discRack.presentation.ErrorHTML.<init>(ErrorHTML.java:96)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
        at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
        at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
        at org.enhydra.xml.xmlc.deferredparsing.XMLCDeferredParsingFactory.createObject(XMLCDeferredParsingFactory.java:160)
        at org.enhydra.xml.xmlc.deferredparsing.XMLCDeferredParsingFactory.doCreate(XMLCDeferredParsingFactory.java:185)
        at org.enhydra.xml.xmlc.XMLCStdFactory.create(XMLCStdFactory.java:139)
        at discRack.presentation.ErrorHandler.run(ErrorHandler.java:64)
        at com.lutris.appserver.server.httpPresentation.HttpPresentationManager.runPresentationObj(Unknown Source)
        at com.lutris.appserver.server.httpPresentation.HttpPresentationManager.Run(Unknown Source)
        at com.lutris.appserver.server.httpPresentation.servlet.HttpPresentationServlet.serviceDirect(Unknown Source)
        at com.lutris.appserver.server.httpPresentation.servlet.HttpPresentationServlet.service(Unknown Source)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
        at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
        at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
        at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
        at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
        at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
        at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
        at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
        at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:298)
        at org.apache.coyote.http11.Http11AprProcessor.process(Http11AprProcessor.java:859)
        at org.apache.coyote.http11.Http11AprProtocol$Http11ConnectionHandler.process(Http11AprProtocol.java:579)
        at org.apache.tomcat.util.net.AprEndpoint$Worker.run(AprEndpoint.java:1555)
        at java.lang.Thread.run(Thread.java:662)
Caused by: java.io.FileNotFoundException: d:\apache-tomcat-6.0.29\webapps\discRack\WEB-INF\lib\discRack.jardiscRack\presentation\
ErrorHTML.xmlc (The system cannot find the path specified)
        at java.io.FileInputStream.open(Native Method)
        at java.io.FileInputStream.<init>(FileInputStream.java:106)
        at java.io.FileInputStream.<init>(FileInputStream.java:66)
        at sun.net.www.protocol.file.FileURLConnection.connect(FileURLConnection.java:70)
        at sun.net.www.protocol.file.FileURLConnection.getInputStream(FileURLConnection.java:161)
        at org.enhydra.xml.io.InputSourceOps.openSystemId(InputSourceOps.java:65)
        at org.enhydra.xml.io.InputSourceOps.open(InputSourceOps.java:85)
        at org.enhydra.xml.io.InputSourceOps.isXMLDocument(InputSourceOps.java:191)
        at org.enhydra.xml.xmlc.commands.options.OptionsParser.parseMetaDataOptionsFile(OptionsParser.java:249)
        ... 36 more
*** Caused by:
java.io.FileNotFoundException: d:\apache-tomcat-6.0.29\webapps\discRack\WEB-INF\lib\discRack.jardiscRack\presentation\ErrorHTML.x
mlc (The system cannot find the path specified)
        at java.io.FileInputStream.open(Native Method)
        at java.io.FileInputStream.<init>(FileInputStream.java:106)
        at java.io.FileInputStream.<init>(FileInputStream.java:66)
        at sun.net.www.protocol.file.FileURLConnection.connect(FileURLConnection.java:70)
        at sun.net.www.protocol.file.FileURLConnection.getInputStream(FileURLConnection.java:161)
        at org.enhydra.xml.io.InputSourceOps.openSystemId(InputSourceOps.java:65)
        at org.enhydra.xml.io.InputSourceOps.open(InputSourceOps.java:85)
        at org.enhydra.xml.io.InputSourceOps.isXMLDocument(InputSourceOps.java:191)
        at org.enhydra.xml.xmlc.commands.options.OptionsParser.parseMetaDataOptionsFile(OptionsParser.java:249)
        at org.enhydra.xml.xmlc.commands.options.OptionsParser.parseMetaDataOptionsFiles(OptionsParser.java:267)
        at org.enhydra.xml.xmlc.commands.options.OptionsParser.parse(OptionsParser.java:331)
        at org.enhydra.xml.xmlc.commands.xmlc.XMLCOptionsParser.parse(XMLCOptionsParser.java:89)
        at org.enhydra.xml.xmlc.deferredparsing.XMLCDeferredParsingFactory.loadMetaData(XMLCDeferredParsingFactory.java:508)
        at org.enhydra.xml.xmlc.deferredparsing.DocumentLoaderImpl.loadMetaData(DocumentLoaderImpl.java:343)
        at org.enhydra.xml.xmlc.deferredparsing.DocumentLoaderImpl.parseDocument(DocumentLoaderImpl.java:401)
        at org.enhydra.xml.xmlc.deferredparsing.DocumentLoaderImpl.getCacheEntry(DocumentLoaderImpl.java:175)
        at org.enhydra.xml.xmlc.deferredparsing.DocumentLoaderImpl.getDocument(DocumentLoaderImpl.java:247)
        at discRack.presentation.ErrorHTML.buildDocument(ErrorHTML.java:104)
        at discRack.presentation.ErrorHTML.<init>(ErrorHTML.java:84)
        at discRack.presentation.ErrorHTML.<init>(ErrorHTML.java:96)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
        at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
        at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
        at org.enhydra.xml.xmlc.deferredparsing.XMLCDeferredParsingFactory.createObject(XMLCDeferredParsingFactory.java:160)
        at org.enhydra.xml.xmlc.deferredparsing.XMLCDeferredParsingFactory.doCreate(XMLCDeferredParsingFactory.java:185)
        at org.enhydra.xml.xmlc.XMLCStdFactory.create(XMLCStdFactory.java:139)
        at discRack.presentation.ErrorHandler.run(ErrorHandler.java:64)
        at com.lutris.appserver.server.httpPresentation.HttpPresentationManager.runPresentationObj(Unknown Source)
        at com.lutris.appserver.server.httpPresentation.HttpPresentationManager.Run(Unknown Source)
        at com.lutris.appserver.server.httpPresentation.servlet.HttpPresentationServlet.serviceDirect(Unknown Source)
        at com.lutris.appserver.server.httpPresentation.servlet.HttpPresentationServlet.service(Unknown Source)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
        at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
        at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
        at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
        at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
        at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
        at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
        at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
        at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:298)
        at org.apache.coyote.http11.Http11AprProcessor.process(Http11AprProcessor.java:859)
        at org.apache.coyote.http11.Http11AprProtocol$Http11ConnectionHandler.process(Http11AprProtocol.java:579)
        at org.apache.tomcat.util.net.AprEndpoint$Worker.run(AprEndpoint.java:1555)
        at java.lang.Thread.run(Thread.java:662)

--------------040408060503030308090905
Content-Type: text/plain; charset="UTF-8"; name="message-footer.txt"
Content-Disposition: inline; filename="message-footer.txt"
Content-Transfer-Encoding: quoted-printable


--
You receive this message as a subscriber of the [email protected] mailing list=
.
To unsubscribe: mailto:[email protected]
For general help: mailto:[email protected]?subject=3Dhelp
OW2 mailing lists service home page: http://www.ow2.org/wws

--------------040408060503030308090905--