0
votes
2answers
60 views

Show loader while waiting for servlet to forward to next page

I have an index.html where I have a form. When I press submit that form does a POST request to my servlet. This servlet does some heavy things and then forwards to a jsp. What I want is when I press ...
1
vote
2answers
144 views

Forwarding a request from a JSF managed bean to a Struts 2 action does not work

Within a JSF managed bean, I have the following code taken from this past question: String uri = "/myAction"; FacesContext.getCurrentInstance().getExternalContext().dispatch(uri); myAction is the ...
0
votes
0answers
39 views

Fordwarding a multipart request from a servlet filter

I'm trayin to do a request forward from a servlet filter. It works fine if the request is not a "multipart/form-data", but if it is, the forward is completed but the target servlet does not receive ...
0
votes
2answers
79 views

How can I forward a request to a backend server with a servlet? [duplicate]

I have a servlet engine as frontend web server and want forward some request to a backend server. A redirect is not possible. Are there any helpful API in the servlet spec? Or are the some samples ...
3
votes
1answer
105 views

Does filter in web.xml gets executed when we forward the request?

When i forward the request from servlet to another, does filters described in web.xml get executed? In fact i am not sure whether web.xm comes in to picture or not in case of request forward? I know ...
2
votes
2answers
146 views

Forward to a view before servlet processing finishes

I'm writing a simple web app that uploads some files to a server, runs some code and then emails the resulting files to the user. However, as the code can take a few hours to run after the user has ...
0
votes
1answer
692 views

Redirect/dispatch to the origin jsp after using a Translation Servlet

I'm implementing a function to translate all my JSP pages automatically in French or English. The user will have two buttons at every moment in the navigation to change the language. I used a servlet ...
0
votes
1answer
125 views

How to determine from a filter which page serviced a forward from RequestDispatcher?

I have a filter which processes requests in order to log them, so I can keep track of which session hit a page at what time with what request parameters. works great... posting from jsp to jsp, or ...
1
vote
2answers
996 views

How to change url in user browser without client redirect in servlet

I want to forward from one page to another but with the same I want url to be changed. Suppose user is here http://mywebsite/register and when he completes his registration process then I want this in ...
1
vote
1answer
358 views

Dispatcher forward method from POST to GET

I need to forward from my FooServlet doPost method to BarServlet doGet method. Is there a way to solve this? Currently I'm calling the doGet method from my doPost but I'm sure that this isn't the ...
1
vote
4answers
2k views

calling a jsp from a servlet

i am calling a jsp, displayItems.jsp from a servlet, DataPortal.java. First I tried to do this using the RequestDispatcher like this, `url = "/displayItems.jsp"; ServletContext context = ...
2
votes
1answer
762 views

JSP:Include not being called on forwarding page using doPost requestDispatcher

I am currently writing an web application where you need to log in, using username and password. The next step in the process is to select a Project in which the logged in user is involved. Once ...
0
votes
2answers
2k views

JSP Forward and calling servlets (Passing on 2 session variables)

I am trying to redirect a 'HTTPrequest' from a JSP page to a servlet (located in a package); passing on variables that are stored in a session object. I had the idea to use: <jsp:forward ...
0
votes
2answers
739 views

Redirecting after writing to response throwing exception

Am working on an application which has a requirement to download bulk data from a file server with a maximum file size constraint fixed at 3 Mb.It means i would have a maximum download capacity of ...
5
votes
2answers
11k views

Is it possible to forward or redirect from a servlet filter after the response has been comitted?

The logic is that the filter gets hit, the condition is not true, so it goes through the filter chain. After the response is committed, the filter gets hit, and the condition is now true (a request ...
6
votes
3answers
7k views

Call an external web service from a servlet

I'm developing a servlet that gets a name of a web service and could be forward the request to an external web service, for example: http://www.webservice.com/... I have build a response wrapper that ...
0
votes
1answer
946 views

jsf-facelets forward bypass servlet filters

For one week, i am playing with appfuse-jsf-basic but i noticed something. If i do not put tag to my navigation rules, i can view a page that require ROLE_ADMIN with ROLE_USER rights. Then i ...