Message6408
To determine if this is problem with the underlying ipv6 support in your JVM, please can you compile and run the following code with your JDK on your platform, and report the results.
//=====================================
import java.net.InetSocketAddress;
import java.nio.channels.SocketChannel;
class ipv6
{
static public void main(String[] notUsed)
throws Exception
{
InetSocketAddress ipv6_addr = new InetSocketAddress("::1", 9999);
SocketChannel channel = SocketChannel.open();
channel.socket().connect(ipv6_addr);
}
}
// end |
|
Date |
User |
Action |
Args |
2011-02-26 20:41:48 | amak | set | messageid: <1298752908.98.0.762932138141.issue1711@psf.upfronthosting.co.za> |
2011-02-26 20:41:48 | amak | set | recipients:
+ amak, xjyvb3 |
2011-02-26 20:41:48 | amak | link | issue1711 messages |
2011-02-26 20:41:48 | amak | create | |
|