Gerald Rosenberg

Results 29 comments of Gerald Rosenberg

The public documentation found is sparse, but suggests SIP should not be the blocking factor: > The symbolic links from `/etc`, `/tmp` and `/var` to `/private/etc`, `/private/tmp` and `/private/var` are...

Not sure adding debug statements would be illuminating. Might first try using Java's built-in [Simple Web Server](https://www.infoworld.com/article/3705369/javas-simple-web-server-static-http-servers-made-easy.html) to serve static content from a subdirectory of `System.getProperty("java.io.tmpdir")`. Also, did you inspect...

Very much appreciate your digging in to find a fix. Please run and report the actual results (sans any personally identifying information) of the following: Path path = Path.of(System.getProperty("java.io.tmpdir"), "test");...

Again try { Path path = Path.of(System.getProperty("java.io.tmpdir"), "test"); path.toFile().mkdirs(); Path real = path.toRealPath(); System.out.print(String.format("Path is '%s'\n", path)); System.out.print(String.format("Real is '%s'\n", real)); } catch (Exception e) { System.out.print(String.format("Except: '%s'\n", e.getMessage())); }

@sjorek If you still have your test build of Fluentmark, please test by: 1) reverse your proposed change 2) in `net.certiv.fluent.dt.vis.server.LiveServer.java`, at about line 148 , comment out the following...

@upeuker - thank you. Fairly certain that removing `chx.clearAliasChecks()` will fix the problem (appears to **remove** symbolic link support on *nix-like systems). @sjorek, can you confirm? Thanks.

@sjorek - thanks for checking. IIUC, the only effect of removing `ctx.clearAliasChecks()` is to **not** remove the symbolic link checker that is added **by default** in the constructor of the...

@sjorek - excellent analysis. Thanks. > We should not just fix the resource-handler's base-dir, but instead the live-server root-dir, by using the canonical-path of the live-server's root-dir, which delivers the...

New release is now live.