You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tomcat.apache.org by Benjamin Madore <bc...@pitt.edu> on 2012/01/26 21:00:25 UTC

Problems after reinstall - Sorry, trying again.

Hi all,

Sorry, I'm new to the list and I hope that my first message didn't breech
some kind of etiquette or do something to get caught in everyone's spam
filter.

I have spent hours trying to find an answer, and I keep going around in
circles, I'm not sure where to look next.

Here's my problem:

                I have inherited a two web applications written several
years ago. Since the server, which had been installed just before I arrived,
was rebuilt last month we have not been able to log in to the application.
We had continued to update Tomcat and Java before the rebuild so it was
running the latest versions at the time on Windows 2008.

Previously we had been using IIS to redirect the site, however we installed
the Tomcat Connector.

We use an SSL cert that has been installed in IIS.

The index.jsp page loads fine, but other jsp pages in the site give an
error. Other sites have no problem, and I am able to view jsp pages with or
without https.

One web app (the eli2117 and 2121 folders) won't load at all after the login
page, and the other (dataSearch) appears normal, it will reload the login
page (related to a bug in the application, login was always flaky on it
unless you were logged into an instance of the former application).

Other pages (the test directory) load fine.

The eli app uses "response.sendRedirect("home.jsp");" in the login process;
but it appears to me that even login.jsp is not being recognized from the
form submit.

We have a test server running Tomcat 6 and MacOS 10.4 where the application
works fine. I understand there is a big difference between the two, but the
budget for upgrades is thin around here. As I said before, it ran in the
current environment prior to the rebuild.

I would appreciate any hints on where to go from here on fixing the problem.

I have logs and I'm getting a 302, I'll send out excerpts if anyone is
interested.

Thanks,
Ben Madore



---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tomcat.apache.org
For additional commands, e-mail: users-help@tomcat.apache.org


Re: Problems after reinstall - Sorry, trying again.

Posted by Pid <pi...@pidster.com>.
On 26/01/2012 23:19, Caldarale, Charles R wrote:
>> From: Benjamin Madore [mailto:bcm37@pitt.edu] 
>> Subject: RE: Problems after reinstall - Sorry, trying again.
> 
>> 136.142.248.135 - - [24/Jan/2012:14:02:20 -0500]
>> "POST /eli2121/login.jsp HTTP/1.1" 302 -
> 
> The above looks ok.
> 
>> 136.142.248.135 - - [24/Jan/2012:14:02:20 -0500]
>> "GET /eli2121/home.jsp HTTP/1.1" 302 -
> 
>> 136.142.248.135 - - [24/Jan/2012:14:02:20 -0500]
>> "GET /eli2121/home.jsp HTTP/1.1" 302 -
> 
> Now you've got a problem - your home.jsp page is redirecting to itself.  Likely you've had something invalid in there all the time, but the undefined behavior of the construct is different in the newer Tomcat.  Examine your home.jsp and the Java code generated for it to see what's wrong.

The 'after the login page' statement makes me wonder if your login
config is borked too.

Are you using FORM authentication or something else?


p




-- 

[key:62590808]


RE: Problems after reinstall - Sorry, trying again.

Posted by "Caldarale, Charles R" <Ch...@unisys.com>.
> From: Benjamin Madore [mailto:bcm37@pitt.edu] 
> Subject: RE: Problems after reinstall - Sorry, trying again.

> 136.142.248.135 - - [24/Jan/2012:14:02:20 -0500]
> "POST /eli2121/login.jsp HTTP/1.1" 302 -

The above looks ok.

> 136.142.248.135 - - [24/Jan/2012:14:02:20 -0500]
> "GET /eli2121/home.jsp HTTP/1.1" 302 -

> 136.142.248.135 - - [24/Jan/2012:14:02:20 -0500]
> "GET /eli2121/home.jsp HTTP/1.1" 302 -

Now you've got a problem - your home.jsp page is redirecting to itself.  Likely you've had something invalid in there all the time, but the undefined behavior of the construct is different in the newer Tomcat.  Examine your home.jsp and the Java code generated for it to see what's wrong.

 - Chuck


THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL AND/OR OTHERWISE PROPRIETARY MATERIAL and is thus for use only by the intended recipient. If you received this in error, please contact the sender and delete the e-mail and its attachments from all computers.


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tomcat.apache.org
For additional commands, e-mail: users-help@tomcat.apache.org


RE: Problems after reinstall - Sorry, trying again.

Posted by Benjamin Madore <bc...@pitt.edu>.
>-----Original Message-----
>From: Pid [mailto:pid@pidster.com] 
>Sent: Thursday, January 26, 2012 5:44 PM
>To: Tomcat Users List
vSubject: Re: Problems after reinstall - Sorry, trying again.

>On 26/01/2012 20:00, Benjamin Madore wrote:
>> Hi all,
>> 
>> Sorry, I'm new to the list and I hope that my first message didn't breech
>> some kind of etiquette or do something to get caught in everyone's spam
> >filter.
> >
>> I have spent hours trying to find an answer, and I keep going around in
>> circles, I'm not sure where to look next.
>> 
>> Here's my problem:
>> 
>>                 I have inherited a two web applications written several
>> years ago. Since the server, which had been installed just before I
arrived,
>> was rebuilt last month we have not been able to log in to the
application.
>> We had continued to update Tomcat and Java before the rebuild so it was
>> running the latest versions at the time on Windows 2008.
>> 
>> Previously we had been using IIS to redirect the site, however we
installed
>> the Tomcat Connector.
>> 
>> We use an SSL cert that has been installed in IIS.
>> 
>> The index.jsp page loads fine, but other jsp pages in the site give an
>> error. Other sites have no problem, and I am able to view jsp pages with
or
>> without https.
>
>What error?
>
>Where is the error indicated, the browser, the log files?

Firefox will reply: "Firefox has detected that the server is redirecting the
request for this address in a way that will never complete."
Internet Explorer will just never load the page.
Chrome states that there are too many redirects.

>> One web app (the eli2117 and 2121 folders) won't load at all after the
login
>> page, and the other (dataSearch) appears normal, it will reload the login
>> page (related to a bug in the application, login was always flaky on it
>> unless you were logged into an instance of the former application).
>
>Exactly what does "won't load at all" mean?  What error message do you
>see, what are the symptoms (in as much technical detail as you can
provide)?
>
>
>> Other pages (the test directory) load fine.
>> 
>> The eli app uses "response.sendRedirect("home.jsp");" in the login
process;
>> but it appears to me that even login.jsp is not being recognized from the
>> form submit.
>
>Where is login.jsp located, etc, etc?  The paragraph above doesn't make
>much sense to anyone who doesn't know what your applications file layout
>or configuration is.
It's a flat site, everything is in the root of the application's directory
except for images in /media and css in /css

>> We have a test server running Tomcat 6 and MacOS 10.4 where the
application
>> works fine. I understand there is a big difference between the two, but
the
>> budget for upgrades is thin around here. As I said before, it ran in the
>> current environment prior to the rebuild.
>>
>> I would appreciate any hints on where to go from here on fixing the
problem.
>
>Give us more information.
>
>
>> I have logs and I'm getting a 302, I'll send out excerpts if anyone is
>> interested.
>
>Can't help without it.

136.142.248.135 - - [24/Jan/2012:14:02:12 -0500] "GET /eli2121/ HTTP/1.1"
200 6501

136.142.248.135 - - [24/Jan/2012:14:02:20 -0500] "POST /eli2121/login.jsp
HTTP/1.1" 302 -

136.142.248.135 - - [24/Jan/2012:14:02:20 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

136.142.248.135 - - [24/Jan/2012:14:02:20 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

136.142.248.135 - - [24/Jan/2012:14:02:20 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

136.142.248.135 - - [24/Jan/2012:14:02:20 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

136.142.248.135 - - [24/Jan/2012:14:02:20 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

136.142.248.135 - - [24/Jan/2012:14:02:20 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

136.142.248.135 - - [24/Jan/2012:14:02:20 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

136.142.248.135 - - [24/Jan/2012:14:02:20 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

136.142.248.135 - - [24/Jan/2012:14:02:20 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

136.142.248.135 - - [24/Jan/2012:14:02:20 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

136.142.248.135 - - [24/Jan/2012:14:02:20 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

136.142.248.135 - - [24/Jan/2012:14:02:20 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

136.142.248.135 - - [24/Jan/2012:14:02:20 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

136.142.248.135 - - [24/Jan/2012:14:02:20 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

136.142.248.135 - - [24/Jan/2012:14:02:20 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

136.142.248.135 - - [24/Jan/2012:14:02:20 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

136.142.248.135 - - [24/Jan/2012:14:02:20 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

136.142.248.135 - - [24/Jan/2012:14:02:20 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

136.142.248.135 - - [24/Jan/2012:14:02:20 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

136.142.248.135 - - [24/Jan/2012:14:02:20 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

 

107.9.135.86 - - [25/Jan/2012:00:37:31 -0500] "GET
/eli2117/course.jsp?action=submit&file_type_id=1 HTTP/1.1" 302 -

107.9.135.86 - - [25/Jan/2012:00:37:32 -0500] "GET /eli2117/home.jsp
HTTP/1.1" 302 -

107.9.135.86 - - [25/Jan/2012:00:37:32 -0500] "GET /eli2117/home.jsp
HTTP/1.1" 302 -

107.9.135.86 - - [25/Jan/2012:00:37:32 -0500] "GET /eli2117/home.jsp
HTTP/1.1" 302 -

107.9.135.86 - - [25/Jan/2012:00:37:32 -0500] "GET /eli2117/home.jsp
HTTP/1.1" 302 -

107.9.135.86 - - [25/Jan/2012:00:37:32 -0500] "GET /eli2117/home.jsp
HTTP/1.1" 302 -

107.9.135.86 - - [25/Jan/2012:00:37:32 -0500] "GET /eli2117/home.jsp
HTTP/1.1" 302 -

107.9.135.86 - - [25/Jan/2012:00:37:32 -0500] "GET /eli2117/home.jsp
HTTP/1.1" 302 -

107.9.135.86 - - [25/Jan/2012:00:37:32 -0500] "GET /eli2117/home.jsp
HTTP/1.1" 302 -

107.9.135.86 - - [25/Jan/2012:00:37:32 -0500] "GET /eli2117/home.jsp
HTTP/1.1" 302 -

107.9.135.86 - - [25/Jan/2012:00:37:32 -0500] "GET /eli2117/home.jsp
HTTP/1.1" 302 -

107.9.135.86 - - [25/Jan/2012:00:37:32 -0500] "GET /eli2117/home.jsp
HTTP/1.1" 302 -

107.9.135.86 - - [25/Jan/2012:00:37:32 -0500] "GET /eli2117/home.jsp
HTTP/1.1" 302 -

107.9.135.86 - - [25/Jan/2012:00:37:32 -0500] "GET /eli2117/home.jsp
HTTP/1.1" 302 -

107.9.135.86 - - [25/Jan/2012:00:37:32 -0500] "GET /eli2117/home.jsp
HTTP/1.1" 302 -

107.9.135.86 - - [25/Jan/2012:00:37:32 -0500] "GET /eli2117/home.jsp
HTTP/1.1" 302 -

107.9.135.86 - - [25/Jan/2012:00:37:32 -0500] "GET /eli2117/home.jsp
HTTP/1.1" 302 -

107.9.135.86 - - [25/Jan/2012:00:37:32 -0500] "GET /eli2117/home.jsp
HTTP/1.1" 302 -

107.9.135.86 - - [25/Jan/2012:00:37:33 -0500] "GET /eli2117/home.jsp
HTTP/1.1" 302 -

107.9.135.86 - - [25/Jan/2012:00:37:33 -0500] "GET /eli2117/home.jsp
HTTP/1.1" 302 -

107.9.135.86 - - [25/Jan/2012:00:37:33 -0500] "GET /eli2117/home.jsp
HTTP/1.1" 302 -

107.9.135.86 - - [25/Jan/2012:00:37:39 -0500] "GET
/eli2117/course.jsp?action=submit&file_type_id=1 HTTP/1.1" 302 -

107.9.135.86 - - [25/Jan/2012:00:37:39 -0500] "GET /eli2117/home.jsp
HTTP/1.1" 302 -

107.9.135.86 - - [25/Jan/2012:00:37:39 -0500] "GET /eli2117/home.jsp
HTTP/1.1" 302 -

107.9.135.86 - - [25/Jan/2012:00:37:39 -0500] "GET /eli2117/home.jsp
HTTP/1.1" 302 -

107.9.135.86 - - [25/Jan/2012:00:37:39 -0500] "GET /eli2117/home.jsp
HTTP/1.1" 302 -

107.9.135.86 - - [25/Jan/2012:00:37:39 -0500] "GET /eli2117/home.jsp
HTTP/1.1" 302 -

107.9.135.86 - - [25/Jan/2012:00:37:39 -0500] "GET /eli2117/home.jsp
HTTP/1.1" 302 -

107.9.135.86 - - [25/Jan/2012:00:37:39 -0500] "GET /eli2117/home.jsp
HTTP/1.1" 302 -

107.9.135.86 - - [25/Jan/2012:00:37:39 -0500] "GET /eli2117/home.jsp
HTTP/1.1" 302 -

107.9.135.86 - - [25/Jan/2012:00:37:39 -0500] "GET /eli2117/home.jsp
HTTP/1.1" 302 -

107.9.135.86 - - [25/Jan/2012:00:37:39 -0500] "GET /eli2117/home.jsp
HTTP/1.1" 302 -

107.9.135.86 - - [25/Jan/2012:00:37:39 -0500] "GET /eli2117/home.jsp
HTTP/1.1" 302 -

107.9.135.86 - - [25/Jan/2012:00:37:39 -0500] "GET /eli2117/home.jsp
HTTP/1.1" 302 -

107.9.135.86 - - [25/Jan/2012:00:37:39 -0500] "GET /eli2117/home.jsp
HTTP/1.1" 302 -

107.9.135.86 - - [25/Jan/2012:00:37:40 -0500] "GET /eli2117/home.jsp
HTTP/1.1" 302 -

107.9.135.86 - - [25/Jan/2012:00:37:40 -0500] "GET /eli2117/home.jsp
HTTP/1.1" 302 -

107.9.135.86 - - [25/Jan/2012:00:37:40 -0500] "GET /eli2117/home.jsp
HTTP/1.1" 302 -

107.9.135.86 - - [25/Jan/2012:00:37:40 -0500] "GET /eli2117/home.jsp
HTTP/1.1" 302 -

107.9.135.86 - - [25/Jan/2012:00:37:40 -0500] "GET /eli2117/home.jsp
HTTP/1.1" 302 -

107.9.135.86 - - [25/Jan/2012:00:37:40 -0500] "GET /eli2117/home.jsp
HTTP/1.1" 302 -

107.9.135.86 - - [25/Jan/2012:00:37:40 -0500] "GET /eli2117/home.jsp
HTTP/1.1" 302 -

199.21.99.98 - - [25/Jan/2012:05:10:08 -0500] "GET /eli2121/index.jsp
HTTP/1.1" 302 -

130.49.136.29 - - [25/Jan/2012:10:55:14 -0500] "GET /eli2121/index.new.jsp
HTTP/1.1" 200 6501

130.49.136.29 - - [25/Jan/2012:10:55:14 -0500] "GET /eli2121/css/style.css
HTTP/1.1" 200 2832

130.49.136.29 - - [25/Jan/2012:10:55:14 -0500] "GET
/eli2121/media/mm_spacer.gif HTTP/1.1" 200 43

130.49.136.29 - - [25/Jan/2012:10:55:14 -0500] "GET
/eli2121/media/collage.jpg HTTP/1.1" 200 16751

130.49.136.29 - - [25/Jan/2012:10:55:14 -0500] "GET
/eli2121/media/mm_dashed_line.gif HTTP/1.1" 200 1220

71.61.182.145 - - [25/Jan/2012:11:14:02 -0500] "GET /dataSearch/ HTTP/1.1"
200 6408

71.61.182.145 - - [25/Jan/2012:11:14:02 -0500] "GET
/dataSearch/css/style.css HTTP/1.1" 200 2753

71.61.182.145 - - [25/Jan/2012:11:14:02 -0500] "GET
/dataSearch/media/collage.jpg HTTP/1.1" 200 16751

71.61.182.145 - - [25/Jan/2012:11:14:02 -0500] "GET
/dataSearch/media/mm_dashed_line.gif HTTP/1.1" 200 1220

71.61.182.145 - - [25/Jan/2012:11:14:02 -0500] "GET
/dataSearch/media/mm_spacer.gif HTTP/1.1" 200 43

71.61.182.145 - - [25/Jan/2012:11:14:11 -0500] "POST /dataSearch/login.jsp
HTTP/1.1" 200 5627

71.61.182.145 - - [25/Jan/2012:11:17:54 -0500] "GET /dataSearch/ HTTP/1.1"
200 6408

71.61.182.145 - - [25/Jan/2012:11:17:59 -0500] "POST /dataSearch/login.jsp
HTTP/1.1" 200 5627

130.49.136.64 - - [25/Jan/2012:16:37:26 -0500] "GET /eli2121/index.jsp
HTTP/1.1" 302 -

130.49.136.64 - - [25/Jan/2012:16:37:26 -0500] "GET /eli2121/index.new.jsp
HTTP/1.1" 302 -

130.49.136.64 - - [25/Jan/2012:16:37:26 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

130.49.136.64 - - [25/Jan/2012:16:37:26 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

130.49.136.64 - - [25/Jan/2012:16:37:26 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

130.49.136.64 - - [25/Jan/2012:16:37:26 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

130.49.136.64 - - [25/Jan/2012:16:37:26 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

130.49.136.64 - - [25/Jan/2012:16:37:26 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

130.49.136.64 - - [25/Jan/2012:16:37:26 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

130.49.136.64 - - [25/Jan/2012:16:37:26 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

130.49.136.64 - - [25/Jan/2012:16:37:26 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

130.49.136.64 - - [25/Jan/2012:16:37:26 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

130.49.136.64 - - [25/Jan/2012:16:37:26 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

130.49.136.64 - - [25/Jan/2012:16:37:26 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

130.49.136.64 - - [25/Jan/2012:16:37:26 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

130.49.136.64 - - [25/Jan/2012:16:37:27 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

130.49.136.64 - - [25/Jan/2012:16:37:27 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

130.49.136.64 - - [25/Jan/2012:16:37:27 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

130.49.136.64 - - [25/Jan/2012:16:37:27 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

130.49.136.64 - - [25/Jan/2012:16:37:27 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

130.49.136.64 - - [25/Jan/2012:16:37:27 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

130.49.136.64 - - [25/Jan/2012:16:37:30 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

130.49.136.64 - - [25/Jan/2012:16:37:30 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

130.49.136.64 - - [25/Jan/2012:16:37:30 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

130.49.136.64 - - [25/Jan/2012:16:37:31 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

130.49.136.64 - - [25/Jan/2012:16:37:31 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

130.49.136.64 - - [25/Jan/2012:16:37:31 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

130.49.136.64 - - [25/Jan/2012:16:37:31 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

130.49.136.64 - - [25/Jan/2012:16:37:31 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

130.49.136.64 - - [25/Jan/2012:16:37:31 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

130.49.136.64 - - [25/Jan/2012:16:37:31 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

130.49.136.64 - - [25/Jan/2012:16:37:31 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

130.49.136.64 - - [25/Jan/2012:16:37:31 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

130.49.136.64 - - [25/Jan/2012:16:37:31 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

130.49.136.64 - - [25/Jan/2012:16:37:31 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

130.49.136.64 - - [25/Jan/2012:16:37:31 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

130.49.136.64 - - [25/Jan/2012:16:37:31 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

130.49.136.64 - - [25/Jan/2012:16:37:31 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

130.49.136.64 - - [25/Jan/2012:16:37:31 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

130.49.136.64 - - [25/Jan/2012:16:37:31 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

130.49.136.64 - - [25/Jan/2012:16:37:31 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

130.49.136.64 - - [25/Jan/2012:16:37:31 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

130.49.136.64 - - [25/Jan/2012:16:49:07 -0500] "GET /dataSearch/ HTTP/1.1"
200 6408

130.49.136.64 - - [25/Jan/2012:16:49:07 -0500] "GET
/dataSearch/css/style.css HTTP/1.1" 200 2753

130.49.136.64 - - [25/Jan/2012:16:49:07 -0500] "GET
/dataSearch/media/collage.jpg HTTP/1.1" 200 16751

130.49.136.64 - - [25/Jan/2012:16:49:07 -0500] "GET
/dataSearch/media/mm_spacer.gif HTTP/1.1" 200 43

130.49.136.64 - - [25/Jan/2012:16:49:07 -0500] "GET
/dataSearch/media/mm_dashed_line.gif HTTP/1.1" 200 1220

130.49.136.64 - - [25/Jan/2012:16:49:13 -0500] "POST /dataSearch/login.jsp
HTTP/1.1" 200 5627

130.49.136.64 - - [25/Jan/2012:16:49:19 -0500] "POST /dataSearch/login.jsp
HTTP/1.1" 200 5627

130.49.136.64 - - [25/Jan/2012:16:49:29 -0500] "GET /eli2121/index.jsp
HTTP/1.1" 302 -

130.49.136.64 - - [25/Jan/2012:16:49:29 -0500] "GET /eli2121/index.new.jsp
HTTP/1.1" 200 6501

130.49.136.64 - - [25/Jan/2012:16:49:29 -0500] "GET /eli2121/css/style.css
HTTP/1.1" 200 2832

130.49.136.64 - - [25/Jan/2012:16:49:29 -0500] "GET
/eli2121/media/collage.jpg HTTP/1.1" 200 16751

130.49.136.64 - - [25/Jan/2012:16:49:29 -0500] "GET
/eli2121/media/mm_spacer.gif HTTP/1.1" 200 43

130.49.136.64 - - [25/Jan/2012:16:49:29 -0500] "GET
/eli2121/media/mm_dashed_line.gif HTTP/1.1" 200 1220

130.49.136.64 - - [25/Jan/2012:16:49:33 -0500] "POST /eli2121/login.jsp
HTTP/1.1" 302 -

130.49.136.64 - - [25/Jan/2012:16:49:33 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

130.49.136.64 - - [25/Jan/2012:16:49:33 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

130.49.136.64 - - [25/Jan/2012:16:49:33 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

130.49.136.64 - - [25/Jan/2012:16:49:33 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

130.49.136.64 - - [25/Jan/2012:16:49:33 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

130.49.136.64 - - [25/Jan/2012:16:49:33 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

130.49.136.64 - - [25/Jan/2012:16:49:33 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

130.49.136.64 - - [25/Jan/2012:16:49:33 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

130.49.136.64 - - [25/Jan/2012:16:49:33 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

130.49.136.64 - - [25/Jan/2012:16:49:33 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

130.49.136.64 - - [25/Jan/2012:16:49:33 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

130.49.136.64 - - [25/Jan/2012:16:49:33 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

130.49.136.64 - - [25/Jan/2012:16:49:33 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

130.49.136.64 - - [25/Jan/2012:16:49:33 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

130.49.136.64 - - [25/Jan/2012:16:49:33 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

130.49.136.64 - - [25/Jan/2012:16:49:33 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

130.49.136.64 - - [25/Jan/2012:16:49:33 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

130.49.136.64 - - [25/Jan/2012:16:49:33 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

130.49.136.64 - - [25/Jan/2012:16:49:33 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

130.49.136.64 - - [25/Jan/2012:16:49:33 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

130.49.136.64 - - [25/Jan/2012:16:51:35 -0500] "GET /eli2121/ HTTP/1.1" 302
-

130.49.136.64 - - [25/Jan/2012:16:51:35 -0500] "GET /eli2121/index.new.jsp
HTTP/1.1" 200 6501

130.49.136.64 - - [25/Jan/2012:16:51:46 -0500] "GET /test/ HTTP/1.1" 404 970

130.49.136.64 - - [25/Jan/2012:16:51:49 -0500] "GET /eli2121/index.new.jsp
HTTP/1.1" 302 -

130.49.136.64 - - [25/Jan/2012:16:51:49 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

130.49.136.64 - - [25/Jan/2012:16:51:49 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

130.49.136.64 - - [25/Jan/2012:16:51:49 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

130.49.136.64 - - [25/Jan/2012:16:51:49 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

130.49.136.64 - - [25/Jan/2012:16:51:49 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

130.49.136.64 - - [25/Jan/2012:16:51:49 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

130.49.136.64 - - [25/Jan/2012:16:51:49 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

130.49.136.64 - - [25/Jan/2012:16:51:49 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

130.49.136.64 - - [25/Jan/2012:16:51:49 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

130.49.136.64 - - [25/Jan/2012:16:51:49 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

130.49.136.64 - - [25/Jan/2012:16:51:49 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

130.49.136.64 - - [25/Jan/2012:16:51:49 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

130.49.136.64 - - [25/Jan/2012:16:51:49 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

130.49.136.64 - - [25/Jan/2012:16:51:49 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

130.49.136.64 - - [25/Jan/2012:16:51:49 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

130.49.136.64 - - [25/Jan/2012:16:51:49 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

130.49.136.64 - - [25/Jan/2012:16:51:49 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

130.49.136.64 - - [25/Jan/2012:16:51:49 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

130.49.136.64 - - [25/Jan/2012:16:51:49 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

130.49.136.64 - - [25/Jan/2012:16:51:49 -0500] "GET /eli2121/home.jsp
HTTP/1.1" 302 -

130.49.136.64 - - [25/Jan/2012:16:51:50 -0500] "GET /eli2121/index.new.jsp
HTTP/1.1" 200 6501

130.49.136.64 - - [25/Jan/2012:16:52:20 -0500] "GET /test/index.jsp
HTTP/1.1" 404 997

130.49.136.64 - - [25/Jan/2012:16:52:30 -0500] "GET /test/index.html
HTTP/1.1" 200 4200

130.49.136.64 - - [25/Jan/2012:16:52:31 -0500] "GET /test/intro.css
HTTP/1.1" 200 5569

130.49.136.64 - - [25/Jan/2012:16:52:31 -0500] "GET /test/img/collage.jpg
HTTP/1.1" 200 16751

130.49.136.64 - - [25/Jan/2012:16:52:31 -0500] "GET
/test/img/mm_dashed_line.gif HTTP/1.1" 200 1220

130.49.136.64 - - [25/Jan/2012:16:52:37 -0500] "GET /test/Date_Time.jsp
HTTP/1.1" 200 17805

130.49.136.64 - - [25/Jan/2012:16:52:37 -0500] "GET /test/mainmenu.css
HTTP/1.1" 200 8844

130.49.136.64 - - [25/Jan/2012:16:52:40 -0500] "GET /test/template-test.jsp
HTTP/1.1" 200 4432

130.49.136.64 - - [25/Jan/2012:16:52:44 -0500] "GET /test/tag-test.jsp
HTTP/1.1" 404 1006

130.49.136.64 - - [25/Jan/2012:16:53:10 -0500] "GET /test/logo.jsp HTTP/1.1"
200 6724

130.49.136.64 - - [25/Jan/2012:16:53:10 -0500] "GET /test/css/style.css
HTTP/1.1" 200 2621

130.49.136.64 - - [25/Jan/2012:16:53:10 -0500] "GET /test/media/collage.jpg
HTTP/1.1" 200 16751

130.49.136.64 - - [25/Jan/2012:16:53:10 -0500] "GET /test/img/pitt-logo.gif
HTTP/1.1" 200 8920

130.49.136.64 - - [25/Jan/2012:16:53:10 -0500] "GET
/test/media/mm_dashed_line.gif HTTP/1.1" 200 1220

130.49.136.64 - - [25/Jan/2012:16:53:10 -0500] "GET
/test/media/mm_spacer.gif HTTP/1.1" 200 43

>You know what a status 302 is, right?  It's not an error...
It's a bit of a conundrum when nothing has been moved, everything is still
there, same layout as it was before.

>p
>
>
>> Thanks,
>> Ben Madore
>> 
>> 
>> 




---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tomcat.apache.org
For additional commands, e-mail: users-help@tomcat.apache.org


Re: Problems after reinstall - Sorry, trying again.

Posted by Pid <pi...@pidster.com>.
On 26/01/2012 20:00, Benjamin Madore wrote:
> Hi all,
> 
> Sorry, I'm new to the list and I hope that my first message didn't breech
> some kind of etiquette or do something to get caught in everyone's spam
> filter.
> 
> I have spent hours trying to find an answer, and I keep going around in
> circles, I'm not sure where to look next.
> 
> Here's my problem:
> 
>                 I have inherited a two web applications written several
> years ago. Since the server, which had been installed just before I arrived,
> was rebuilt last month we have not been able to log in to the application.
> We had continued to update Tomcat and Java before the rebuild so it was
> running the latest versions at the time on Windows 2008.
> 
> Previously we had been using IIS to redirect the site, however we installed
> the Tomcat Connector.
> 
> We use an SSL cert that has been installed in IIS.
> 
> The index.jsp page loads fine, but other jsp pages in the site give an
> error. Other sites have no problem, and I am able to view jsp pages with or
> without https.

What error?

Where is the error indicated, the browser, the log files?


> One web app (the eli2117 and 2121 folders) won't load at all after the login
> page, and the other (dataSearch) appears normal, it will reload the login
> page (related to a bug in the application, login was always flaky on it
> unless you were logged into an instance of the former application).

Exactly what does "won't load at all" mean?  What error message do you
see, what are the symptoms (in as much technical detail as you can provide)?


> Other pages (the test directory) load fine.
> 
> The eli app uses "response.sendRedirect("home.jsp");" in the login process;
> but it appears to me that even login.jsp is not being recognized from the
> form submit.

Where is login.jsp located, etc, etc?  The paragraph above doesn't make
much sense to anyone who doesn't know what your applications file layout
or configuration is.


> We have a test server running Tomcat 6 and MacOS 10.4 where the application
> works fine. I understand there is a big difference between the two, but the
> budget for upgrades is thin around here. As I said before, it ran in the
> current environment prior to the rebuild.
>
> I would appreciate any hints on where to go from here on fixing the problem.

Give us more information.


> I have logs and I'm getting a 302, I'll send out excerpts if anyone is
> interested.

Can't help without it.

You know what a status 302 is, right?  It's not an error...


p


> Thanks,
> Ben Madore
> 
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@tomcat.apache.org
> For additional commands, e-mail: users-help@tomcat.apache.org
> 


-- 

[key:62590808]