Hi all,
I'm developing a web client with Struts 1.1, JBuilder 9, and deploying it on WebLogic 8.1, and I have this persistent problem that when the app is deployed/redeployed from JBuilder to WL, it gives me a lot of this same exception:
------------------
<Sep 29, 2003 9:56:04 AM PDT> <Error> <HTTP> <BEA-101224> <[ServletContext(id=19298802,name=donotcall-client,context-path=/donotcall-client)] Cannot l
oad Implicit TLDs
java.lang.ClassNotFoundException: weblogic/apache/xerces/parsers/SAXParser
at org.xml.sax.helpers.XMLReaderFactory.createXMLReader(Unknown Source)
at org.xml.sax.helpers.XMLReaderFactory.createXMLReader(Unknown Source)
at weblogic.servlet.internal.WebAppHelper.addImplicitMap
[trimmed...]
(SlaveDeployer.java:538)
at weblogic.management.deploy.slave.SlaveDeployer.prepareUpdate(SlaveDeployer.java:496)
at weblogic.drs.internal.SlaveCallbackHandler$1.execute(SlaveCallbackHandler.java:25)
at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:178)
at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:151)
------------------
I can't figure out what's wrong because the SAXParser it complains about is in the weblogic.jar.
Any help is appreciated.
mw
-
Problem w/ WL+Struts (1 messages)
- Posted by: John Doe
- Posted on: September 29 2003 13:12 EDT
Threaded Messages (1)
- Problem w/ WL+Struts by prakash dewangan on October 04 2003 14:34 EDT
-
Problem w/ WL+Struts[ Go to top ]
- Posted by: prakash dewangan
- Posted on: October 04 2003 14:34 EDT
- in response to John Doe
it is searching the SAXParser at
weblogic/apache/xerces/parsers/SAXParser
actually it need to search at
org/apache/xerces/parsers/SAXParser
you can check your classpath.
Enjoy
- Prakash