Hi,
I am trying to deploy project on
www.webappcabaret.com site.
So far it's working fine.I am able to redirect from html to html and html to servlet .But when I do from servlet to html file
getting error as below.
It is giving error at
out.println("Before dispatch"+"<BR>");
RequestDispatcher RD =getServletContext().getRequestDispatcher ("http://www.webappcabaret.com/padmashree/Login.html");
RD.forward(req,res);
out.println("After Dispatch");
it prints Before dispatch and then Error :500
Error: 500
Location: /padmashree/Registration
Internal Servlet Error:
java.lang.NullPointerException
at RegForm.doGet(RegForm.java:123)
at RegForm.doPost(RegForm.java:136)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
at org.apache.tomcat.core.ServletWrapper.handleRequest(ServletWrapper.java:503)
at org.apache.tomcat.core.ContextManager.service(ContextManager.java:559)
at ngasi.b.a.n.a(Unknown Source)
at ezj.b.e.run(Unknown Source)
you also can check at
http://www.webappcabaret.com/padmashree/RegForm.html I have not used tomcat and Apache server before.Though it's working fine on my PC (with JRUN).
Thanks
Padmashree