Re: [S2] Struts2, JDK 1.4, retrotranslator

2007-06-01 Thread Taras Puchko
Hi, you have to translate struts2-codebehind-plugin-2.0.6.jar since the distribution has only struts2-core-2.0.6.jar and xwork-2.0.1.jar translated. Cheers, Taras On 5/31/07, Jason Wyatt <[EMAIL PROTECTED]> wrote: Hi, I'm trying to deploy Struts 2 on Oracle Application Server 9i, which uses JDK

Re: No getter method for property

2007-01-31 Thread Taras Puchko
- Mantenimiento J2EE - Treelogic Tel: 985 73 27 32 Edificio Centroastur, 2ª planta Polígono SIA Copper 33420, Lugones - Asturias - España - Original Message - From: "Taras Puchko" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" Sent: Wednes

Re: No getter method for property

2007-01-31 Thread Taras Puchko
astur, 2ª planta Polígono SIA Copper 33420, Lugones - Asturias - España - Original Message ----- From: "Taras Puchko" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" Sent: Wednesday, January 31, 2007 2:47 PM Subject: Re: No getter method for property > Hi, > I

Re: No getter method for property

2007-01-31 Thread Taras Puchko
Hi, I think Struts is confused to see a simple and an indexed property with the same name. If you have an indexed property, your methods should look like this: String getNombre(int) void setNombre(int, String) String[] getNombre() setNombre(String[]) See http://java.sun.com/docs/books/tutorial/

Re: Filter

2007-01-24 Thread Taras Puchko
Hi! Request parameters should not be confused with request attributes. In general you cannot set a parameter but you can make a wrapper for the request object overriding getParameter(String), getParameterNames() and getParameterValues(String). You can also forward to a URL that contains your para

Re: JSTL toUpperCase

2007-01-24 Thread Taras Puchko
uot;; > ? Can you also tell me what's wrong with this: Error: org.apache.jasper.JasperException: jsp.error.beans.property.conversion It worked with JSTL 1.0, it doesn't work anymore for JSTL 1.1. -Original Message- From: Taras Puchko [mailto:[EMAIL PROTECTED] Sent: woensdag

Re: JSTL toUpperCase

2007-01-24 Thread Taras Puchko
rEach items="${list}" var="person" But when I run my webapp, now I can only see ${person.firstName}, ... instead of the actual values. -----Original Message- From: Taras Puchko [mailto:[EMAIL PROTECTED] Sent: woensdag 24 januari 2007 11:10 To: Struts Users Mailing Lis

Re: JSTL toUpperCase

2007-01-24 Thread Taras Puchko
taglibs.standard.lang.jstl.parser.ParseException: EL functions are not supported. JSTL is version 1.1 btw. -Original Message- From: Taras Puchko [mailto:[EMAIL PROTECTED] Sent: woensdag 24 januari 2007 10:52 To: Struts Users Mailing List Subject: Re: JSTL toUpperCase Hi, you should separa

Re: JSTL toUpperCase

2007-01-24 Thread Taras Puchko
Hi, you should separate the namespace from the function name with a colon rather than with a dot: <%@ taglib uri="http://java.sun.com/jsp/jstl/functions"; prefix="fn" %> Taras. On 1/24/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: Seems straight-through, but apparently it isn't. I have

Re: [S2] Struts2 portlet app on JDK 1.4.2 - problem

2007-01-15 Thread Taras Puchko
Hi Dariusz! The ThreadLocal.remove() method should work if you translate Struts by Retrotranslator 1.2.0 with the -advanced option. But ensure your jars where not previously translated by Retrotranslator 1.1.0. Regards, Taras -