File APIs for Java Developers
Manipulate DOC, XLS, PPT, PDF and many others from your application.
http://aspose.com/file-tools
The moose likes Servlets and the fly likes how to forward dispatcher requests in servlets across projects (iplanet) Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Java » Servlets
Reply Bookmark "how to forward dispatcher requests in servlets across projects (iplanet)" Watch "how to forward dispatcher requests in servlets across projects (iplanet)" New topic
Author

how to forward dispatcher requests in servlets across projects (iplanet)

Prithvi Raj
Greenhorn

Joined: Jul 13, 2001
Posts: 9
hi.
can anyone please tell me how to forward request to a servlet in iplanet Application Server from another servlet
Consider this scenario
there are two projects project1 and project2
project1 has servlet1
project2 has servlet2
servlet1 has to forward request to servlet2. i did it like this
getServletContext().getRequestDispatcher("Project2/servlet2").forward(request,response);
this is the error it gives
error: SERVLET-fileext_not_set: Extension of file not found, while displaying static content
that method works perfectly on Netscape Application Server
can any one give me a solution to this problem??
thanx in advance

------------------
prithvi


prithvi
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: how to forward dispatcher requests in servlets across projects (iplanet)
 
Similar Threads
servlet redirection
requestdispatch - servlet to servlet in iplanet( anyone plzzzzzzz!!!!)
HFSJ Chapter 6 - Mock exam Question 7
running a servlet without IDE
forward request using requestdispatcher for servlets across projects