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.

