can I dynamically generate the archive line of jsp:plugin?
I need some advice.
I have the following :
<jsp:plugin type="applet"
code="com.mycompany.hm.callq.client.common.frontend.class"
codebase="/MyCodeBase"
name="Diagnostics" align="middle"
jreversion="1.5"
><snip>
archive="monitorClient.jar,HXMSCommon.jar,Filters.jar,Actions.jar,jide-dock.jar,jide-common.jar,jide-components.jar">
<snip>
</jsp:plugin>
I want to be able to replace the contents of the archive line with something dynamically generated at the servlet level. When i try repacing the contents of the archive line with something like <jsp:getProperty name=.... property=... />, it generates a JasperException saying that the archive attribute of the jsp plugin standard action does not accpet any expressions.
Is there any other way to do this?
Or am I out of luck?
-Dennis

