openjdk team mailing list archive
-
openjdk team
-
Mailing list archive
-
Message #03376
[Bug 547099] Re: commons-httpclient does not work with net.ipv6.bindv6only=1
** Changed in: openjdk-6 (Debian)
Status: Unknown => Fix Committed
--
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: In Progress
Status in “openjdk-6” package in Debian: Fix Committed
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