X-Received: by 10.224.175.65 with SMTP id w1mr8236376qaz.7.1363502156598; Sat, 16 Mar 2013 23:35:56 -0700 (PDT) X-Received: by 10.49.3.42 with SMTP id 10mr975501qez.23.1363502156538; Sat, 16 Mar 2013 23:35:56 -0700 (PDT) Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!news.glorb.com!dd2no2052118qab.0!news-out.google.com!k8ni188qas.0!nntp.google.com!dd2no2052112qab.0!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail Newsgroups: comp.lang.java.programmer Date: Sat, 16 Mar 2013 23:35:56 -0700 (PDT) Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=50.14.119.173; posting-account=lPVJQwoAAACjT2AlnY0YSj2LC4j2qtwQ NNTP-Posting-Host: 50.14.119.173 User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: Subject: need skeleton for jnlp file From: "Aryeh M. Friedman" Injection-Date: Sun, 17 Mar 2013 06:35:56 +0000 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Xref: csiph.com comp.lang.java.programmer:22963 I have a JNLP file that is buggy (long story so don't ask) and I want to st= art fresh... to that end can someone send me a "hello, world" (downloads an= d starts via webstart [itweb-javaws for me] and prints to the command line = "hello, world") using the simplest possible jnlp to call it... feel free to= use the below version if you want: public class HelloWorld { public static void main(String[] args) { System.out.println("hello, world"); } }