RE: the real world is always dirtier

2004-09-13 Thread Brantley Hobbs
ymmetrical loads if your site has a large number of users behind a NAT, for example. Of course, this isn't an issue for Tomcat sessions (and probably every other J2EE container out there). My $0.02 Brantley Hobbs - To unsubscri

Using the checkbox tag with java.lang.Boolean

2004-10-15 Thread Brantley Hobbs
All, I have a form which has a Map of properties. I use the Map just fine with every field on the form, except for my checkboxes. The values in the Map must be objects, so I used java.lang.Boolean to represent the Boolean value for the checkbox. In my JSP I use the tag thusly: - Essential Fac

RE: Validate() vs JavaScript where is the advantage?

2004-09-30 Thread Brantley Hobbs
Performance is likely to be the last thing you'll be worried about if someone sneaks malicious input past your validation. Client-side form validation is just plain /wrong/! Never trust input you get back from a client. Never. Brantley > -Original Message- > From: Nadia Kunkov [mailto:

RE: Validate() vs JavaScript where is the advantage?

2004-09-30 Thread Brantley Hobbs
I said it's a public site, then yes, I > think it IS clear-cut: do it all on the server!) > > -- > Frank W. Zammetti > Founder and Chief Software Architect > Omnytex Technologies > http://www.omnytex.com > > On Thu, September 30, 2004 10:26 am, Brantley Hobbs said

OT - RE: validation - mask help

2004-10-01 Thread Brantley Hobbs
> CONFIDENTIALITY NOTICE: The information in this e-mail is privileged and > confidential. Any use, copying or dissemination of any portion of this > e-mail by or to anyone other than the intended recipient(s) is > unauthorized. > If you have received this e-mail in error, please reply to sender

RE: An Eclipse Like WebApp Framework?

2004-10-06 Thread Brantley Hobbs
I'm struggling to wrap my head around this and the closest comparison that I can make is something like tiles/hibernate. Tiles makes it easy to plug in additional functionality, and a good object model makes it so that anything implementing hibernate can just plug right in, right? B. > -Orig

Opinions on Struts Layout

2004-12-10 Thread Brantley Hobbs
ly like about struts layout is that it's tied directly back to struts, so it seems that it might be a more elegant solution than mixing technologies. Any input? Thanks, Brantley Hobbs - To unsubscribe, e-mail: [EMAIL PROTE

RE: Opinions on Struts Layout

2004-12-10 Thread Brantley Hobbs
; to me. Wrong side of the brain problem, I guess. > > Jack > > > On Fri, 10 Dec 2004 12:41:50 -0800, Dakota Jack <[EMAIL PROTECTED]> > wrote: > > If you look at the Struts dev an user lists, Brantley, you will find > > quite a bit on this too. > > > > Jack

RE: Opinions on Struts Layout

2004-12-10 Thread Brantley Hobbs
RE: Opinions on Struts Layout > > Try the search key "struts-layout" at his archive: > > http://marc.theaimsgroup.com/?l=struts-user > > I just performed that search and numerous results > show up for that "word". > > Regards, > David >

RE: Opinions on Struts Layout

2004-12-10 Thread Brantley Hobbs
--Original Message- > From: Hubert Rabago [mailto:[EMAIL PROTECTED] > Sent: Friday, December 10, 2004 3:55 PM > To: Struts Users Mailing List > Subject: Re: Opinions on Struts Layout > > It already does. It's the third option on > http://struts.apache.org/mail.html &

Get a list of defined Struts actions at runtime

2006-03-22 Thread Brantley Hobbs
n pattern match against an action name using ActionConfigMatcher, but that only returns a single action and it requires that you know the name of the action ahead of time. Can anyone suggest something? Thanks, Brantley Hobbs - To

RE: Get a list of defined Struts actions at runtime

2006-03-24 Thread Brantley Hobbs
> > At runtime I need to get a list of /all/ the actions that are defined in > > Struts. I'd rather not extract them directly from the conf file(s) > > unless it's absolutely necessary, but I don't (readily) see an API for > > doing this so I might be forced into it. > > > > It seems a bit diffic

RE: Get a list of defined Struts actions at runtime

2006-03-24 Thread Brantley Hobbs
> I'm just throwng this out there but, is this something that could be > solved > a little easier with annotations? I just got my Thinking in Java (4th > ed) recently, > so don't hate on me. I have to plead ignorance. What is an annotation? I'm completely open to a less...umminvasive method

RE: Get a list of defined Struts actions at runtime

2006-03-24 Thread Brantley Hobbs
> OOPS! Copy-paste busted. > > I meant to say, in your struts-config.xml: > > > :D > Hubert > > (ps. what? you think I have all this in memory?) > > > and in your struts-config.xml: > > > > > > > > > > Ahh. I was mightily confused by the property "defnames". This is

RE: Syntax for multiple parameter with global forward

2005-10-14 Thread Brantley Hobbs
Try changing your ampersand to "&" or "%26" B. > -Original Message- > From: news [mailto:[EMAIL PROTECTED] On Behalf Of Dave > Sent: Friday, October 14, 2005 9:48 AM > To: user@struts.apache.org > Subject: Syntax for multiple parameter with global forward > > At first I had my global for

RE: [OT] Getting started is confusing [was] Re: Need advice between Shale or Struts-Faces

2006-01-11 Thread Brantley Hobbs
--snip-- > Try to pretend you just know a little about the buzz words.. JSF and > Shale. Now start googling to try to understand JSF. The Sun site I think > is pretty poorly organized. This article --snip-- > > I guess what I'm getting at is there really should be a simple page that > dumbs dow

RE: [OT] Re: Advice for Struts expert wanting to try Shale?

2006-01-11 Thread Brantley Hobbs
Wait. You're not Dave are you? :-) B. > -Original Message- > From: Albany Rose [mailto:[EMAIL PROTECTED] > Sent: Wednesday, January 11, 2006 1:54 PM > To: user@struts.apache.org > Subject: Re: [OT] Re: Advice for Struts expert wanting to try Shale? > > On 1/11/06, Dave Newton <[EMAIL P

Re: OT: Alternative to html frames

2008-02-12 Thread Brantley Hobbs
Ya know, this triggers a question of my own: I have apps that use *tons* of iframes, and there *are* some drawbacks: 1. Without some sort of "onload()" built-in to every page, there's no way of knowing if the frame has loaded when you update its .src attribute. With an AJAX filled div, you'd