cancel
Showing results for 
Search instead for 
Did you mean: 

pass parameters from bean to applet in custom dialog

scot84
Champ in-the-making
Champ in-the-making
Hi to all.
I'm tring to pass parameters value to applet that i have put in custom dialog, but when alfresco load the customdialo.jsp, and I inspect the source page, i found the code not the value of the Bean.filename property.
Can someone help me.

here the pieces of code


<%@ taglib uri="http://java.sun.com/jsf/html"  prefix="h"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>

<hSmiley SurprisedutputText value="filename: #{Bean.filename}" />                       //this work

<object classid="clsid:22D9C840-044E-11D1-B3E9-00805F499r93"
….   
…      
         <param name="Document" value="${Bean.filename}" />   //this not work
         <param name="Document" value="#{Bean.filename}" />   //this not work
         <param name="Document" value="<cSmiley Surprisedut value='${pageContext.request.serverName}' />" />   //this not work
</object>
1 REPLY 1

scot84
Champ in-the-making
Champ in-the-making
RESOLVED.
I have to inform tomcat 6 in web.xml, to use JAVA SERVLET VERSION 2.4, to  load tag libries.