Re: Off Topic Expression Language question

2006-02-23 Thread Jim Collins
r it. If you have to do it more often, maybe a tag using reflection api would be an answer. I you write one, let me know, I may need one too :-) regards Leon On 2/23/06, Jim Collins <[EMAIL PROTECTED]> wrote: Hi All, Appologies for the off topic posting. Does anyone Know how I can access a

Off Topic Expression Language question

2006-02-22 Thread Jim Collins
Hi All, Appologies for the off topic posting. Does anyone Know how I can access a bean property that takes a parameter using EL. For example if in a bean I have define a name property with public String getName(){return name;} I can access this with EL ${mybean.name} But suppose in my bea

Re: [ANN] Java Web User Group / BOF XV / Oracle City of London / Frid ay 3rd February 2006 @ 19:00

2006-01-28 Thread Jim Collins
Hi Peter, Apologies for not making the last meeting I will try and make this one. Regards Jim - Original Message - From: "Pilgrim, Peter" <[EMAIL PROTECTED]> To: "Struts User Apache (E-mail)" ; "MyFaces Discussion (E-mail)" Cc: "Maven Users List (E-mail)" Sent: Wednesday, January 2

Re: [OT] File upload design question

2004-06-25 Thread Jim Collins
lection on my session scoped form bean. > > On submission of the form the full paths to the files, in the session upload > directory, are passed to my business layer which processes them. > > On session destruction the session upload directory is removed. > > Paul > > >

[OT] File upload design question

2004-06-24 Thread Jim Collins
Hi, Appologies for the off topic posting. I am writing an application where a user fills in a form, can attach some files and when they submit the form it kicks off a workflow and saves any attached files to a content management system. This works fine using the struts file upload tools. What I w

FYI Some problems I had with JSTL 1.1, JSP 2.0 and Struts

2004-05-05 Thread Jim Collins
Hi, This might be of interest to anyone working with JSTL x tags and JSP 2.0 and Servlet spec 2.4. I am writing an application that has to generate XML and post it to another web app. To generate the XML I use Dom4J and this worked fine. Next I wanted to display some XML that the other app return

Re: Slightly OT How to set a request header using JSTL

2004-04-14 Thread Jim Collins
gt; > Besides the performance advantages of skipping all the mapping and > facading, and making people scratch their heads over the resulting EL > expressions, this has the advantage of clearly describing what's going > on to anyone who is familiar with HTML. > > Craig >

Re: Slightly OT How to set a request header using JSTL

2004-04-13 Thread Jim Collins
nahan" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Tuesday, April 13, 2004 10:48 PM Subject: Re: Slightly OT How to set a request header using JSTL > Jim Collins wrote: > > >Hi, > > > >Has anyone any thoughts o

Re: [OT] Recommendation on JBoss

2004-04-13 Thread Jim Collins
You could take a look at Geronimo which is an Apache incubator project. I am disappointed in the lack of (free) documentation available for JBoss. Regards Jim. - Original Message - From: "Adam Hardy" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Tuesday, A

Re: Slightly OT How to set a request header using JSTL

2004-04-13 Thread Jim Collins
Hi, Has anyone any thoughts on this? Thanks Jim. - Original Message - From: "Jim Collins" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Tuesday, April 06, 2004 10:10 PM Subject: Slightly OT How to set a request header usi

Slightly OT How to set a request header using JSTL

2004-04-06 Thread Jim Collins
Hi, I know how I can read request headers using c:out and the header object. Does anyone know how I can set a response header using c:set? Can it be done without using the response tag? I don't want to use scriptlets. Thanks Jim.