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]> wro
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
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 Win
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?
XP
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
inform
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 A
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