Re: slightly ot: java9 runtime images

2015-05-13 Thread Tom Eugelink
Correct. I keep comparing to my appjar tool which, as said before, is a single jar containing all the other jars unmodified. When started through java -jar, it does the following: - Unpack itself to a temp directory. - Spawn a new JVM with a classpath referring to all the unpacked stuff. - The i

Maximum size of a canvas?

2015-05-13 Thread Werner Lehmann
Hi, is there a way to somewhat safely determine the maximum size of a canvas? I am using the canvas to display a report result in a custom report viewer control. The report can be zoomed in which basically means that I recreate the canvas with a bigger size (the canvas is inside a scrollpane)

Re: slightly ot: java9 runtime images

2015-05-13 Thread Danno Ferrin
I think what Tom was alluding to was an all in one executable that contains all the data in one file. What the "Windows Application Image" creates is a directory that contains all the jars, the JRE, and the executable that launches the whole setup. If an all in one executable is something you

Re: App hang and pulse logger stops

2015-05-13 Thread Jeff Martin
I think I ran into this a bit when I had a mixed swing/javafx application. It was always due to inadvertently performing Swing activity while still in the JFX thread or visa versa. I think sometimes checking the stack frame on both threads would show me where it was (but sometimes not). I think

Re: App hang and pulse logger stops

2015-05-13 Thread Pedro Duque Vieira
Anyone...? (see below) On Mon, May 11, 2015 at 8:03 PM, Pedro Duque Vieira < pedro.duquevie...@gmail.com> wrote: > > Hi, > > > > Already posted this on the OTN forum but got no response. > > > I have a swing/javafx app that is hanging randomly without any error > information (exceptions thrown, e

Re: slightly ot: java9 runtime images

2015-05-13 Thread Benjamin Gudehus
Hi Tom! >I would really like to be able to generate such a standalone exe. With Danno's javafx-gradle Gradle plugin and with the java package API (com.oracle.tools.packager.Bundler from Java 8) it is possible to generate a standalone exe without installer (the bundler name is "Windows Application

Re: slightly ot: java9 runtime images

2015-05-13 Thread Tom Eugelink
On 7-5-2015 15:52, Danno Ferrin wrote: It would be a major improvement (not only for JavaFX applications, but also standalone servers) if it would become possible to create a truly single distributable, without having to repack the jars. So either by automatic unpacking to a tmp and setting th