we are developing an SWT application which uses some JavaFX controls. Following the example from http://docs.oracle.com/javafx/2/swt_interoperability/jfxpub-swt_interoperability.htm , it is suggested to use the locally installed version of the jfxrt.jar as JavaFX runtime environment and netbeans will use this jar as part of the package when building a webstart/jnlp distribution.
However this is generally not encouraged, as the jfxrt.jar has to fit to the installed version at the client (and will otherwise lead to a crash). Instead it is suggested to define a dependency to JavaFX in your jnlp file using the
<jfx:javafx-runtime [...]>
tag. When doing so, the SWT integration unfortunately fails by throwing a
java.lang.NoClassDefFoundError: org/eclipse/swt/widgets/Canvas
error. This is likely because of the way, the SWT classes are located.
Is there any way, this scenario is supported?
Thanks for any clue.
