Re: Strange Problem with logic:equals!

2005-10-07 Thread Aymeric Alibert
Do you have the struts-bean tag library defined in your jsp:? Something like %@ taglib uri=/WEB-INF/struts-bean.tld prefix=bean % Aymeric. On 10/7/05, starki78 [EMAIL PROTECTED] wrote: Hi, we have a strange Problem with logic:equal Look at the following code: //-- first we create a bean

Re: query string parameters problem

2005-10-22 Thread Aymeric Alibert
If you are using struts 1.2.7 or later, you can use the ActionRedirect class to dynamically add parameters to the forward. In your case, something like: public ActionForward execute(ActionMapping mapping, ActionForm form1,

RE: [OT] Precompiling JSP Pages with Struts Tags in Weblogic 7.02

2005-06-17 Thread Aymeric Alibert
I got that problem before with Weblogic 8.1 and was able to solve it by adding the strtus.jar and struts-el.jar in the classpath of the wlappc task definition: taskdef name=wlappc classpathref=jspc.classpath classname=weblogic.ant.taskdefs.j2ee.Appc/ where 'jspc.classpath' contains references to

caching staticJavascript.jsp?

2005-06-27 Thread Aymeric Alibert
I am building a Struts (1.2.7) application that client will access using a slow connection (56K modem) and I am trying to limit the amount of data downloaded from the server. Since I am using the Validator, I would like to create an external staticJavascript.jsp page that could be cached by the

RE: caching staticJavascript.jsp?

2005-06-27 Thread Aymeric Alibert
% % response.setHeader(Cache-Control, max-age=3600);% html:javascript scriptLanguage=true dynamicJavascript=false staticJavascript=true/ Aymeric. -Original Message- From: Aymeric Alibert [mailto:[EMAIL PROTECTED] Sent: Monday, June 27, 2005 5:29 AM To: 'Struts Users Mailing List' Subject: caching