I am trying to deploy JavaFX application, but when I run it in browser, it looks like it cannot find the classes in external jar files.
java.lang.RuntimeExcepti
Sorry guys, I did mislead you a little bit. The problem, why my application works under Netbeans and in browser not was this line in static block in my jar:
String osName = (String) System.getProperties().get("os.name");
which return correct value in Netbeans (windows Xp), but Null in Browser. But when I slightly change the code to this>
String osName = (String) System.getProperty("os.name");
it return correct value in browser too. So it has nothing to do with external jars or signing the application. The problem still remains, because that external jars is part of our corporal java infrastructure, so I just cannot change the code directly, but this would be another topic :)