Search found 184 matches
- 05 Dec 2023, 00:26
- Forum: Public Forums
- Topic: App not starting with Java21 - JarIndex not found
- Replies: 11
- Views: 37340
Re: App not starting with Java21 - JarIndex not found
new release 1.9.0 is now available
- 05 Dec 2023, 00:26
- Forum: Public Forums
- Topic: Jars are downloaded several times during application running (and it fails)
- Replies: 15
- Views: 46445
Re: Jars are downloaded several times during application running (and it fails)
New release 1.9.0 is now available
- 24 Oct 2023, 22:51
- Forum: Public Forums
- Topic: UnsatisfiedLinkError: wrong ELF class
- Replies: 2
- Views: 19127
Re: UnsatisfiedLinkError: wrong ELF class
This sounds like the libavctKVMIO.so is a 32-bit library and you are currently running a 64-bit JVM.
OWS for Linux only supports 64-bit VMs. So if the 32/64 bit mismatch is the root of the problem your only option is to get a a 64-bit version of libavctKVMIO.so
OWS for Linux only supports 64-bit VMs. So if the 32/64 bit mismatch is the root of the problem your only option is to get a a 64-bit version of libavctKVMIO.so
- 11 Apr 2022, 22:20
- Forum: Public Forums
- Topic: SSL warning appearing multiple times
- Replies: 1
- Views: 7828
Re: SSL warning appearing multiple times
In theory activating the checkbox should add the certificate to OWS and by that the dialog will not appear again. It is possible that the dialog is spawned by multiple threads within a few milliseconds and thus it appears that the checkbox does not work because all the dialogs will pop up even if th...
- 07 Apr 2022, 09:23
- Forum: Public Forums
- Topic: Initialization Error: Could not initialize application
- Replies: 2
- Views: 9759
Re: Initialization Error: Could not initialize application
java.lang.NullPointerException: name can't be null
Usually points to a problem in downloading the JNLP file.
Usually points to a problem in downloading the JNLP file.
- 07 Apr 2022, 09:19
- Forum: Public Forums
- Topic: Keystore Error
- Replies: 5
- Views: 13375
Re: Keystore Error
The nature of this suddenly appearing and also for all users and you not have changed any of the admin privileges at that time points to the keystore file. Maybe this was changed. My first guess would be that the access rights to the file has changed. This can be cause by different operations. Can y...
- 20 Feb 2022, 21:45
- Forum: Public Forums
- Topic: EXCEPTION_ACCESS_VIOLATION
- Replies: 6
- Views: 16699
Re: EXCEPTION_ACCESS_VIOLATION
ok, the log ends abruptly. I assume after the last log line the error from your initial post follows. [ITW-CORE][2022-02-15 16:50:13.458 EST][INFO ][net.sourceforge.jnlp.Launcher] Invoking main() with args: [COM9, https://10.0.8.140:8843/TDT_CFS, E5BECAA6095FD9AB9E5E8F505BB00A93] [ITW-CORE][2022-02-...
- 15 Feb 2022, 22:10
- Forum: Public Forums
- Topic: EXCEPTION_ACCESS_VIOLATION
- Replies: 6
- Views: 16699
Re: EXCEPTION_ACCESS_VIOLATION
Can you please enable all debug logging (incl logging of jnlp file) in the settings and post the logs here.
The above dump would be required if you want to report this at https://github.com/adoptium/adoptium-support/issues
The above dump would be required if you want to report this at https://github.com/adoptium/adoptium-support/issues
- 27 Jan 2022, 20:47
- Forum: Public Forums
- Topic: problem with log4j2
- Replies: 14
- Views: 39413
Re: problem with log4j2
Janak, I suspect the log4j config has an influence on which classes log4j is loading (and maybe even how it is loading them).
- 27 Jan 2022, 12:27
- Forum: Public Forums
- Topic: problem with log4j2
- Replies: 14
- Views: 39413
Re: problem with log4j2
We have heard of others with similar problems.
It would be really great if you could create a minimal reproducer application such that we can debug this issue and fix it.
It would be really great if you could create a minimal reproducer application such that we can debug this issue and fix it.
- 20 Jan 2022, 13:09
- Forum: Installation & Configuration
- Topic: Default Open JDK
- Replies: 5
- Views: 28830
Re: Default Open JDK
yes and no, There is a bundled JRE installed together with OpenWebStart (OWS). But this JRE cannot be used for running applications. This is a precautionary measure as we regularly change this bundled JRE and we do not want to break any working application. Instead OWS has a JVM Manager which can fi...
- 07 Dec 2021, 13:55
- Forum: Features & Proposals
- Topic: libjli.so is needed by OpenwebStart
- Replies: 9
- Views: 47158
Re: libjli.so is needed by OpenwebStart
If a JNLP can be launched then it works. The installer manly does the following steps: - copy all files to the disk (for linux this is /opt/OpenWebStart) - register OWS as an executable for *.jnlp and *.jnlpx files - register an icon for *.jnlp and *.jnlpx files The second and third steps are not re...
- 02 Dec 2021, 15:08
- Forum: Features & Proposals
- Topic: libjli.so is needed by OpenwebStart
- Replies: 9
- Views: 47158
Re: libjli.so is needed by OpenwebStart
Sorry we do not have the resources to support more than .deb at the moment.
Non of the devs is currently using a rpm based package manager.
If you find a solution to your problem we are very great full if you can post it here so that others with the same issue can find a solution.
Non of the devs is currently using a rpm based package manager.
If you find a solution to your problem we are very great full if you can post it here so that others with the same issue can find a solution.
- 02 Dec 2021, 13:51
- Forum: Public Forums
- Topic: launch Jenkins agent jnlp file via OpenWebStart crashed Caused by: java.security.AccessControlException:
- Replies: 17
- Views: 36252
Re: launch Jenkins agent jnlp file via OpenWebStart crashed Caused by: java.security.AccessControlException:
by passing the --nosecurity you disabled all security in OWS and ITW.
There is not more things to disable.
Do you know if your application is defining its own SecurityManager?
There is not more things to disable.
Do you know if your application is defining its own SecurityManager?
- 30 Nov 2021, 14:47
- Forum: Public Forums
- Topic: launch Jenkins agent jnlp file via OpenWebStart crashed Caused by: java.security.AccessControlException:
- Replies: 17
- Views: 36252
Re: launch Jenkins agent jnlp file via OpenWebStart crashed Caused by: java.security.AccessControlException:
You can pass this only on the command line.
Open a powershell or cmd window and navigate to your jnlp file.
Then enter the following command "javaws <name of your jnlp> --nosecurity"
Open a powershell or cmd window and navigate to your jnlp file.
Then enter the following command "javaws <name of your jnlp> --nosecurity"
- 29 Nov 2021, 08:52
- Forum: Public Forums
- Topic: Proxy User Support
- Replies: 4
- Views: 9503
Re: Proxy User Support
Proxy with user/pw is indeed supported. But other means of authentication against a proxy are not
- 26 Nov 2021, 15:44
- Forum: Public Forums
- Topic: problem with different System/JNLP
- Replies: 15
- Views: 24218
Re: problem with different System/JNLP
So the problem is specific to the setup with the WAF.
Can you provide us the debug logs. Without them we will not make any progress.
If you are concerned about the content of the logs you can also send them to openwebstart@karakun.com instead of posting them here in public
Can you provide us the debug logs. Without them we will not make any progress.
If you are concerned about the content of the logs you can also send them to openwebstart@karakun.com instead of posting them here in public
- 26 Nov 2021, 15:38
- Forum: Public Forums
- Topic: launch Jenkins agent jnlp file via OpenWebStart crashed Caused by: java.security.AccessControlException:
- Replies: 17
- Views: 36252
Re: launch Jenkins agent jnlp file via OpenWebStart crashed Caused by: java.security.AccessControlException:
Can you pass "--nosecurity" as an argument to javaws when launching the JNLP.
- 26 Nov 2021, 10:03
- Forum: Public Forums
- Topic: launch Jenkins agent jnlp file via OpenWebStart crashed Caused by: java.security.AccessControlException:
- Replies: 17
- Views: 36252
Re: launch Jenkins agent jnlp file via OpenWebStart crashed Caused by: java.security.AccessControlException:
We also just released version 1.5.0 which has improvements which may help in your case.
So please give it a try and send us a fresh set of log files in case you still encounter the problem
So please give it a try and send us a fresh set of log files in case you still encounter the problem
- 26 Nov 2021, 09:37
- Forum: Public Forums
- Topic: Download new Version in OWS failed
- Replies: 2
- Views: 7809
Re: Download new Version in OWS failed
We will investigate this