This week's book giveaway is in the Agile and other Processes forum.
We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line!
See this thread for details.
The moose likes Servlets and the fly likes problem in forwarding one Application to other Application using context based RequestDispatcher. Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » Servlets
Reply Bookmark "problem in forwarding one Application to other Application using context based RequestDispatcher." Watch "problem in forwarding one Application to other Application using context based RequestDispatcher." New topic
Author

problem in forwarding one Application to other Application using context based RequestDispatcher.

Ritesh raushan
Ranch Hand

Joined: Aug 29, 2012
Posts: 97
i want to forward a result from one Application to other Application in same server using context based RequestDispatcher but
when i give request to server error occurs and error display on console of tomcat6.exe(server starter).


error is -

java.lang.NullPointerException
at RequestDispatchDemo.doGet(RequestDispatchDemo.java:14)//RequestDispatchDemo.java is my class name
at javax.servlet.http.HttpServlet.service(HttpServlet.java:617)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl
icationFilterChain.java:290)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF
ilterChain.java:206)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperV
alve.java:233)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextV
alve.java:191)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.j
ava:127)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.j
ava:102)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineVal
ve.java:109)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.jav
a:298)
at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java
:852)
at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.proce
ss(Http11Protocol.java:588)
at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:48
9)
at java.lang.Thread.run(Unknown Source)



Ravinderjit Singh
Ranch Hand

Joined: Jan 13, 2010
Posts: 58


On line 13 you are getting null, you are not giving the correct uri path, it must being with /.

Try

Ritesh raushan
Ranch Hand

Joined: Aug 29, 2012
Posts: 97
Ravinderjit Singh wrote:

On line 13 you are getting null, you are not giving the correct uri path, it must being with /.

Try



no,it's not working i think slash used only in url.
Ravinderjit Singh
Ranch Hand

Joined: Jan 13, 2010
Posts: 58
/ is must check the javadoc for getContext function.
getContext
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: problem in forwarding one Application to other Application using context based RequestDispatcher.
 
Similar Threads
problem while executing user defined method within a servlet
prb from Hemant Deshmukh...
getting servlet parameters in one file to reuse it
Servlet Chaining
Configuring connetion pooling with tomcat 5.5