Search found 4 matches

by pkeusem
11 Feb 2021, 19:52
Forum: Public Forums
Topic: [SOLVED] Is it possible to use a single jar file to start as an applet and as an application?
Replies: 7
Views: 7807

Re: Is it possible to use a single jar file to start as an applet and as an application?

Yeah I noticed the logMsg earlier. It's not the Java code that's the problem though, it's the JNLP files. I went over everything again and I noticed that when I copied the applet JNLP file to create the application JNLP file, I forgot to update the href in the JNLP tag, so the application JNLP file ...
by pkeusem
11 Feb 2021, 14:43
Forum: Public Forums
Topic: [SOLVED] Is it possible to use a single jar file to start as an applet and as an application?
Replies: 7
Views: 7807

Re: Is it possible to use a single jar file to start as an applet and as an application?

The problem is regardless of which HTML/JNLP I use, it always runs as an Applet. Here a the log messages from two attempted runs. The first is from HelloWorldGuiApplet-jnlp.html / HelloWorldGuiApplet.jnlp which attempts to run the HelloWorldGuiApplet class as an applet using the <applet-desc> tag: I...
by pkeusem
10 Feb 2021, 13:06
Forum: Public Forums
Topic: [SOLVED] Is it possible to use a single jar file to start as an applet and as an application?
Replies: 7
Views: 7807

Re: Is it possible to use a single jar file to start as an applet and as an application?

Yep, copy paste error. Or more likely copy, paste, paste. Here's the second JNLP file: <?xml version="1.0" encoding="UTF-8"?> <jnlp spec="1.0+" codebase="http://point:8080/hello" href="HelloWorldGuiApplet.jnlp"> <information> <title>HelloWorldGuiAppl...
by pkeusem
10 Feb 2021, 00:09
Forum: Public Forums
Topic: [SOLVED] Is it possible to use a single jar file to start as an applet and as an application?
Replies: 7
Views: 7807

[SOLVED] Is it possible to use a single jar file to start as an applet and as an application?

Hello, Our Java client application is currently implemented to run as a Java Applet. This works fine when run on the Java plugin from IE or started with Oracle's Java Web Start but we are trying to add support for using OpenWebStart. I understand that OpenWebStart does not support running Applets bu...