** Changed in: openjdk-6 (Debian)
       Status: Fix Committed => Fix Released

-- 
commons-httpclient does not work with net.ipv6.bindv6only=1
https://bugs.launchpad.net/bugs/547099
You received this bug notification because you are a member of OpenJDK,
which is subscribed to openjdk-6 in ubuntu.

Status in “openjdk-6” package in Ubuntu: Fix Released
Status in “openjdk-6” package in Debian: Fix Released

Bug description:
>From the Debian report:

Hi,

I could finally track the IPv6 issue of eclipse to this package. It
seems to be a bug of commons-httpclient. The following code

  import org.apache.commons.httpclient.*;
  import org.apache.commons.httpclient.methods.*;

  class Http {
    public static void main(String[] args) throws Exception {
      HttpClient client = new HttpClient();
      GetMethod method = new GetMethod(args[0]);
      int statusCode = client.executeMethod(method);
      if (statusCode != HttpStatus.SC_OK) {
        System.err.println("Method failed: " + method.getStatusLine());
      }
    }
  }

fails with net.ipv6.bindv6only=1 but works with net.ipv6.bindv6only=0.
(openjdk version: 6b18~pre3-1)


Torsten



_______________________________________________
Mailing list: https://launchpad.net/~openjdk
Post to     : [email protected]
Unsubscribe : https://launchpad.net/~openjdk
More help   : https://help.launchpad.net/ListHelp

Reply via email to