vote up 0 vote down star

When I do a redirect inside J2EE web application deployed on WebLogic it sends back to the client the following response:

HTTP/1.1 302 Moved Temporarily
Cache-Control: no-cache="set-cookie"
Date: Sat, 12 Dec 2009 07:37:43 GMT
Transfer-Encoding: chunked
Location: http://server:port/front/page
Set-Cookie: JSESSIONID=CDdjLjLHSLlGxzzBT7dmLCw7JFZyBTxp95gJyxSL8GLS2gpNGKpb!1582307085; path=/
X-Powered-By: Servlet/2.4 JSP/2.0

01d7
<html><head><title>302 Moved Temporarily</title></head>
<body bgcolor="#FFFFFF">
<p>This document you requested has moved temporarily.</p>
<p>It's now at <a href="http://server:port/front/page">http://server:port/front/page</a>.</p>
</body></html>

0000

Is there a way to override that HTML?

flag

Are you redirecting from HTTPs to HTTP? I've never seen this page. What version of weblogic is that? – Pascal Thivent Dec 11 at 14:58
Weblogic 9.2. And it's HTTP redirect. I used Fiddler to get raw HTTP request/response and the 302 response contains that HTML inside. – Superfilin Dec 11 at 15:33
Your comment helped a lot and it would be really nice to update your question with it. However, something is still unclear: what URL ([protocol]://[ip]:[port]/) is exactly expected? – Pascal Thivent Dec 11 at 21:00
The expected URL is /front/page. – Superfilin Dec 12 at 7:21
Btw. thanks for your help :) – Superfilin Dec 12 at 7:23

3 Answers

vote up 1 vote down check

I don't know from where this page comes but I'd like to see the response from WebLogic, especially the content of the Location in the header. Actually, I don't know Fiddler but I wonder if it is not breaking things here (see this similar question here on SO).

UPDATE: I think I finally start to understand the issue a bit more, thanks to the OP comment. Right now, I'm wondering if setting WLProxySSL to ON in the plugin configuration would help.

When WLProxySSL is set to ON, the location header returned to the client from WebLogic Server specifies the HTTPS protocol.

I'll dig this more and update this answer later.

link|flag
The problem is not in Fiddler and it's actually just a proxy/debug tool. I just used Fiddler to understand the problem. Browser handles redirect correctly, but the problem actually is in the absolute URL that is contained in 302 response. We placed an Apache server before WebLogic to force HTTPS. We use relative URLs wherever possible in our application and that does not cause any problems for HTTPS server, except when redirect is done, because of the use of absolute URL that is HTTP. I will attach the raw response to the answer. – Superfilin Dec 11 at 20:23
Ahhhh, I think I finally start to understand the issue. Everything is still not clear but it's better. Actually, I feel like this now: why the hell don't you provide these details in the initial question?!? :) – Pascal Thivent Dec 11 at 20:42
:) I thought that just replacing the standard 302 response would be a better solution. – Superfilin Dec 12 at 7:32
I have updated the question with full HTTP response. – Superfilin Dec 12 at 7:36
vote up 1 vote down

Hi,

You can use the web.xml of your application to override it, like:

<error-page>
	<error-code>302</error-code>
	<location>/error302.jsp</location>
</error-page>

EDIT: The error page may start with:

<%@ page language="java" isErrorPage="true" %>
<%@ taglib uri="/WEB-INF/fmt.tld" prefix="fmt" %>
<%@ taglib uri="/WEB-INF/c.tld" prefix="c" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
  <head>
...

Regards.

link|flag
Do you have an example of such JSP? That will insert the redirected URLs correctly? – Superfilin Dec 11 at 14:00
2  
Huh? An error page for a 302? – Pascal Thivent Dec 11 at 14:57
1  
@Pascal - and why not? Admittedly it won't normally be displayed in a typical web browser. But there are other use-cases for HTTP! – Stephen C Dec 12 at 3:56
But is there a working example of such JSP? – Superfilin Dec 12 at 14:00
@Atorras, but how would you get the URL that 302 response is redirecting to? – Superfilin Dec 15 at 9:44
show 2 more comments
vote up 0 vote down

My initial problem was related to absolute URLs in the 302 response. And I have found that absolute URL is dictated by HTTP specification. Even though most browsers tolerate relative URLs, that's not a reliable solution anyway. That means that overriding 302 response will not give me the desired result in all possible situations. I would rather use the solution proposed by Pascal or make Apache additional configuration for URL rewrite engine.

link|flag

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.