Re: Cannot Access Tomcat Server Using IP Address

2007-05-21 Thread Teh Noranis Mohd Aris
I already solve the problem. I fixed the program and it works! Thank you so much for the replies. Yours Sincerely, TEH Teh Noranis Mohd Aris [EMAIL PROTECTED] wrote: Yes, I can access the login.html interface from a different computer using http://IPaddress:8080/login.html but when I

Re: Cannot Access Tomcat Server Using IP Address

2007-05-21 Thread domenico di leo
When you try to acces to your web application form another PC, you need the ip address of server where your application is runnign but also the tcp port(in your case is 8080). the coorect web address is: http://ip_address:8080/login.html On 21/05/07, Teh Noranis Mohd Aris [EMAIL PROTECTED]

Cannot Access Tomcat Server Using IP Address

2007-05-20 Thread Teh Noranis Mohd Aris
Dear All, I've tested my applications using http://localhost:8080/login.html in the same computer and it works. However, when I tried to acces my applications using an IP Address in another computer by typing http://ipaddress/login.html, The page cannot be found is displayed. How can I

Out of Office AutoReply: Cannot Access Tomcat Server Using IP Address

2007-05-20 Thread Rene de Vries

Re: Cannot Access Tomcat Server Using IP Address

2007-05-20 Thread Omar Eljumaily
First of all, you need to access it via http://ipaddress:8080/login.html If you want port 80, you need to set up the appropriate connector or redirect port 8080 to port 80. Also, you may have a firewall issue. Which OS are you using? Teh Noranis Mohd Aris wrote: Dear All, I've tested

Re: Cannot Access Tomcat Server Using IP Address

2007-05-20 Thread David Smith
Include the port number in your request -- ie http://ipaddress:8080/login.html --David Teh Noranis Mohd Aris wrote: Dear All, I've tested my applications using http://localhost:8080/login.html in the same computer and it works. However, when I tried to acces my applications using an IP

Re: Cannot Access Tomcat Server Using IP Address

2007-05-20 Thread Teh Noranis Mohd Aris
Thank you. It's working now, the application can be accessed but when I type a file name to access a file in the server, I got an error java.security.AccessControlException:access denied (java.net.SocketPermission localhost:8080 connect, resolve). How can I solve this problem? For your

Re: Cannot Access Tomcat Server Using IP Address

2007-05-20 Thread Omar Eljumaily
I don't understand. Are you able to access login.html from outside your server machine? The socketpermerission problem you have sounds like a firewall issue or a administrator privileges problem not allowing you to accept incoming sockets. Are you running with administrator privs on XP?

Re: Cannot Access Tomcat Server Using IP Address

2007-05-20 Thread Teh Noranis Mohd Aris
Yes, I can access the login.html interface from a different computer using http://IPaddress:8080/login.html but when I tried to access a file, I got the mentioned problem displayed in the text area. However, I can access a file if I'm using http://localhost:8080/login.html. I'm testing using