Re: hg: jdk8/tl/jdk: 8027687: The constructors of URLPermission class do not behave as described in javad

2013-11-04 Thread mark . reinhold
2013/11/4 1:49 -0800, michael.x.mcma...@oracle.com: > Changeset: 48449b5390fa > Author:michaelm > Date: 2013-11-04 17:47 + > URL: http://hg.openjdk.java.net/jdk8/tl/jdk/rev/48449b5390fa > > 8027687: The constructors of URLPermission class do not behave as described > in javad >

Changeset rolled back: jdk8/tl/jdk: 7152892: some jtreg tests fail with permission denied

2014-02-11 Thread mark . reinhold
This changeset was erroneously pushed to jdk8/tl/jdk: Changeset: da4b0962ad11 Author:robm Date: 2014-02-10 14:35 + URL: http://hg.openjdk.java.net/jdk8/tl/jdk/rev/da4b0962ad11 7152892: some jtreg tests fail with permission denied Reviewed-by: coffeys ! test/java/

Re: RFR JDK-8024832: (so) ServerSocketChannel.socket().accept() throws IllegalBlockingModeException if not bound

2014-05-27 Thread mark . reinhold
2014/5/26 20:01 -0700, michael.x.mcma...@oracle.com: > I think it should be throwing a SocketException rather than a > NotYetBoundException to be consistent with ServerSocket.accept() No, NotYetBoundException is the correct exception here. The NIO exception hierarchy was intentionally designed to

Re: RFR JDK-8024832: (so) ServerSocketChannel.socket().accept() throws IllegalBlockingModeException if not bound

2014-05-27 Thread mark . reinhold
2014/5/27 1:10 -0700, michael.x.mcma...@oracle.com: > On 27/05/14 15:56, mark.reinh...@oracle.com wrote: >> 2014/5/26 20:01 -0700, michael.x.mcma...@oracle.com: >>> I think it should be throwing a SocketException rather than a >>> NotYetBoundException to be consistent with ServerSocket.accept() >>

JEP 110: HTTP 2 Client

2014-11-12 Thread mark . reinhold
New JEP Candidate: http://openjdk.java.net/jeps/110 - Mark

JEP 321: HTTP Client (Standard)

2017-12-04 Thread mark . reinhold
New JEP Candidate: http://openjdk.java.net/jeps/321 - Mark

Enable system proxies by default on Linux?

2019-09-24 Thread mark . reinhold
Using network proxies with Java applications is still, after all these years, painful on Linux. Is there a reason not to change the default value of the system property `java.net.useSystemProxies` [1] to `true`? This would still give priority to the system properties `http.proxyHost`, `ftp.proxyH

Re: Enable system proxies by default on Linux?

2019-09-25 Thread mark . reinhold
2019/9/25 6:21:46 -0700, chris.hega...@oracle.com: > ... > > Yeah, what we want is for the ( standard? ) environment variables, > http_proxy, https_proxy, and ftp_proxy, to be recognized and used by the > networking implementation, by default. Daniel's previous investigation > has shown us that do

Re: Enable system proxies by default on Linux?

2019-09-26 Thread mark . reinhold
2019/9/26 6:34:19 -0700, chris.hega...@oracle.com: >> On 25 Sep 2019, at 19:52, mark.reinh...@oracle.com wrote: >> >> Perhaps this is more a matter of test clean-up than anything else. > > For the tests I filed 8231504 - "Update networking tests to avoid > implicit dependency on the system proxie

New candidate JEP: 373: Reimplement the Legacy DatagramSocket API

2020-03-04 Thread mark . reinhold
https://openjdk.java.net/jeps/373 - Mark

Re: RFR: JDK-8255262: Remove use of legacy custom @spec tag

2020-10-22 Thread Mark Reinhold
On Thu, 22 Oct 2020 17:16:23 GMT, Jonathan Gibbons wrote: > The change is (just) to remove legacy usages of a JDK-private custom tag. As the creator of these tags many moons ago, I approve this change. - Marked as reviewed by mr (Lead). PR: https://git.openjdk.java.net/jdk/pull/81

Re: RFR: 8255989: Remove explicitly unascribed authorship from Java source files

2020-11-06 Thread Mark Reinhold
On Fri, 6 Nov 2020 20:11:24 GMT, Pavel Rappo wrote: > This PR proposes to remove > 1. JavaDoc `@author` tags with unclear semantics: `@author > unascribed|unattributed|unknown` > 2. A couple of astray Form Feed (a.k.a. FF, `\f`, `0xC`, or `^L`) characters Marked as reviewed by mr (Lead).

New candidate JEP: 408: Simple Web Server

2021-03-29 Thread mark . reinhold
https://openjdk.java.net/jeps/408 Summary: Provide a command-line tool to start a minimal web server that serves static files in the current directory. This low-threshold utility will be useful for prototyping, ad-hoc coding, and testing purposes, particularly in educational contexts. - M

New candidate JEP: 418: Internet-Address Resolution SPI

2021-09-03 Thread mark . reinhold
https://openjdk.java.net/jeps/418 Summary: Define a service-provider interface (SPI) for host name and address resolution, so that java.net.InetAddress can make use of resolvers other than the platform's built-in resolver. - Mark

Re: New candidate JEP: 418: Internet-Address Resolution SPI

2021-09-03 Thread mark . reinhold
A suggestion, if I may ... Consider using the term “resolver” instead of “name service,” especially in the names of the SPI classes and interfaces. That would avoid confusing the service of looking up names and addresses with the service of providing a service to look up names and addresses. That

Re: New candidate JEP: 418: Internet-Address Resolution SPI

2021-09-17 Thread mark . reinhold
2021/9/17 3:03:25 -0700, aleksej.efi...@oracle.com: > We had a discussion about the naming and decided to go with > InetAddressResolverProvider​​ and InetAddressResolver​​ names. > I will update the JEP​ text to reflect that. That sounds fine. - Mark

Re: Heads up: Bad changeset rollback

2008-09-04 Thread Mark Reinhold
> Date: Wed, 03 Sep 2008 13:08:38 -0700 > From: [EMAIL PROTECTED] > Last night there was a changeset introduced to the JSN gate that > contained an incorrect changeset comment. Rather than pollute the > changeset history for everyone, we're going to rollback this changeset, > and have the author

Re: hg: jdk7/tl/jdk: 6843995: Added RowsetFactory and Deprecate COMMIT_ON_ACCEPT_CHANGES, make constants final that needed to be.

2009-08-20 Thread Mark Reinhold
This change was integrated prematurely. I've rolled it back in the jdk7/tl/jdk repository. If you've already pulled it into a local repository then you can remove it using the hg strip command, which is part of the mq extension. Your tip changeset should be: changeset: 1563:5cd12b68d09b u

JEP 110: New HTTP Client

2011-10-29 Thread mark . reinhold
Posted: http://openjdk.java.net/jeps/110 - Mark

JEP 125: Network Interface Aliases, Events, and Defaults

2011-11-03 Thread mark . reinhold
Posted: http://openjdk.java.net/jeps/125 - Mark

JEP 183: HTTP Cross-Origin Resource Sharing

2013-04-11 Thread mark . reinhold
Posted: http://openjdk.java.net/jeps/183 - Mark

JEP 184: HTTP URL Permissions

2013-04-11 Thread mark . reinhold
Posted: http://openjdk.java.net/jeps/184 - Mark