Page 1 of 1

Location of JNLP startup file

PostPosted: Thu Jun 18, 2020 12:50 pm
by Bernd.N
I already signed the complete tree below the application_server folder with the code signing utility (= subfolders beans, lib and plugins).
But somehow Java is still blocking our appname.jnlp from starting.

Our users install our system by putting this to their browser:
Code: Select all
http://de11111.aaa.bbb.net:8080/servoy-client/appname.jnlp


Where can I find the file appname.jnlp on the Servoy server?
I did not find it below the application_server folder.

Do I need to sign appname.jnlp with my Java keystore file, or is there a file "appname.jar" that I have to sign?

Re: Location of JNLP startup file

PostPosted: Thu Jun 18, 2020 1:04 pm
by jcompagner
no you can't do that, that is a generated jnlp
(you just have to accept that and go on)

If you need a signed jnlp then you need to use bootstrapper https://wiki.servoy.com/pages/viewpage. ... d=23856169

or i think removing some settings : -XX:SoftRefLRUPolicyMSPerMB=3600000 from the servoy.vmClientArgs property (make sure you put a space into that not empty) that could also help

Re: Location of JNLP startup file

PostPosted: Thu Jun 18, 2020 1:17 pm
by Bernd.N
You mean I should replace
servoy.vmClientArgs=-XX:SoftRefLRUPolicyMSPerMB=3600000
by
servoy.vmClientArgs=_
where _ is a space, in order to have less problems with Java blocking our app?