Re: how to best launch a jnlp from and then return to a different jsp

2014-02-25 Thread Aryeh Friedman
1. Your use case is correct except that it is entire SD cards (including the file system structure) 1. For security reasons that is a bad idea (essentially it is not HIPAA complaint) to have the server know before hand what data it will be receiving and for whom (besides the filenames themselves

Re: how to best launch a jnlp from and then return to a different jsp

2014-02-25 Thread chris derham
Aryeh, I suggest that you take a step from implementations, and define what you want a little more clearly. You have a webpage, that is served and loads a java app via jnlp. That java app uploads some files to the server. At a later point in time, you want the server to know that the client has u

Re: how to best launch a jnlp from and then return to a different jsp

2014-02-25 Thread Aryeh Friedman
Have you ever heard of metaphores obviously there are not server side cookies I meant a cookie file (aka sential or whatever) that just shows the upload completed and the webapp can use that as a status check On Tue, Feb 25, 2014 at 8:02 AM, Mikolaj Rydzewski wrote: > On 25.02.2014 13:57, Aryeh

Re: how to best launch a jnlp from and then return to a different jsp

2014-02-25 Thread Mikolaj Rydzewski
On 25.02.2014 13:57, Aryeh Friedman wrote: Even if there is a way for the jnlp to leave a cookie on the server? You're wrong. Jnlp won't leave a cookie on the server. Server may ask client to store the cookie. Jnlp is just a file. It tells JVM what jars are required for application to run.

Re: how to best launch a jnlp from and then return to a different jsp

2014-02-25 Thread Aryeh Friedman
Let me better explain the application there are some large files that remote users need to upload for ananylsis (and then down load the reports several hours later)... due the nature of the data (security and otherwise) the client decided to by pass the web completely for the actual upload but want

Re: how to best launch a jnlp from and then return to a different jsp

2014-02-25 Thread Aryeh Friedman
Even if there is a way for the jnlp to leave a cookie on the server? On Tue, Feb 25, 2014 at 7:48 AM, Mikolaj Rydzewski wrote: > On 25.02.2014 13:40, Aryeh Friedman wrote: > >> since this is an intranet application the two are one in the same (assume >> they have already accepted the jar signin

Re: how to best launch a jnlp from and then return to a different jsp

2014-02-25 Thread Mikolaj Rydzewski
On 25.02.2014 13:40, Aryeh Friedman wrote: since this is an intranet application the two are one in the same (assume they have already accepted the jar signings and such) Web application (on tomcat) does not have any control on application that was started via jnlp. They are separate. -- Mi

Re: how to best launch a jnlp from and then return to a different jsp

2014-02-25 Thread Aryeh Friedman
since this is an intranet application the two are one in the same (assume they have already accepted the jar signings and such) On Tue, Feb 25, 2014 at 7:32 AM, Mikolaj Rydzewski wrote: > On 25.02.2014 13:18, Aryeh Friedman wrote: > >> We need to launch (via a jsp page) a JNLP from a jsp templa

Re: how to best launch a jnlp from and then return to a different jsp

2014-02-25 Thread Mikolaj Rydzewski
On 25.02.2014 13:18, Aryeh Friedman wrote: We need to launch (via a jsp page) a JNLP from a jsp template (already in production) and do some task of some long time (filling out a form and then uploading via non-JSP mechanisms a large file [between 5MB and 50MB]... this is also in production) wh

how to best launch a jnlp from and then return to a different jsp

2014-02-25 Thread Aryeh Friedman
We need to launch (via a jsp page) a JNLP from a jsp template (already in production) and do some task of some long time (filling out a form and then uploading via non-JSP mechanisms a large file [between 5MB and 50MB]... this is also in production) what we do not have and want to add is when the J