开发者

Dynamic JNLP Generation and invocation from Excel

I have an application which is invoked via Java Webstart. Opening it via the Webstart link works without any issue.

I also have an application based on Excel that generates files (via vba) which can then be opened by the program that starts via Webstart.

What I would like to do is have a button that invokes the Webstart application and then opens a newly generated file. The files name (and contents) are time sensitive and so I can't use the same file name over and over.

I've pretty much figured out how to use vba to invoke the application via Webstart but t开发者_如何学Pythonhe problem is that for the Webstart app to be able to open a file it needs to be passed in as an argument in the jnlp descriptor

<application-desc main-class="com.foo.WebstartApp">
    <argument>-file</argument>
    <argument>C:\files\file_20100909_164834.csv</argument>
</application-desc>

How do you go about passing through the filename into the JNLP file when the filename will always be different?

Should I be looking at dynamically generating a new jnlp file each time, or is there a way to parameterize the jnlp file and pass through the filename when invoking the JNLP?


Dynamically generated JNLP files is probably going to open you up to injection attacks, just like dynamic SQL. Further it looks as if you are expecting the user to trust the WebStart application which trusts the JNLP file which is untrustworthy.

Assuming you have one application instance per desktop (SingleInstanceService), information about which files to use, which should not necessarily be trusted, can be passed through an applet using the PersistenceService ("muffins") or, apparently if the browser is IE, through cookies.


I've found a solution that suits my needs. A custom servlet is used to modify parameters in the URL string.

http://forums.sun.com/thread.jspa?threadID=714893

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜