localhost:8080 for tomcat server does not work

N

Nagrik

Hello Group,

I installed my tomcat 6.x apache web server on windows xp
professional.

The http://localhost:8080 page displays itself in my "Firefox browser"
however the same url does not display anything on IE, it gives 404
error.

What is puzzling that IE and Firefox do display he web application,
which lies at

http://localhost:8080/tutorial/snoop

I have disabled going to proxy for localhost, that did not help
either.

Thanks in advance.

nagrik
 
R

Robert Aldwinckle

Nagrik said:
Hello Group,

I installed my tomcat 6.x apache web server on windows xp
professional.

The http://localhost:8080 page displays itself in my "Firefox browser"
however the same url does not display anything on IE, it gives 404
error.


IE would never make such a request. It would only make a request
equivalent to

http://localhost:8080/

So if your server doesn't like getting a GET /
that would explain your symptom.

What is puzzling that IE and Firefox do display he web application,
which lies at

http://localhost:8080/tutorial/snoop


Use Fiddler2 or netcap to trace the two cases to see the exact differences.

Alternatively you could experiment with telnet and simulate the impossible
request that way. If your server wants it like that you won't be able to use IE.


HTH

Robert Aldwinckle
---
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top