java-web-start

Java Web Start Jar signing Issue?

本小妞迷上赌 提交于 2019-12-05 06:35:30
问题 I'm trying to run this Java application (jar) via Java Web Start and am having an incredibly difficult time. Here's my current JNLP source: <?xml version="1.0" encoding="utf-8"?> <jnlp spec="1.0+" codebase="http://localhost:8080/" href="Test.jnlp"> <information> <title>Jnlp Testing</title> <vendor>YONG MOOK KIM</vendor> <homepage href="http://localhost:8080/" /> <description>Testing Testing</description> </information> <security> <all-permissions/> </security> <resources> <j2se version="1.6+"

Web Start Application built on NetBeans Platform doesn't create desktop shortcut & start menu item

一笑奈何 提交于 2019-12-05 06:00:27
I've created a NetBeans Platform application that is launched using Java Web Start. I built the WAR file using the 'Build JNLP Application'-command in Netbeans 6.8. I've added a desktop shortcut and menu item to the JNLP file, but for some reason, these are not created when the application is launched. However, when I go to: Control Panel -> Java -> Temporary Internet Files -> View -> Select my application > Click 'Install shortcuts to the selected application' the desktop and menu shortcuts are created correctly. Also, in the Java Console, the Shortcut Creation option is set to the following

JXMapKit/-Viewer extremely slow as webstartable - where to start digging?

我只是一个虾纸丫 提交于 2019-12-05 05:35:54
Just tried to add some swingx-ws components to the overall swinglabs demos - and noticed that a simple JXMapKit/-Viewer is orders of magnitude slower to load the tiles in the webstartable compared to loading locally. Rather lost on where I should start looking (ui updates seem to be on the EDT, though might need a closer look): anybody else experiencing the different loading times? any guess on what might be the reason? how to debug a webstartable? The code is rather straightforward (to run locally, you'll need swingx and swingx-ws : public class WSDemo { private JComponent createContent() {

Java Web Start app fails to update from a shortcut

好久不见. 提交于 2019-12-05 02:32:35
问题 I have deployed a Java(FX) desktop app using Java Web Start. The updates work fine but only if I run the downloaded JNLP by hand, they do not work from shortcuts installed to desktop and menu. Here is my JNLP: <?xml version="1.0" encoding="utf-8"?> <jnlp codebase="http://192.168.1.85/deploy/" spec="1.0" xmlns:jfx="http://javafx.com" href="Companyapp.jnlp"> <information> <title>Companyapp</title> <vendor>Media Citizens</vendor> <description>Companyapp Presentation Desktop</description>

Migrating Java Applet to Java WebStart (JNLP)

和自甴很熟 提交于 2019-12-04 20:33:45
I'm going to migrate a Java Applet to be started via JNLP as a Java Web Start Application and run into some troubles/missunderstandings ... One of the resources I've got is this: 6 Migrating Java Applets to Java Web Start and JNLP: But let's start: Currently the application is an applet ( JApplet ) and was started in past by embedding into an HTML with the applet tag referring to a JNLP. Now since applet support was dropped by all browsers, I should run it as Java Web Start. Simply calling same JNLP failed as the resources (JAR files) couldn't be loaded. This was as a first step fixed by

What prevents Java from verifying signed jars with multiple signature algorithms

拟墨画扇 提交于 2019-12-04 16:00:04
问题 Quick background: We release a webstart application, which includes our own application jars and numerous third-party jars. Webstart requires that all distributed jars referred to by the jnlp file be signed by a single certificate. We therefore sign all jars (our jars and the third-party jars) using a self-signed certificate. Some third-party jars are already signed by the party which produced them, but we just sign them again, and this works fine. Until now. Problem: We recently moved from

Can an Applet that uses JavaScript to communicate with web server be migrated to JWS?

自闭症网瘾萝莉.ら 提交于 2019-12-04 15:51:21
Just sharing some information hoping that it would be useful to the community. Usability of Applets have gone down since various browsers stopped supporting plugins. Google has decided to discontinue support for NPAPI plugin, EDGE does not support plugins, Firefox is also discouraging use of plugins, and Mozilla may follow the suite. One of the applications we developed required use of Applets for the following reasons Ability to access ports and peripheral devices attached to computing devices Ability to exchange information with the web application (Through JavaScript) Noninvolvement of

Alternative of xuggler for video encoding which doesnot require installaion? [closed]

﹥>﹥吖頭↗ 提交于 2019-12-04 13:15:49
Closed. This question is off-topic. It is not currently accepting answers. Learn more . Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 4 years ago . I am creating a screencast Java Web Start application. Encoding Video using xuggler requires: installing xuggler on the client system - Which is tedious. (OR) Using xuggle-xuggler.jar version 5.2 or above whose size is around 35 MB plus. - this increases the time required for the application to load. Is there any other alternative in which installation is not required as well jars are not so huge. I

jars no longer seem to be signed. JARSigningException: Found unsigned entry

浪尽此生 提交于 2019-12-04 11:47:39
NB 7.4RC2, Win 7 In Java Control Panel, the "Keep Temporary Internet Files" checkbox is checked. I am signing my Web Start application with trusted certificates. However, the 3rd party jars in dist/lib seem to be unsigned. C:\Program Files (x86)\Java\jdk1.7.0_40\bin\jarsigner" -verify javafx-dialogs-0.0.3.jar jar is unsigned. (signatures missing or not parsable) So when I run my application in the debugger, it refuses to start complaining of unsigned jars ExitException[ 3]com.sun.deploy.net.JARSigningException: Found unsigned entry in resource: file:/C:/Users/me/Documents/NetBeansProjects

Java Web Start and Security

爷,独闯天下 提交于 2019-12-04 10:19:56
It was just pointed out to me that the Java Web Start applications from my blog, for example my Key Bindings entry, no longer function because of the follow security error: Upon doing some investigation I have determined that security has been improved in JDK7 and that the default setting found on the Security Tab of the Java Control Panel found on the Windows Control Panel is set to High which prevents the app from running. If you do change this setting to Medium , then you have the choice to accept the app and it will run. I'm guessing most people will not want to do this, so it looks like I