Gary Gregory

Results 851 comments of Gary Gregory

If this class is indeed generally useful, can it be reused from our Tailer classes?

> Whilst the class seems to work well, I'm not convinced that there is a sufficient need for it. > > Every extra class adds to the maintenance load, so...

Apache Kerby implements Kerberos, you can get inspiration (copy) how they do it: https://directory.apache.org/kerby/

By default, there is no `"ftp",` `"ldap"`, and so on, either ;-) The stock Java platform is extensible of course, using the file `java.nio.file.spi.FileSystemProvider` in the resource directory `META-INF/services`.

I suppose it's semi-surprising that Java versions 11 and up don't support HTTP since they do provide an HTTP client. At least a read-only file system should be "simple" without...

@elharo If you rebase on git master, this should now work due to https://github.com/apache/commons-io/pull/630

Closing, this works now. See `org.apache.commons.io.build.URIOriginTest.testGetInputStream(String)`: ```java @ParameterizedTest @ValueSource(strings = { "http://example.com", "https://example.com" }) void testGetInputStream(final String uri) throws Exception { final AbstractOrigin.URIOrigin origin = new AbstractOrigin.URIOrigin(new URI(uri)); try (final...