Message6408

Author amak
Recipients amak, xjyvb3
Date 2011-02-26.20:41:48
SpamBayes Score 8.501377e-05
Marked as misclassified No
Message-id <1298752908.98.0.762932138141.issue1711@psf.upfronthosting.co.za>
In-reply-to
Content
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
History
Date User Action Args
2011-02-26 20:41:48amaksetmessageid: <1298752908.98.0.762932138141.issue1711@psf.upfronthosting.co.za>
2011-02-26 20:41:48amaksetrecipients: + amak, xjyvb3
2011-02-26 20:41:48amaklinkissue1711 messages
2011-02-26 20:41:48amakcreate