Sponsored Link •
|
Advertisement
|
Advertisement
|
This page contains an archived post to the Java Answers Forum made prior to February 25, 2002. If you wish to participate in discussions, please visit the new Artima Forums.
Message:
Hi , I have the same problem in my application. I want to connect to a machine while i'm behind a firewall I have a normal Socket that wants to connect to a ServerSocket running on a different machine. My socket is constructed with System.getProperties().put("socksProxyHost", user.socksProxy) ; When i try to connect to the serverSocket I get this Exception be.jcs.juice.client.comms.FileReceiverException: Exception occurred during Socket allocating at be.jcs.juice.client.comms.DefaultFileReceiver.open(DefaultFileReceiver.java:76) at be.jcs.juice.client.comms.TransferThread.run(TransferThread.java:62) java.net.SocketException: SOCKS server cannot conect to identd at java.net.PlainSocketImpl.doSOCKSConnect(PlainSocketImpl.java, Compiled Code) at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java, Compiled Code) at java.net.PlainSocketImpl.connect(PlainSocketImpl.java, Compiled Code) at java.net.Socket. at java.net.Socket. at be.jcs.juice.client.comms.DefaultFileReceiver.open(DefaultFileReceiver.java:73) What does it mean and furthermore how can i solve it. I'm doing some research for my company and i'm stuck. Thanks in advance, David De Schepper |
Sponsored Links
|