0
votes
2answers
80 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
112 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 ...
1
vote
1answer
60 views

request.redirect() for long URLs in struts2&IE

I am using struts2. I have to redirect my system to a URL which is longer than 3000 characters. The url length causes the system to work incorrectly in IE because of the url limitation in get ...
1
vote
0answers
65 views

Java library that has solutions for parsing forwarded emails from different major email clients

I'm looking for a java library that has solutions for parsing forwarded emails from different major email clients. Could someone point me in a direction to find one or could someone share an example ...
1
vote
0answers
447 views

Double forwarded ServletRequest using RequestDispatcher.forward() malforms URL and causes 404

My Java web app uses two servlets to control form processing and navigation, /AppControl and /ViewControl. AppControl processes form submissions, then forwards the request to ViewControl, which ...
0
votes
1answer
140 views

Java - ServerSocket without port-forward

I'm making a Java application that involves every user hosting a small server. This allows the other clients to, with each others IPs check what they're doing. But of course this needs ...
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 ...
9
votes
2answers
171 views

Java Legal Forward Referencing

Is the following code the case of legal forward referencing? if yes why? public class MyClass { private static int x = getValue(); private static int y = 5; private static int getValue() { ...
1
vote
1answer
44 views

Make locally deployed module join the process on integration environment easily

Our application has different modules deployed under many tomcats ondifferent physical machines. And we have an Apache proxy (mod_proxy) which forwards the client request to associated machine base on ...
0
votes
1answer
127 views

How to properly forward messages coming from client to Web Server in HTTPS? (Java Proxy Server)

I have a working HTTP Proxy server. it can properly handle website using only HTTP and could also connect to HTTPS website. It can properly negotiate with the client's CONNECT request and start ...
0
votes
1answer
125 views

ActionForm redirect

Good afternoon in my timezone. I am using struts in the development of an enterprise web application,and what i need is very simple to ask. In the ActionForm, if the validate method returns a ...
1
vote
2answers
416 views

How to determine from a filter which jsp was forwarded to from a RequestDispatcher.forward call?

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 ...
0
votes
1answer
126 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
1k 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 ...
3
votes
3answers
5k views

Spring forward with added parameters?

Is there a way to forward a request to another Controller while adding some parameter data to it? I tried adding to the ModelMap, but it doesn't seem to hang around. I am doing something like: return ...
1
vote
1answer
359 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 ...
0
votes
2answers
247 views

Port forwarding problem

I'm currently developing java PC/Android application with server written in java. When I was developing PC client I was starting server on localhost:12345, and client could, without any problems, ...
1
vote
1answer
181 views

Dispatcher doesn't throw an exception

I want to make the dispatcher throws an exception when I want to forward to non-existing resource, here's my code String page = (String) request.getAttribute("page"); //page to be forwarded form ...
0
votes
1answer
1k views

Struts 1, redirect works ok but forward gives 404

In a Struts action, if I return an ActionForward with a redirect flag set to true, everything works as expected, i.e. the request ends up on the desired page. But, when I set redirect to false, it ...
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 ...
3
votes
1answer
3k views

Using SiteMesh with RequestDispatcher's forward()

I'm attempting to integrate SiteMesh into a legacy application using Tomcat 5 as my a container. I have a main.jsp that I'm decorating with a simple decorator. In decorators.xml, I've just got one ...
8
votes
3answers
39k views

jsp:forward in Java without using JSP tag?

Is there a pure-Java equivalent to <jsp:forward page="..." /> that I can use within a <% ... %> block? For example, I currently have a JSP page something like this: <% String ...