Trying to access a sever from my school...

Here's the scoop. I'm trying to access this server;

Host: 204.209.44.8

Port: 9000

Now here's the message I get when I try.

java.security.AccessControlException: access denied (java.net.SocketPermission your.web.server.com resolve)

at java.security.AccessControlContext.checkPermission(Unknown Source)

at java.security.AccessController.checkPermission(Unknown Source)

at java.lang.SecurityManager.checkPermission(Unknown Source)

at java.lang.SecurityManager.checkConnect(Unknown Source)

at java.net.InetAddress.getAllByName0(Unknown Source)

at java.net.InetAddress.getAllByName0(Unknown Source)

at java.net.InetAddress.getAllByName(Unknown Source)

at java.net.InetAddress.getByName(Unknown Source)

at java.net.InetSocketAddress.<init>(Unknown Source)

at java.net.Socket.<init>(Unknown Source)

at _8._105(Unknown Source)

at _15._177(Unknown Source)

at _9.run(Unknown Source)

Oh, and I am using Java 2 platform standard edition, version 1.4.2_08

Any ideas how I can bypass this, or what went wrong? I really want to learn more about Java.

[1171 byte] By [Static_Impulsea] at [2007-10-2 1:57:46]
# 1

Applets can only connect to the server it came from:

java.security.AccessControlException: access denied (java.net.SocketPermission your.web.server.com resolve)

indicates that the applet connects to a server other than the one it came from.

Signing applets:

http://forum.java.sun.com/thread.jsp?forum=63&thread=524815

second post and last post for the java class file using doprivileged

Still problems?

A Full trace might help us out:

http://forum.java.sun.com/thread.jspa?threadID=656028

harmmeijera at 2007-7-15 19:38:53 > top of Java-index,Security,Signed Applets...