You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@geronimo.apache.org by MShah <mo...@yahoo.com> on 2007/11/13 20:07:10 UTC

web application deployed on weblogic deployed on Geronimo 2.0.1 using myEclipse 6.0.1 GA

I am deployiong a web application deployed and running on weblogic 8.1 on
geronimo - tomcat and when I first deploy the application and access the jsp
page I get the following exception: 


HTTP Status 500 -
--------------------------------------------------------------------------------
type Exception report message description The server encountered an internal
error () that prevented it from fulfilling this request. exception
javax.servlet.ServletException: java.lang.ExceptionInInitializerError
org.apache.jasper.runtime.PageContextImpl.doHandlePageException(PageContextImpl.java:850)
org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:779)
org.apache.jsp.index_jsp._jspService(index_jsp.java:573)
org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
javax.servlet.http.HttpServlet.service(HttpServlet.java:806)
org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:388)
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:320)
org.apache.jasper.servlet.JspServlet.service(JspServlet.java:266)
javax.servlet.http.HttpServlet.service(HttpServlet.java:806) root cause
java.lang.ExceptionInInitializerError
website.prodcat.CatForm.<init>(CatForm.java:25)
website.prodcat.CatHomeForm.<init>(CatHomeForm.java:31)
org.apache.jsp.index_jsp._jspService(index_jsp.java:69)
org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
javax.servlet.http.HttpServlet.service(HttpServlet.java:806)
org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:388)
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:320)
org.apache.jasper.servlet.JspServlet.service(JspServlet.java:266)
javax.servlet.http.HttpServlet.service(HttpServlet.java:806) root cause
java.lang.RuntimeException: System properties file
"C:\geronimo5_2_0_1\bin\.\applications\webteam.properties" could not be
loaded: .\applications\webteam.properties (The system cannot find the path
specified). website.utils.SystemProps.<init>(SystemProps.java:33)
website.utils.SystemProps.getInstance(SystemProps.java:14)
website.utils.MailMgr.<clinit>(MailMgr.java:45)
website.prodcat.CatForm.<init>(CatForm.java:25)
website.prodcat.CatHomeForm.<init>(CatHomeForm.java:31)
org.apache.jsp.index_jsp._jspService(index_jsp.java:69)
org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
javax.servlet.http.HttpServlet.service(HttpServlet.java:806)
org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:388)
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:320)
org.apache.jasper.servlet.JspServlet.service(JspServlet.java:266)
javax.servlet.http.HttpServlet.service(HttpServlet.java:806) note The full
stack trace of the root cause is available in the Apache Tomcat/6.0-snapshot
logs.
--------------------------------------------------------------------------------
Apache Tomcat/6.0-snapshot 

All subsequent times I try to access the application I get a
NoClasssDefFound Exception: 

type Exception report message description The server encountered an internal
error () that prevented it from fulfilling this request. exception
javax.servlet.ServletException: java.lang.NoClassDefFoundError
org.apache.jasper.runtime.PageContextImpl.doHandlePageException(PageContextImpl.java:850)
org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:779)
org.apache.jsp.index_jsp._jspService(index_jsp.java:573)
org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
javax.servlet.http.HttpServlet.service(HttpServlet.java:806)
org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:388)
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:320)
org.apache.jasper.servlet.JspServlet.service(JspServlet.java:266)
javax.servlet.http.HttpServlet.service(HttpServlet.java:806) root cause
java.lang.NoClassDefFoundError
website.prodcat.CatForm.<init>(CatForm.java:25)
website.prodcat.CatHomeForm.<init>(CatHomeForm.java:31)
org.apache.jsp.index_jsp._jspService(index_jsp.java:69)
org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
javax.servlet.http.HttpServlet.service(HttpServlet.java:806)
org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:388)
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:320)
org.apache.jasper.servlet.JspServlet.service(JspServlet.java:266)
javax.servlet.http.HttpServlet.service(HttpServlet.java:806) note The full
stack trace of the root cause is available in the Apache Tomcat/6.0-snapshot
logs.
-------------------------------------------------------------------------------- 


Any inputs on resolving this will be much appreciated.

Thanks,
Manisha


-- 
View this message in context: http://www.nabble.com/web-application-deployed--on-weblogic-deployed-on-Geronimo-2.0.1-using-myEclipse-6.0.1-GA-tf4799854s134.html#a13732242
Sent from the Apache Geronimo - Users mailing list archive at Nabble.com.


Re: web application deployed on weblogic deployed on Geronimo 2.0.1 using myEclipse 6.0.1 GA

Posted by Jarek Gawor <jg...@gmail.com>.
Looks like your app is failing with:

java.lang.RuntimeException: System properties file
"C:\geronimo5_2_0_1\bin\.\applications\webteam.properties" could not be
loaded: .\applications\webteam.properties (The system cannot find the path
specified). website.utils.SystemProps.<init>(SystemProps.java:33)
website.utils.SystemProps.getInstance(SystemProps.java:14)
website.utils.MailMgr.<clinit>(MailMgr.java:45)
website.prodcat.CatForm.<init>(CatForm.java:25)
website.prodcat.CatHomeForm.<init>(CatHomeForm.java:31)

Jarek

On Nov 13, 2007 2:07 PM, MShah <mo...@yahoo.com> wrote:
>
> I am deployiong a web application deployed and running on weblogic 8.1 on
> geronimo - tomcat and when I first deploy the application and access the jsp
> page I get the following exception:
>
>
> HTTP Status 500 -
> --------------------------------------------------------------------------------
> type Exception report message description The server encountered an internal
> error () that prevented it from fulfilling this request. exception
> javax.servlet.ServletException: java.lang.ExceptionInInitializerError
> org.apache.jasper.runtime.PageContextImpl.doHandlePageException(PageContextImpl.java:850)
> org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:779)
> org.apache.jsp.index_jsp._jspService(index_jsp.java:573)
> org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
> javax.servlet.http.HttpServlet.service(HttpServlet.java:806)
> org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:388)
> org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:320)
> org.apache.jasper.servlet.JspServlet.service(JspServlet.java:266)
> javax.servlet.http.HttpServlet.service(HttpServlet.java:806) root cause
> java.lang.ExceptionInInitializerError
> website.prodcat.CatForm.<init>(CatForm.java:25)
> website.prodcat.CatHomeForm.<init>(CatHomeForm.java:31)
> org.apache.jsp.index_jsp._jspService(index_jsp.java:69)
> org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
> javax.servlet.http.HttpServlet.service(HttpServlet.java:806)
> org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:388)
> org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:320)
> org.apache.jasper.servlet.JspServlet.service(JspServlet.java:266)
> javax.servlet.http.HttpServlet.service(HttpServlet.java:806) root cause
> java.lang.RuntimeException: System properties file
> "C:\geronimo5_2_0_1\bin\.\applications\webteam.properties" could not be
> loaded: .\applications\webteam.properties (The system cannot find the path
> specified). website.utils.SystemProps.<init>(SystemProps.java:33)
> website.utils.SystemProps.getInstance(SystemProps.java:14)
> website.utils.MailMgr.<clinit>(MailMgr.java:45)
> website.prodcat.CatForm.<init>(CatForm.java:25)
> website.prodcat.CatHomeForm.<init>(CatHomeForm.java:31)
> org.apache.jsp.index_jsp._jspService(index_jsp.java:69)
> org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
> javax.servlet.http.HttpServlet.service(HttpServlet.java:806)
> org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:388)
> org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:320)
> org.apache.jasper.servlet.JspServlet.service(JspServlet.java:266)
> javax.servlet.http.HttpServlet.service(HttpServlet.java:806) note The full
> stack trace of the root cause is available in the Apache Tomcat/6.0-snapshot
> logs.
> --------------------------------------------------------------------------------
> Apache Tomcat/6.0-snapshot
>
> All subsequent times I try to access the application I get a
> NoClasssDefFound Exception:
>
> type Exception report message description The server encountered an internal
> error () that prevented it from fulfilling this request. exception
> javax.servlet.ServletException: java.lang.NoClassDefFoundError
> org.apache.jasper.runtime.PageContextImpl.doHandlePageException(PageContextImpl.java:850)
> org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:779)
> org.apache.jsp.index_jsp._jspService(index_jsp.java:573)
> org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
> javax.servlet.http.HttpServlet.service(HttpServlet.java:806)
> org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:388)
> org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:320)
> org.apache.jasper.servlet.JspServlet.service(JspServlet.java:266)
> javax.servlet.http.HttpServlet.service(HttpServlet.java:806) root cause
> java.lang.NoClassDefFoundError
> website.prodcat.CatForm.<init>(CatForm.java:25)
> website.prodcat.CatHomeForm.<init>(CatHomeForm.java:31)
> org.apache.jsp.index_jsp._jspService(index_jsp.java:69)
> org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
> javax.servlet.http.HttpServlet.service(HttpServlet.java:806)
> org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:388)
> org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:320)
> org.apache.jasper.servlet.JspServlet.service(JspServlet.java:266)
> javax.servlet.http.HttpServlet.service(HttpServlet.java:806) note The full
> stack trace of the root cause is available in the Apache Tomcat/6.0-snapshot
> logs.
> --------------------------------------------------------------------------------
>
>
> Any inputs on resolving this will be much appreciated.
>
> Thanks,
> Manisha
>
>
> --
> View this message in context: http://www.nabble.com/web-application-deployed--on-weblogic-deployed-on-Geronimo-2.0.1-using-myEclipse-6.0.1-GA-tf4799854s134.html#a13732242
> Sent from the Apache Geronimo - Users mailing list archive at Nabble.com.
>
>