Community
Participate
Working Groups
Consider for 3.4.1 +++ This bug was initially created as a clone of Bug #133048 +++ In eclipse Build id: I20051102-1600 I am creating a new HTTP/HTTPS url handler to provide failover support and more transparent proxy/authentication usage. I have registered my URLStreamHandlerService with the BundleContext, however it seems that since the new Java 5 method URLStreamHandler.openConnection(URL u, Proxy p) is not handled by URLStreamHandlerProxy it must be handled by the superclass, URLStreamHandler - which has not implemented this method. It seems it would be nice to add something like this to URLStreamHandlerProxy so that my handler can deal with the call: protected URLConnection openConnection(URL url, Proxy p) throws IOException { return realHandlerService.openConnection(url,p); }
Fixed in 3.4.1. Will not be available until August 6th 3.4.1 build.