- This topic has 5 replies, 3 voices, and was last updated 20 years, 11 months ago by
Scott Anderson.
-
AuthorPosts
-
mkashefskaMemberI am having trouble finding my HelloWorld.jsp page from the web browser.
I have the oracle app server running just fine. I can see the server from http://localhost:8888.
I can deploy the project just fine. I get the blue check box under the deployments. And the deployment status says successfully deployed.
I look under D:\jdev10\j2ee\home\application-autodeploy and I see my HelloWorld\HelloWorld.jsp file.
I added the application-auto-deploy-directory=”../application-autodeploy in the server.xml file.
I don’t see any log file in my metadata directory.
Also I am using eclipse 3.0.0 and myeclipse 3.7.200 and oracle app server 10g (9.0.4.0.0)
Any help?
July 22, 2004 at 2:46 pm #210723
Riyad KallaMemberWhat URL are you using to access your JSP file? Is there any message in the Oracle log file or in the Console after you launch the server using MyEclipse that gives an error? What is the error you are getting? Is ir 404 (not found) or 500 (something wrong with page)?
July 22, 2004 at 3:07 pm #210725
mkashefskaMemberthe URL is http://localhost:8888/HelloWorld/HelloWorld.jsp
HTTP 500 – Internal server error
i only get
04/07/22 13:58:00 Oracle Application Server Containers for J2EE 10g (9.0.4.0.0) initialized
on the console tab page.here is the error in my global-application.log file
04/07/22 14:06:22 defaultWebApp: Servlet error
javax.servlet.ServletException: java.lang.ClassNotFoundException: _helloworld._HelloWorld
at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:322)
at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:509)
at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:413)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:765)
at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:317)
at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:790)
at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.HttpRequestHandler.run(HttpRequestHandler.java:270)
at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.HttpRequestHandler.run(HttpRequestHandler.java:112)
at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:186)
at java.lang.Thread.run(Thread.java:534)—————-
thanks,
mikeJuly 22, 2004 at 3:10 pm #210726
Riyad KallaMemberHmm, looks like you are accessing your page just fine, but its not getting compiled correctly… are there any errors marked on the page in MyEclipse? Is the name of your webapp “HelloWorld” or “helloworld” Does 10g care about case?
July 23, 2004 at 11:00 am #210805
mkashefskaMemberthe web app is HelloWorld the .jsp is HelloWorld.jsp. There are no errors on the page or the in helloWorld.class file. And yes oracle does care about case.
July 23, 2004 at 6:55 pm #210838
Scott AndersonParticipantMike,
Can you give this thread a read and see if you can determine what you’re doing differently?
http://www.myeclipseide.com/PNphpBB2+file-viewtopic-t-2460-highlight-oc4j.htmlIf that doesn’t do it, can you please post all the information we request in the [URL=http://www.myeclipseide.com/PNphpBB2+file-viewtopic-t-393.html]Posting Guidelines[/URL] thread at the top of this forum? That will give us some context so that we can determine if this is an installation issue, a configuration problem, or a bug. Thanks.
-
AuthorPosts