java-web-start

How can I access the classes loaded by Java Web Start when dynamically compiling code?

I am dynamically compiling code in my client application. When I start the application with Java Web Start I get an exception. The exception only occurs when it is run through Java Web Start. //The exception evolver.core.model.change.execution.ExecutionException: Compilation failed! DynamicComparator.java:2: package evolver.core.model....

Problem using JConsole remotely with JBoss 4.2.2 with app that uses JWS

I am trying to set up JBoss 4.2.2 and JConsole for remote monitoring. As per many of the how-to's I have found on the web to do this you need to enable jmxremote by setting the following options in run.conf. (I realize the other two opts disable authentication) JAVA_OPTS="$JAVA_OPTS -Dcom.sun.management.jmxremote.port=11099" JAVA_OPTS...

Why does Java Web Start not work with 64-bit Java environments?

Java Web Start does not come with 64-bit builds of the JDK. Why is this? What is lacking that keeps it from building and working? ...

Java Web Start - Popularity

I recently used a Java Web Start application. I launched it from my web browser using an embedded jnlp link in the page I was viewing. The application was downloaded, launched and worked just fine. It had access to my local file-system and remembered my preferences between restarting it. What I want to know is why are Java Web Start ap...

How can I debug applications under Java Web Start (JNLP) ?

I know how I can debug a remote Java VM with Eclipse. Bit how can I do it with a Java Web Start program. I have a problem that only occur in Java Web Start. It must be security related. I need a solution that work with a current Java VM like 1.6.0_12. ...

Launching a desktop application from a web site

Is it feasible to launch an application via a browser / URL? What are the options for doing this? I know the way to do it with IE and Windows (which usually doesn't work). Ideally, I would like this to be browser independent. Our application is RCP, so in theory Java Web Start could work, we would just have to do some significant chan...

How to embed Java Web Start (with jnlp) application on google?

Hey All. I have created some simple app in Java, and 'deployed' it using Java Web Start (and jnlp) on my local machine. Now I would like to put it on the web, to have some feedback from various people. I was thinking about embedding my app in Google infrastructure (pages.google.com/sites.google.com/blogger.com - whatever). Question: H...

How to learn game development?

I've been a web programmer for a while and I can also program in Java. I have an idea for a small, multiplayer RPG game that I want to work on. It will be played through a java applet in the user's web browser. I have written the design document and specifications of the gameplay. What I'd like to know now is how I can develop the game?...

Unable to launch the web start appliction.

Hi Please can any one help me. I have a problem in launching the web start application. As i am the beginner i need help from you people. I have created three class files as below. Aeon_PManager.java SimpleSerial.java SimpleSerialNative.java. We have to create a SimpleSerialNative.dll in the same folder where we are saving all the clas...

Dynamicly generate a JNLP file for a Java Web Start application?

I'm writing a servlet to return a JNLP file with several dynamically generated parameters to be passed to a web start program. Right now my code uses a stock template and token replacement, but I have to think there is a way to generate this file programmaticly within a servlet. Are there any tools available for this? ...

Using Netbeans to design GUIs and the ability to start with Web Start.

I designed a GUI program using Netbeans 6.5 on a computer running Vista. I uploaded it to my server and tested out the web start. It worked fine. Later when using a Mac, it was not able to work. I tested it out in Ubuntu and was unsuccessful as well. I even tried to compile the source code on Ubuntu and I got this: Task required to...

JWS JNLP no Desktop Icon on Mac

I seem to be having a problem getting the icon for a Java Web Start program to appear on the Mac desktop, or under "Applications". The icon's and menu's are created and work properly under windows XP and Vista, is there something different that must be done for Macs? On the Mac there aren't output any errors, it prompts me with the ques...

input/output with Java Web Start

I'm working on converting a very simple java desktop application to run in java web start and I'm having all kinds of trouble with the input/output files. Most specifically I can't seem to find any information on how to handle i/o in a web start application. I tried placing the input files in the same folder on my web server as the jar...

Launching a browser window from Java WebStart (JNLP) in Java 6u13+

There is a bug in Java 6u13 and 6u14. http://bugs.sun.com/view_bug.do?bug_id=6835450 Simply put, the following code is supposed to open a browser window, but because of a bug in the framework, it stopped working in Java 1.6 update 13. Nothing opens anymore. There was a similar bug for Java applets (that was fixed in update 14), but thi...

Invalid byte 1 of 1 utf-8 sequence in vb.net

From my Windows Service I am passing a well-formed XML string to a Java Web Service. The Java Web Service will process the data and return me a status code. Though I am passing a well formatted XML file. I am getting an error from the Java Web Service of: Invalid byte 1 of 1 utf-8 sequence in vb.net What is the reason for this? ...

Deploying an SWT application on Java Webstart

Is it possible to deploy SWT applications using JNLP. Especially loading the swt native library (dll in Windows, so in Linux)? Any links? I found one at IBM Developer Works, however it just describes using swt.jar. In addition to that, is it possible to load the native dll files over JNLP? ...

JavaWebStart app randomly fails

Hi I have a JAR signed with a self-signed certificate and deployed by JWS. It usually runs ok (most of the times) but sometimes fails which is quite annoying, It shows the splashscreen but nothing else. These are the last log lines: <record> <date>2009-09-08T16:55:33</date> <millis>1252421733468</millis> <sequence>173</sequence> <logg...

Passing command line arguments to javaws (Java WebStart) executable.

Hi. Summary for those who might not want to read that much: How do I do this: ? If we could pass ad-hoc command-line args to javaws, then javaws apps could be more like "1st class citizen" "ordinary application". E.g. we could pass filenames of files to be opened. I would like to know if there is a way to pass "ad-hoc" command line arg...

Where is the source code for <jdk>/jre/lib/deploy.jar?

Where is the source code for /jre/lib/deploy.jar? I have the source code for other jars like rt.jar (in /src.zip) but not deploy.jar. I need it to debug webstart. I'm using 1.6 on Windows if that makes a difference. ...

java 6 web services share domain specific classes between server and client

Hi all, Context: Considering below defined Engine class being parameter of some webservice method. As we have both server and client in java we may have some benefits (???) in sharing Engine class between server and client ( i.e we may put in a common jar file to be added to both client and server classpath ) Some benefits would b...