Hi, I've unwrapped the Lopica JNLP Model Pack that wraps Web Start XML startup scripts (JNLP files) so you can use them using Java.
For now the Lopica JNLP model is more or less read-only. Expect "two-way" read/write model additions in the future. To see what's it all about. Here's a short code snippet: URL url = new URL( "http://www.wx4j.org/webstart/tree.jnlp" ); JnlpModel model = new JnlpModel( url ); String name = model.getHeader().getDefaultInformation().getTitle(); String vendor = model.getHeader().getDefaultInformation().getVendor(); String descr = model.getHeader().getDefaultInformation().getDescription(); String homepage = model.getHeader().getDefaultInformation().getHomepage(); You can grab a copy @ http://sourceforge.net/project/showfiles.php?group_id=64065 - Gerald PS: If you want to discuss the Lopica JNLP Model Pack please join the lopica-talk mailinglist @ http://lists.sourceforge.net/lists/listinfo/lopica-talk For more info check out the Lopica Web Start Paradise Site @ http://lopica.sourceforge.net ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ lopica-announce mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/lopica-announce
