java-web-start

weird behavior when loading jar inside a jar in Java Web Start

流过昼夜 提交于 2020-01-14 04:15:28
问题 Hell All, So I have been facing this behavior for quite some time and I am sure some else has also faced it and know the solution. I am exporting my application jar as a runnable jar using eclipse and obviously this application have many other jar and so I am exporting with option packed other jar inside the main jar. The problem is when I am starting my application it is not loading the file from db2jcc.jar and few other jar but If I deploy db2jcc.jar as separate jar application running fine

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

徘徊边缘 提交于 2020-01-13 09:22: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

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

时间秒杀一切 提交于 2020-01-13 04:41:08
问题 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

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

三世轮回 提交于 2020-01-13 04:41:05
问题 Closed. This question is off-topic. It is not currently accepting answers. 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

Generate JNLP dynamically

爷,独闯天下 提交于 2020-01-09 09:08:06
问题 I need to pass argument to JNLP dynamically for which I tried using a servlet which extends JnlpDownloadServlet and then includes a jsp which has all the JNLP XML written into it. But when I invoke the downloaded JNLP I get BadFieldException . Servlet public class TestServlet extends JnlpDownloadServlet { public void service(ServletRequest req, ServletResponse res) throws ServletException, IOException { HttpServletRequest request = (HttpServletRequest) req; res.setContentType("application/x

Jnlp Could not parse launch file. Error at line 0

烈酒焚心 提交于 2020-01-06 05:06:29
问题 I have searched the web and have found no definitive solution, so here goes: I made a JNLP file to launch a JAR in the same folder, however it fails to launch and gives the error "Could not parse launch file. Error at line 0." Here's DevChat.jnlp: <?xml version="1.0" encoding="utf-8"?> <!-- JNLP to Launch DevChat --> <jnlp spec="1.0+" href="DevChat.jnlp"> <information> <title>DevChat</title> <vendor>Dev Team</vendor> </information> <security> <all-permissions/> </security> <resources> <j2se

OpenJDK builds and javaws bin file

给你一囗甜甜゛ 提交于 2020-01-05 21:12:12
问题 I understand that Java Web Start is deprecated and not present in Java SE 11 and later. I bumped into the Red Hat distribution of OpenJDK which says "OpenJDK 11 Windows installer includes an additional component - Web Start deployment protocol implementation based on IcedTea-Web open-source project." Red Hat's OpenJDK Overview. I thought "well they added it". I downloaded it but in /bin there isn't any trace of javaws. I also downloaded the OpenJDK 8 from Red Hat, and again, no trace of

Session cookie not send back by client using URLConnection in windows with JRE 1.7

余生颓废 提交于 2020-01-04 08:05:10
问题 We have an application that is deploied using Java Web Start. It communicate with a servlet using URLConnection and managing session by Cookies (JSESSIONID). It worked well with Java 1.5 & 1.6. With Java 1.7 in windows It doesn't work anymore: cookie JSESSIONID is not send back to the server (I saw this using apache axis's HTTPMonitor). What's going wrong? Launching the same application with Java Web Start from a linux box works as expected. Version are: JRE 1.7.0_04 with Java Web Start 10.4

Splash screen jnlp not working

我与影子孤独终老i 提交于 2020-01-03 17:32:49
问题 I am trying to get the splash screen working when i am calling a .jar thru JWS Below are the details of the jnlp file. Other features are working as expected. I have placed the pic.gif file in ROOT folder of Apache tomact JaNeLA Report - version 11.05.17 Report for http://localhost:8080/WithoutManifest.jnlp 1.XML encoding not known, but declared as UTF-8 Optimize this application for off-line use by adding the flag. Downloads can be optimized by specifying a resource size for 'WithoutManifest

remote debugging a jnlp application with IntelliJ

99封情书 提交于 2020-01-02 12:19:06
问题 I'm trying to debug a web start application using IntelliJ 10 (running on Win7). I read both SO: remote debugging a jnlp application with eclipse How can I debug applications under Java Web Start (JNLP) ? It seems like I'm missing something. I've tried to run it from command line, or adding the arguments into the jnlp file but no matter what I do I get an Unable to open debugger port : java.net.ConnectException "Connection refused: connect" Error. How can I debug a web start app? 回答1: I know