Re: RFR: 8012261: update policytool to support java.net.HttpURLPermission

2013-05-17 Thread Tom Hawtin
On 17/05/2013 03:17, Weijun Wang wrote: which supports the new HttpURLPermission type introduced in 8010464: Evolve java networking same origin policy http://hg.openjdk.java.net/jdk8/tl/jdk/rev/93a268759ec3 Not looked through it thoroughly, but are we sure we want url.toString()? T

Re: URL guarantees that the ftp protocol handler is present, worth re-considering this?

2012-10-16 Thread Tom Hawtin
On 15/10/2012 18:20, Mike Duigou wrote: We should also nuke gopher and netdoc (in sun.net.www.protocol package) I am not sure if mailto should continue as there are better solutions. I think it's worth pointing out that in practice URL is not used just to open a connection. It's also used as

Re: Code Review Request: 7090158 Networking Libraries don't build with javac -Werror

2011-09-14 Thread Tom Hawtin
On 14/09/2011 16:46, Kurchi Hazra wrote: + Class[] cl = new Class[2]; + cl[0] = SocketAddress.class; + cl[1] = Integer.TYPE; + Class clazz = impl.getClass(); I have to say, I think that would read better as: Class[] cl = { SocketAddress.class, int.class }; Class clazz = impl

Re: Questions from Apple

2009-04-07 Thread Tom Hawtin
the JRE. (Although I guess it could become a module under Jigsaw (and OSGi).) Tom Hawtin