RE: Server detection of Javascript enabled?

2003-02-13 Thread Aaron Oathout
Take a look at browserhawk. http://www.cyscape.com/ We used it at the last company I worked for, tells you alot about the browser. Aaron On Thu, 13 Feb 2003, Sean Chambers wrote: > It doesnt really get round the problem of not using javascript on teh > client; but perhaps a better way to do t

Re: Any good suggestions on implementing Security

2003-02-13 Thread Aaron Oathout
We're using SecurityFilter in our Struts apps. Pretty slick. http://securityfilter.sourceforge.net Aaron On Thu, 13 Feb 2003, Dan Tran wrote: > This cracks me up and it is not Friday yet!!! > > Thanks to Mark > > > - Original Message - > From: "Mark Galbreath" <[EMAIL PROTECTED]>

RE: Struts/Tiles/RequestProcessor

2002-11-05 Thread Aaron Oathout
Take a look at securityfilter http://securityfilter.sourceforge.net/ We've been using it to handle security for our struts apps and its been great. Aaron On Tue, 5 Nov 2002, Bhamani, Nizar ATL56E wrote: > I am using Tomcat 4.1.12 with Struts 1.1. > I will try to dig more about using Filt

RE: [OT] Schwing!

2002-09-18 Thread Aaron Oathout
Take a look at http://www.thinlet.com/ It's not swing, but the idea behind it is excellent. Very small api, you define your gui components in xml, and your logic in a .java file. Nice seperation between the view and business logic. Other than that I would suggest netbeans platform as well. Aar

Re: How to user logic:iterate

2002-09-09 Thread Aaron Oathout
Hi Michael, I'm not sure if you're using 1.1 or 1.0, but if you're using 1.1, why not create a DynaActionForm to hold the "users" collection? I currently do the same kind of task as you and the logic:iterate tag works great(tested with just about every nightly build from 1.1b2 till today). Her

Re: To Aaron: Re: want to have errors to be displayed in differentpage

2002-09-01 Thread Aaron Oathout
ld define "error"? I tried to clear it by > myself, but it seems not easy for me to find answer by myself. Please give > me a hint. > > Thank you so much > regards > > Jenny > > > > > > > > - Original Message - > > From:

Re: want to have errors to be dispalyed in diffrent page

2002-08-31 Thread Aaron Oathout
attribute"? Could you explain in a little bit detail? > > Thank you very much > > Jenny > > - Original Message - > From: "Aaron Oathout" <[EMAIL PROTECTED]> > To: "Struts Users Mailing List" <[EMAIL PROTECTED]> > Sent: Satu

Re: [VOTE] Should this list discontinue it's long, treasured heritageof "relaxed fridays"?

2002-08-31 Thread Aaron Oathout
+1 for keeping "relaxed fridays" On 31 Aug 2002, Andreas Mack wrote: > On Fri, 2002-08-30 at 16:47, Eddie Bush wrote: > > Do you feel this list should discontinue it's long heritage of "relaxed > > fridays"? > > > > ( ) Yes > > ( X ) No > > > > -- To unsubscribe, e-mail:

Re: want to have errors to be dispalyed in diffrent page

2002-08-31 Thread Aaron Oathout
Just a guess as I haven't tried this, but it would seem to me you could change the "input" attribute for your action to point to the page you want your errors displayed on. Anybody thats tried this care to confirm or correct my assumption? Aaron On Thu, 29 Aug 2002, Jenny wrote: > Dear frien

Re: Preview OReilly Struts Chapters Online - Soon

2002-03-28 Thread Aaron Oathout
+1 for chapters 13, 19, 21. I'll gladly read and provide feedback on any chapters you make available. Can't wait to buy the book. Aaron Marc-André Thibodeau wrote: >Very good idea! >Chapters 13, 16, 19 and 21 look the most interesting to me... > >MA > >-Message d'origine- >De : Kelm, S

Re: AW: PLEASE: Image References in jsp

2001-12-18 Thread Aaron Oathout
We had that problem, but got around it by doing the following in our main site template: <% String contextPath = request.getContextPath(); %> Then when referencing an image or the css file just do the following: This also made life easier in a team environment when people have multiple c