RE: Mail Filter

2001-12-19 Thread Tom Lister
Hi I use tools/inbox assistant to to create a rule to redirect mail for [EMAIL PROTECTED]; Struts Users Mailing List; Struts User; Struts to a struts folder e.g. :-)Regards [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] Advanced Banking Solutions Limited +44 (0)20 7448 9146

forward to static page

2001-12-18 Thread Tom Lister
Hi I would like to set up an action that forwards to a static page - in this case the javadoc for a sample application to show how struts can work. This seems as if it should be straight forward but I am stuck I have an action mapping actionpath=/javadoc forward=/web-inf/javadoc/index.htm

RE: 404 error when placing JSPs beneath WEB-INF

2001-12-18 Thread Tom Lister
I thought that although you cannot access directly, you are allowed to forward from a servlet/jsp. And that this is an option for securing pages. Does this have any bearing on my earlier post re trying to access WEB-INF/javadoc/index.html? :-) Regards [EMAIL PROTECTED] mailto:[EMAIL PROTECTED]

RE: Tiles component Verify Error!!!!

2001-12-06 Thread Tom Lister
Proabably a red herring, but we had some very strange java errors here and it turned out the path didn't include java\bin\java.exe and we were running a java.exe from windows\system (microsofts I presume) What do you get for 'java -version'? :-) Regards [EMAIL PROTECTED] mailto:[EMAIL PROTECTED]

RE: Dynamic parameter attachment to html:link tag

2001-12-06 Thread Tom Lister
Hi This example, set's a URL field in a list of URL entries as a link parameter logic:iterate id=element name=listForm property=entries type=com.JJ.forms.EntryForm row:row oddColor=#99ccff evenColor=#09c0f0 td html:link href=%= element.getURL()% target=viewFrame

RE: Producing alternating background colours in struts in atable

2001-12-06 Thread Tom Lister
taglib? thx, tomK -Original Message- From: Tom Lister [mailto:[EMAIL PROTECTED]] Sent: donderdag 6 december 2001 14:11 To: 'Struts Users Mailing List' Subject: RE: Producing alternating background colours in struts

RE: Hi

2001-12-05 Thread Tom Lister
Has anyone opened this or virus checked it. -Original Message- From: Scott Fitzgerald To: Struts-User Sent: 04/12/01 19:13 Subject: Hi How are you ? When I saw this screen saver, I immediately thought about you I am in a harry, I promise you will love it! gone.scr ATT04885.txt --

RE: Struts VAR

2001-12-04 Thread Tom Lister
Hi I've seen Expresso from www.jcorporate.com http://www.jcorporate.com but not tried using it. :-) Regards [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] Advanced Banking Solutions Limited +44 (0)20 7448 9146 º¤ø,¸¸,ø¤º°'°º¤ø,¸¸,ø¤º°'°º¤ø,¸¸,ø¤ºº¤ø,¸¸,ø¤º°'°º¤ø,¸¸,ø¤º°'°º¤ø,¸¸,ø¤ºº¤ø,

RE: Pb when using data-source

2001-12-04 Thread Tom Lister
Is it within data-sources /data-sources :-) Regards [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] Advanced Banking Solutions Limited +44 (0)20 7448 9146 º¤ø,¸¸,ø¤º°'°º¤ø,¸¸,ø¤º°'°º¤ø,¸¸,ø¤ºº¤ø,¸¸,ø¤º°'°º¤ø,¸¸,ø¤º°'°º¤ø,¸¸,ø¤ºº¤ø, ¸¸,ø¤º°'°º¤ø,¸¸, This email and any attachments are confidential.

RE: Dynamically Developing HTML forms

2001-11-30 Thread Tom Lister
Hi Rajeev No answers as I don't understand the question. I am really curious a to what you mean by a dynamically generated application as most of struts is aimed at dynamic content. Do you mean using introspection/reflection to build an app on the fly? -Original Message- From: Rajeev

RE: Struts 1.1 book available for order

2001-11-30 Thread Tom Lister
Hi Looks just the book I've been waiting for but at $80/$90 - twice the price of most IT books - I'd need to see some sample content first. -Original Message- From: Vic Cekvenich To: Struts Users Mailing List Cc: [EMAIL PROTECTED] Sent: 30/11/01 18:53 Subject: Re: Struts 1.1 book

RE: Page Expiration

2001-11-29 Thread Tom Lister
Hi You need to set a token that is unique for the request. The Action class has methods to do this for you protected boolean isTokenValid(HttpServletRequest p0) protected void resetToken(HttpServletRequest p0) protected void saveToken(HttpServletRequest p0) I thnk saveToken plants the token in

RE: Two security roles, one ActionServlet?

2001-11-28 Thread Tom Lister
Hi This is how we set up our controller to switch http/https. I was never happy with it but it works for us. I'm posting it in the hope someone will point out a better way! Basically we decided on boundary conditions as requesting login and requesting logoff (controller always checks user and

RE: DB connection pool

2001-11-28 Thread Tom Lister
Does anyone know how to work with multiple connection pools to different databases. :-) Regards [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] Advanced Banking Solutions Limited +44 (0)20 7448 9146 -Original Message- From: Viet Kevin [SMTP:[EMAIL PROTECTED]] Sent:

RE: Accessing DATA_SOURCE_KEY on a DAO

2001-11-28 Thread Tom Lister
Hi My choice in the same situation was to get the datasource in the actions, actually implemented as a method in a base action I extend for everything else protected DataSource getDataSource() { javax.sql.DataSource dataSource =