RE: Learning the basics

2004-08-18 Thread David Friedman
+1 for Struts In Action. I have it sitting on my desktop's case. :) Regards, David -Original Message- From: Jesse Alexander (KXT) [mailto:[EMAIL PROTECTED] Sent: Thursday, August 19, 2004 2:29 AM To: 'Struts Users Mailing List' Subject: RE: Learning the basics Have you looked at "Strut

RE: Learning the basics

2004-08-18 Thread Jesse Alexander (KXT)
Have you looked at "Struts in Action" by Ted Husted . The "in Action" books are now one of my preferred collection of books. You can check it out at half the price (ebook) which will be "refunded" when you also buy the printed version from them. Their eShop works good

[OT] Date Localization

2004-08-18 Thread Viral_Thakkar
Hi All, I have a Date stored in GMT format in database. Now I need to display this date to user depending on his/her LOCALE. I found SimpleDateFormat and few other classes to convert the Date Format, but I am not able to find how to change the Date value as per user locale. Example: Date in datab

RE: Learning the basics

2004-08-18 Thread Janne Mattila
I did not notice any book recommendations in answers to your question, and frankly, I am not surprised. For learning a new technology I prefer a good, well-written and well-structured book to harvesting scattered web pages to critical pieces of information. Unfortunately, I have read three books

RE: [OT] Top things Mark has been during his time away from the S truts List

2004-08-18 Thread Jesse Alexander (KXT)
Well, notice that the script crashed for that OutOfMemory error... Some would have been processed after Mark... Maybe you're one of them ;-) -Original Message- From: Chappell, Simon P [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 18, 2004 9:45 PM To: Struts Users Mailing List Subject

Re[2]: Help on Action implementing thread for checking user registration thru email?

2004-08-18 Thread Pavlikus
Hello struts, Thursday, August 19, 2004, 7:36:38 AM, you wrote: sD> - Original Message - sD> From: "Pavlikus" <[EMAIL PROTECTED]> sD> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> sD> Sent: Thursday, August 19, 2004 4:30 PM sD> Subject: Re: Help on Action implementing thread for c

RE: Help on Action implementing thread for checking user registration thru email?

2004-08-18 Thread David Friedman
Just pop it into the Quartz scheduler. I've read about it and remember someone saying there was a Struts PlugIn for it. You could have it check hourly or exactly 24 hours after a registration. See: http://www.opensymphony.com/quartz And, should you want a pre-made plugIn http://demo.jgsulli

Re: Help on Action implementing thread for checking user registration thru email?

2004-08-18 Thread struts Dude
- Original Message - From: "Pavlikus" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Thursday, August 19, 2004 4:30 PM Subject: Re: Help on Action implementing thread for checking user registration thru email? > What about following variant? > > In "execut

Re: Help on Action implementing thread for checking user registration thru email?

2004-08-18 Thread Pavlikus
Hello struts, Thursday, August 19, 2004, 7:13:33 AM, you wrote: sD> Hi, sD> I am going to write an app that allow user to register in a JSP page, sD> press submit, then user redirected to a new page telling user sD> to check email, click on a link on email, redirected to a page, sD> then commi

Help on Action implementing thread for checking user registration thru email?

2004-08-18 Thread struts Dude
Hi, I am going to write an app that allow user to register in a JSP page, press submit, then user redirected to a new page telling user to check email, click on a link on email, redirected to a page, then commit user info to database. If user doesn't do this within 24 hrs, then delete user info

Re: how not to use actionform and pass things around

2004-08-18 Thread Sebastian Ho
Guess you are right in a way. But I don't know how to solve this scenario using struts.. Say I have three JSP (JSP1, JSP2 and JSP3). JSP1 populates my actionform (AF1) and in my Action, I set it into my request (not using a session) so that it is available to JSP2. In JSP2, I have yet another Ac

Re: Security - From tradition to struts

2004-08-18 Thread Erik Weber
I don't really consider myself an expert here, but I dare say that there are a lot of webapps deployed out there using programmatic (hand-rolled) security successfully. I have used the approach with success. What exactly the advantages are to using container-managed security I am not able to fu

Re: Security - From tradition to struts

2004-08-18 Thread Leandro Melo
So Erik, is it a common and usual aproach to do login outside of Struts (ordinary jsps), and then use Struts afterwards??? --- Erik Weber <[EMAIL PROTECTED]> escreveu: > Leandro, search the archives of this List for > "JAAS". I participated in > a thread about this within the last two months.

Re: [OT] Top things Mark has been during his time away from the Struts List

2004-08-18 Thread James Mitchell
ROFL!!! -- James Mitchell Software Engineer / Open Source Evangelist EdgeTech, Inc. 678.910.8017 AIM: jmitchtx - Original Message - From: "Bill Siggelkow" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, August 18, 2004 4:41 PM Subject: Re: [OT] Top things Mark has been duri

Re: how not to use actionform and pass things around

2004-08-18 Thread Koon Yue Lam
Hi ! I don't see a good reason that you are not going to use action form. Since Action form is just a Java bean, which is pretty much the same as the "Object" that you want to pass around and about this: "use an ActionForm I have to write the entities of my ActionForm into the JSP for it to be pic

Re: multiple checkboxes

2004-08-18 Thread Jignesh Kapadia
HI , Thanks for your reply. But How do I implement this in my current scenario. displaying records on the screen using a list from session and not using form variables. if I use 'indexed="true"' on html:chekbox how do I capture the change? i.e. HTML generated will look like as below.

how to make validator read non-standard bundle

2004-08-18 Thread Dionisius Purba
Hi everyone, can someone confirm whether in struts's validator (which if i'm not mistaken, rely on commons-validator), we can or we can not use non-standard bundle (i.e ApplicationResources.properties)? If not, what's the usual workaround that you do? I've tried using Struts 1.2, downloaded fro

how not to use actionform and pass things around

2004-08-18 Thread Sebastian Ho
hi 1. If I need to make an object in a JSP to be available to the next JSP (which is forwarded by my Action), how do I do that without using an ActionForm? The reason I am asking this is that to use an ActionForm I have to write the entities of my ActionForm into the JSP for it to be picked up,

Re: Security - From tradition to struts

2004-08-18 Thread Erik Weber
Leandro, search the archives of this List for "JAAS". I participated in a thread about this within the last two months. I'm not sure if I understand exactly what you want to do, but if you want to use container-managed security, I don't know of a way to have your login screen be part of Struts.

Re: Security - From tradition to struts

2004-08-18 Thread Leandro Melo
Or i just extend the DatabaseServerLoginModule class and leave an empty class --- Leandro Melo <[EMAIL PROTECTED]> escreveu: > Just complementing my question... > > Would it be fair if i copy JBoss' > DatabaseServerLoginModule code and place it inside > an > Action??? > > This way, i'll

Re: Security - From tradition to struts

2004-08-18 Thread Leandro Melo
Just complementing my question... Would it be fair if i copy JBoss' DatabaseServerLoginModule code and place it inside an Action??? This way, i'll have an Action (for example, MyLoginAction) that does exactly what DatabaseServerLoginModule does. --- Leandro Melo <[EMAIL PROTECTED]> escreveu:

Security - From tradition to struts

2004-08-18 Thread Leandro Melo
Please help me out here! I'm very new with jaas, so i need some help. I got a simple login that is working fine for me, here it is: ... NOME: SENHA: ... I'm using JBoss' default stuff (LoginModule, CallbackHandler, etc...) to make it works. Here'

Re: Refresh problem.

2004-08-18 Thread Kunal Parikh
Hi nitin! I would attack this issue in two possible ways. Option 1: = addForm.do - Action.saveToken() in execute; listRecords.do - displays records + if( this.isTokenValid( request, true ) ) // true will reset the token (i.e. on refresh, the token will not match) { // do save } // f

Re: [OT]1,2,3,4 I declare a pun war!

2004-08-18 Thread Vic Cekvenich
Ron Day wrote: please.enough is enough +1 .V - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: [OT]1,2,3,4 I declare a pun war!

2004-08-18 Thread Jim Barrows
> -Original Message- > From: Wiebe de Jong [mailto:[EMAIL PROTECTED] > Sent: Wednesday, August 18, 2004 3:24 PM > To: 'Struts Users Mailing List' > Subject: RE: [OT]1,2,3,4 I declare a pun war! > > > On the topic of sheep, > Where does that 100% virgin wool come from anyways? Countries

RE: [OT]1,2,3,4 I declare a pun war!

2004-08-18 Thread Wiebe de Jong
On the topic of sheep, Where does that 100% virgin wool come from anyways? -Original Message- From: Jim Barrows [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 18, 2004 3:09 PM To: Struts Users Mailing List Subject: RE: [OT]1,2,3,4 I declare a pun war! > -Original Message- >

RE: [OT]1,2,3,4 I declare a pun war!

2004-08-18 Thread Jim Barrows
> -Original Message- > From: Chappell, Simon P [mailto:[EMAIL PROTECTED] > Sent: Wednesday, August 18, 2004 3:20 PM > To: Struts Users Mailing List > Subject: RE: [OT]1,2,3,4 I declare a pun war! > > > Now all we need are some vegeietales references and we can > have a cheese fondue pa

RE: [OT]1,2,3,4 I declare a pun war!

2004-08-18 Thread Jim Barrows
> -Original Message- > From: Wiebe de Jong [mailto:[EMAIL PROTECTED] > Sent: Wednesday, August 18, 2004 3:22 PM > To: 'Struts Users Mailing List' > Subject: RE: [OT]1,2,3,4 I declare a pun war! > > > Yup, down by the brie, by the brie, by the beautiful brie... Well.. if that floats you

RE: [OT]1,2,3,4 I declare a pun war!

2004-08-18 Thread Ron Day
please.enough is enough -Original Message- From: Jim Barrows [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 18, 2004 5:23 PM To: Struts Users Mailing List Subject: RE: [OT]1,2,3,4 I declare a pun war! > -Original Message- > From: David Durham [mailto:[EMAIL P

RE: [OT]1,2,3,4 I declare a pun war!

2004-08-18 Thread Wiebe de Jong
Yup, down by the brie, by the brie, by the beautiful brie... -Original Message- From: Jim Barrows [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 18, 2004 2:53 PM To: Struts Users Mailing List Subject: RE: [OT]1,2,3,4 I declare a pun war! > -Original Message- > From: Jason Ki

RE: [OT]1,2,3,4 I declare a pun war!

2004-08-18 Thread Jim Barrows
> -Original Message- > From: David Durham [mailto:[EMAIL PROTECTED] > Sent: Wednesday, August 18, 2004 3:21 PM > To: Struts Users Mailing List > Subject: Re: [OT]1,2,3,4 I declare a pun war! > > > Jim Barrows wrote: > > >>> Sometimes it's a real feta to get to work though > >>>

Re: [OT]1,2,3,4 I declare a pun war!

2004-08-18 Thread David Durham
Jim Barrows wrote: Sometimes it's a real feta to get to work though That's cheesy. Hey, as long is it doesn't make you blue, or throw bricks... No, it wouldn't make you bleu; it's a white cheese made from ewe or goat's milk... Oh, now I feel sheepish. My bd... DIdn't mean to sound so gr

RE: [OT]1,2,3,4 I declare a pun war!

2004-08-18 Thread Chappell, Simon P
Now all we need are some vegeietales references and we can have a cheese fondue party! (No beer though, Mark is rowdy enough without it! :-) >-Original Message- >From: Jim Barrows [mailto:[EMAIL PROTECTED] >Sent: Wednesday, August 18, 2004 5:10 PM >To: Struts Users Mailing List >Subject:

RE: [OT]1,2,3,4 I declare a pun war!

2004-08-18 Thread Jim Barrows
> -Original Message- > From: David Durham [mailto:[EMAIL PROTECTED] > Sent: Wednesday, August 18, 2004 3:06 PM > To: Struts Users Mailing List > Subject: Re: [OT]1,2,3,4 I declare a pun war! > > > Jim Barrows wrote: > > > Sometimes it's a real feta to get to work though >

RE: [OT]1,2,3,4 I declare a pun war!

2004-08-18 Thread Jim Barrows
> -Original Message- > From: Barnett, Brian W. [mailto:[EMAIL PROTECTED] > Sent: Wednesday, August 18, 2004 2:58 PM > To: 'Struts Users Mailing List' > Subject: RE: [OT]1,2,3,4 I declare a pun war! > > > That was a b-d one. Shearly it's not that wooly... > > -Original Messa

Re: [OT]1,2,3,4 I declare a pun war!

2004-08-18 Thread David Durham
Jim Barrows wrote: Sometimes it's a real feta to get to work though That's cheesy. Hey, as long is it doesn't make you blue, or throw bricks... No, it wouldn't make you bleu; it's a white cheese made from ewe or goat's milk... Oh, now I feel sheepish. My bd... - Dave ---

RE: [OT]1,2,3,4 I declare a pun war!

2004-08-18 Thread Barnett, Brian W.
That was a b-d one. -Original Message- From: Jim Barrows [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 18, 2004 3:56 PM To: Struts Users Mailing List Subject: RE: [OT]1,2,3,4 I declare a pun war! > -Original Message- > From: David Durham [mailto:[EMAIL PROTECTED] > Sent

RE: [OT]1,2,3,4 I declare a pun war!

2004-08-18 Thread Jim Barrows
> -Original Message- > From: David Durham [mailto:[EMAIL PROTECTED] > Sent: Wednesday, August 18, 2004 2:54 PM > To: Struts Users Mailing List > Subject: Re: [OT]1,2,3,4 I declare a pun war! > > > Jim Barrows wrote: > > >>> Sometimes it's a real feta to get to work though > >> > >>

Re: [OT]1,2,3,4 I declare a pun war!

2004-08-18 Thread David Durham
Jim Barrows wrote: Sometimes it's a real feta to get to work though That's cheesy. Hey, as long is it doesn't make you blue, or throw bricks... No, it wouldn't make you bleu; it's a white cheese made from ewe or goat's milk... - Dave ---

RE: [OT]1,2,3,4 I declare a pun war!

2004-08-18 Thread Jim Barrows
> -Original Message- > From: Jason King [mailto:[EMAIL PROTECTED] > Sent: Wednesday, August 18, 2004 2:55 PM > To: Struts Users Mailing List > Subject: Re: [OT]1,2,3,4 I declare a pun war! > > > I cheddar at the thought of a pun war. Must be a little colby, where you are then > >

Re: [OT]1,2,3,4 I declare a pun war!

2004-08-18 Thread Jason King
I cheddar at the thought of a pun war. Sometimes it's a real feta to get to work though That's cheesy. Hey, as long is it doesn't make you blue, or throw bricks...

RE: [OT]1,2,3,4 I declare a pun war! was RE: [OT] Top things Mark has been during his time away from the Struts List

2004-08-18 Thread Jim Barrows
> -Original Message- > From: Tom Kane [mailto:[EMAIL PROTECTED] > Sent: Wednesday, August 18, 2004 2:49 PM > To: [EMAIL PROTECTED] > Subject: RE: [OT]1,2,3,4 I declare a pun war! was RE: [OT] Top things > Mark has been during his time away from the Struts List > > > >Jim Barrows wrote:

RE: [OT]1,2,3,4 I declare a pun war! was RE: [OT] Top things Mar k has been during his time away from the Struts List

2004-08-18 Thread Tom Kane
>Jim Barrows wrote: > > >> Sometimes it's a real feta to get to work though > >... yea then I often become Blue:( > > >-- >Rick ...that's when I head for my cottage.

Re: [OT]1,2,3,4 I declare a pun war! was RE: [OT] Top things Mark has been during his time away from the Struts List

2004-08-18 Thread Rick Reumann
Jim Barrows wrote: > Sometimes it's a real feta to get to work though ... yea then I often become Blue:( -- Rick - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: [OT]1,2,3,4 I declare a pun war!

2004-08-18 Thread Jim Barrows
> -Original Message- > From: David Durham [mailto:[EMAIL PROTECTED] > Sent: Wednesday, August 18, 2004 2:32 PM > To: Struts Users Mailing List > Subject: [OT]1,2,3,4 I declare a pun war! > > > Jim Barrows wrote: > > > Sometimes it's a real feta to get to work though > > That's che

[OT]1,2,3,4 I declare a pun war!

2004-08-18 Thread David Durham
Jim Barrows wrote: Sometimes it's a real feta to get to work though That's cheesy. - Dave - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

[OT]1,2,3,4 I declare a pun war! was RE: [OT] Top things Mark has been during his time away from the Struts List

2004-08-18 Thread Jim Barrows
> -Original Message- > From: Rick Reumann [mailto:[EMAIL PROTECTED] > Sent: Wednesday, August 18, 2004 1:44 PM > To: Struts Users Mailing List > Subject: Re: [OT] Top things Mark has been during his time > away from the > Struts List > > > Jim Barrows wrote: > > > Well... we could be

Re: configuration violating J2EE spec?

2004-08-18 Thread Craig McClanahan
On Wed, 18 Aug 2004 15:30:12 -0500, David Durham <[EMAIL PROTECTED]> wrote: > Craig McClanahan wrote: > > > ... > > URI seen by the application properly reflects the one that the client > > sent, not the one that was internally passed from the proxy. > > > What about a scenario where the proxy e

Re: Validation plug-in & Websphere Studio 5.0.1

2004-08-18 Thread bmf5
Kishore, Bingo! Thanks, that's it! I thought I had it set up right. It makes perfect sense now though. Thanks again. Thanks to Jim too for your help. I'm also grateful to Mark for the chuckle we got ( I showed some colleagues who are learning Stuts w/ me) from your first response. I'll

Re: [OT] Top things Mark has been during his time away from the Struts List

2004-08-18 Thread Rick Reumann
Jim Barrows wrote: Well... we could be grilling each other on work related stuff I suppose.. You do a gouda job on your work, so you can afford the break from work. -- Rick - To unsubscribe, e-mail: [EMAIL PROTECTED] For additi

Re: [OT] Top things Mark has been during his time away from the Struts List

2004-08-18 Thread Bill Siggelkow
Would you some cheese with that dear? - Helga - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: [OT] Top things Mark has been during his time away from the Struts List

2004-08-18 Thread Jim Barrows
> -Original Message- > From: Rick Reumann [mailto:[EMAIL PROTECTED] > Sent: Wednesday, August 18, 2004 1:37 PM > To: Struts Users Mailing List > Subject: Re: [OT] Top things Mark has been during his time > away from the > Struts List > > > Jim Barrows wrote: > > > Just so long as he d

Re: html:img tag and modules

2004-08-18 Thread David Erickson
Thanks Kishore, curious what does the pagePattern of the controller actually do? -David - Original Message - From: "Kishore Senji" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Wednesday, August 18, 2004 2:03 PM Subject: Re: html:img tag and modules > mod

Re: [OT] Top things Mark has been during his time away from the Struts List

2004-08-18 Thread Rick Reumann
Jim Barrows wrote: Just so long as he doesn't have a cow, while we're milking this for all it's worth. All of this talk is starting to grate on me. -- Rick - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-

Re: configuration violating J2EE spec?

2004-08-18 Thread David Durham
Craig McClanahan wrote: ... URI seen by the application properly reflects the one that the client sent, not the one that was internally passed from the proxy. What about a scenario where the proxy ends up mangling such details as the protocol. Specifically, Oracle 9ias' proxy has a nasty habit o

RE: Validation plug-in & Websphere Studio 5.0.1

2004-08-18 Thread Jim Barrows
> -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: Wednesday, August 18, 2004 1:28 PM > To: Struts Users Mailing List > Subject: RE: Validation plug-in & Websphere Studio 5.0.1 > > > > > > > >>OH that's it make me think I had the easy solution :) *LOL*

Re: Processing, Please Wait...

2004-08-18 Thread Wendy Smoak
From: "Andrew Close" <[EMAIL PROTECTED]> > for example, page 1 has a select list containing shape objects. upon > selecting the shape you want an action fetches and populates colors, > another select list on the page. the problem is that the users are > selecting the shape and then immediately at

RE: Validation plug-in & Websphere Studio 5.0.1

2004-08-18 Thread bmf5
>>OH that's it make me think I had the easy solution :) *LOL* >>I'd try stepping through the add code and see what it's doing. Course, you've probably done that. I was hoping for an easy solution. I figured surely someone has run into this before. I'm stepping through the Struts code right

Re: Validation plug-in & Websphere Studio 5.0.1

2004-08-18 Thread Kishore Senji
What's your input attribute for that action? (My guess is your input attribute might be pointing to the same action, instead of a jsp, the only way, i can think of getting looped 163 times.) Thanks, Kishore Senji. On Wed, 18 Aug 2004 15:05:39 -0400, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: >

RE: Processing, Please Wait...

2004-08-18 Thread Jim Barrows
> -Original Message- > From: Andrew Close [mailto:[EMAIL PROTECTED] > Sent: Wednesday, August 18, 2004 1:20 PM > To: Struts > Subject: Processing, Please Wait... > > > i'm being told that some of our users are getting confused while > waiting for a page to finish processing, and they in

Re: configuration violating J2EE spec?

2004-08-18 Thread Dan Allen
> See Section SRV.4.4 of the Servlet Spec. In brief, and modulo URL > encoding differences, the following equation is required to be true: > > requestURI = contextPath + servletPath + pathInfo Thanks Craig! That definitely saved me time. I have full confidence that with this information I wi

RE: [OT] Top things Mark has been during his time away from the Struts List

2004-08-18 Thread Jim Barrows
> -Original Message- > From: Rick Reumann [mailto:[EMAIL PROTECTED] > Sent: Wednesday, August 18, 2004 1:22 PM > To: Struts Users Mailing List > Subject: Re: [OT] Top things Mark has been during his time > away from the > Struts List > > > Jim Barrows wrote: > > > > >>-Original M

RE: configuration violating J2EE spec?

2004-08-18 Thread Jim Barrows
> -Original Message- > From: Craig McClanahan [mailto:[EMAIL PROTECTED] > Sent: Wednesday, August 18, 2004 1:19 PM > To: Struts Users Mailing List; [EMAIL PROTECTED] > Subject: Re: configuration violating J2EE spec? > > > On Wed, 18 Aug 2004 15:13:53 -0400, Dan Allen > <[EMAIL PROTECTE

Re: [OT] Top things Mark has been during his time away from the Struts List

2004-08-18 Thread Rick Reumann
Jim Barrows wrote: -Original Message- From: Chappell, Simon P [mailto:[EMAIL PROTECTED] It's all in the "brie"ding. :-) I think we've hi-Jacked this thread, hope no one has a meltdown I won't havee a meltdown, I'm American. Now some of the Swiss on this list, I can't speak for them.

Processing, Please Wait...

2004-08-18 Thread Andrew Close
i'm being told that some of our users are getting confused while waiting for a page to finish processing, and they inadvertantly try to perform another action before the page has loaded. the solution i've been asked to implement is an intermediary page the just says: 'Processing, Please Wait...".

Re: configuration violating J2EE spec?

2004-08-18 Thread Craig McClanahan
On Wed, 18 Aug 2004 15:13:53 -0400, Dan Allen <[EMAIL PROTECTED]> wrote: > Before I go paging through the J2EE spec to find a defense, I want to > see if someone out there can offer advice in the following matter. In > our application, the configuration of the servers is such that any URL > with a

RE: [OT] Top things Mark has been during his time away from the Struts List

2004-08-18 Thread Chappell, Simon P
Mmm ... melted cheese. Delicious. >-Original Message- >From: Jim Barrows [mailto:[EMAIL PROTECTED] >Sent: Wednesday, August 18, 2004 3:15 PM >To: Struts Users Mailing List >Subject: RE: [OT] Top things Mark has been during his time >away from the >Struts List > > > > >> -Original

RE: [OT] Top things Mark has been during his time away from the Struts List

2004-08-18 Thread Jim Barrows
> -Original Message- > From: Chappell, Simon P [mailto:[EMAIL PROTECTED] > Sent: Wednesday, August 18, 2004 1:12 PM > To: Struts Users Mailing List > Subject: RE: [OT] Top things Mark has been during his time > away from the > Struts List > > > It's all in the "brie"ding. :-) I think

RE: configuration violating J2EE spec?

2004-08-18 Thread Jim Barrows
> -Original Message- > From: Dan Allen [mailto:[EMAIL PROTECTED] > Sent: Wednesday, August 18, 2004 1:09 PM > To: Struts Users Mailing List > Subject: Re: configuration violating J2EE spec? > > > > Web server (ie apache) or application server (ie tomcat). > Application server shouldn

RE: [OT] Top things Mark has been during his time away from the Struts List

2004-08-18 Thread Chappell, Simon P
It's all in the "brie"ding. :-) >-Original Message- >From: Jim Barrows [mailto:[EMAIL PROTECTED] >Sent: Wednesday, August 18, 2004 3:09 PM >To: Struts Users Mailing List >Subject: RE: [OT] Top things Mark has been during his time >away from the >Struts List > > > > >> -Original Messag

RE: [OT] Top things Mark has been during his time away from the Struts List

2004-08-18 Thread Jim Barrows
> -Original Message- > From: Chappell, Simon P [mailto:[EMAIL PROTECTED] > Sent: Wednesday, August 18, 2004 1:06 PM > To: Struts Users Mailing List > Subject: RE: [OT] Top things Mark has been during his time > away from the > Struts List > > > It's the power of cheese. You thought tha

Re: configuration violating J2EE spec?

2004-08-18 Thread Dan Allen
> Web server (ie apache) or application server (ie tomcat). Application server > shouldn't be > stripping off the context, and yes that would be a violation. Web server stripping > off > context... well if you tell it. Our webserver doesn't strip off context at all, > because we tell it > no

RE: [OT] Top things Mark has been during his time away from the Struts List

2004-08-18 Thread Chappell, Simon P
It's the power of cheese. You thought that going over to the dark side of the force was a rush, you should try cheese! :-) >-Original Message- >From: Galbreath, Mark A [mailto:[EMAIL PROTECTED] >Sent: Wednesday, August 18, 2004 2:55 PM >To: 'Struts Users Mailing List' >Subject: RE: [OT] T

Re: html:img tag and modules

2004-08-18 Thread Kishore Senji
module works only when an action is specified. But you can set the contextRelative attribute to true in the html:img (P.S: contextRelative is deprecated and removed after 1.2) OR given that for that module you set the pagePattern to $P of the controller OR using JSTL: OR Extend img tag

RE: Validator is using action uri for form name instead of form name

2004-08-18 Thread Jim Barrows
> -Original Message- > From: news [mailto:[EMAIL PROTECTED] Behalf Of Bill Siggelkow > Sent: Wednesday, August 18, 2004 12:52 PM > To: [EMAIL PROTECTED] > Subject: Re: Validator is using action uri for form name > instead of form > name > > > Well, Jim -- I am not sure about the other

RE: [OT] Top things Mark has been during his time away from the Struts List

2004-08-18 Thread Galbreath, Mark A
Not fair! You saw the photos! -Original Message- From: Rick Reumann [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 18, 2004 3:45 PM To: Struts Users Mailing List Subject: Re: [OT] Top things Mark has been during his time away from the Struts List Chappell, Simon P wrote: > Red or Gr

RE: [OT] Top things Mark has been during his time away from the Struts List

2004-08-18 Thread Galbreath, Mark A
what the hell do you know? you live in Wisconsin...by choice! -Original Message- From: Chappell, Simon P [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 18, 2004 3:45 PM To: Struts Users Mailing List Subject: RE: [OT] Top things Mark has been during his time away from the Struts List

Re: Validator is using action uri for form name instead of form name

2004-08-18 Thread Bill Siggelkow
Well, Jim -- I am not sure about the other three -- but if your form extends ValidatorActionForm (not ValidatorForm) it means that you are matching the to the your action path not the ActionForm name. Jim Barrows wrote: I have 4 forms in validation.xml. 3 of them work correctly. 1 works.. od

RE: Validator is using action uri for form name instead of form name

2004-08-18 Thread Jim Barrows
> -Original Message- > From: news [mailto:[EMAIL PROTECTED] Behalf Of Bill Siggelkow > Sent: Wednesday, August 18, 2004 12:43 PM > To: [EMAIL PROTECTED] > Subject: Re: Validator is using action uri for form name > instead of form > name > > > Does RequestAccessForm extend ValidatorActi

RE: [OT] Top things Mark has been during his time away from the Struts List

2004-08-18 Thread Chappell, Simon P
Rigged! I posted far more OT's than these amateurs. It's all fixed I say. >-Original Message- >From: James Mitchell [mailto:[EMAIL PROTECTED] >Sent: Wednesday, August 18, 2004 2:29 PM >To: Struts Users Mailing List >Subject: Re: [OT] Top things Mark has been during his time >away from the

Re: [OT] Top things Mark has been during his time away from the Struts List

2004-08-18 Thread Rick Reumann
Chappell, Simon P wrote: Red or Grey squirrels? (inquiring minds want to know!) Sometimes Mark resumes one of his more favorite past-times involving other mammals - gerbilling:) (Rumor has it he learned some new techniques while at Java One in San Francisco.) -- Rick

Re: Validator is using action uri for form name instead of form name

2004-08-18 Thread Bill Siggelkow
Does RequestAccessForm extend ValidatorActionForm (or use DynaValidatorActionForm)? That would explain things, me thinks. Jim Barrows wrote: I have 4 forms in validation.xml. 3 of them work correctly. 1 works.. oddly. Struts is apprently thinking that that the form name is /requestaccess, not

RE: Validator is using action uri for form name instead of form name

2004-08-18 Thread Jim Barrows
> -Original Message- > From: James Mitchell [mailto:[EMAIL PROTECTED] > Sent: Wednesday, August 18, 2004 12:38 PM > To: Struts Users Mailing List > Subject: Re: Validator is using action uri for form name > instead of form > name > > > Sounds like you are mixing up DynaValidatorForm an

Re: Validator is using action uri for form name instead of form name

2004-08-18 Thread James Mitchell
Sounds like you are mixing up DynaValidatorForm and DynaValidatorActionForm. -- James Mitchell Software Engineer / Open Source Evangelist EdgeTech, Inc. 678.910.8017 AIM: jmitchtx - Original Message - From: "Jim Barrows" <[EMAIL PROTECTED]> To: "Struts User List (E-mail)" <[EMAIL PROTEC

Validator is using action uri for form name instead of form name

2004-08-18 Thread Jim Barrows
I have 4 forms in validation.xml. 3 of them work correctly. 1 works.. oddly. Struts is apprently thinking that that the form name is /requestaccess, not AccessRequestForm. Now, first thought is that struts-config is fubar, but: That looks right to me. Second thought

RE: [OT] Top things Mark has been during his time away from the Struts List

2004-08-18 Thread Galbreath, Mark A
flying, of course -Original Message- From: Chappell, Simon P [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 18, 2004 3:20 PM To: Struts Users Mailing List Subject: RE: [OT] Top things Mark has been during his time away from the Struts List Friday comes early some weeks. Red or G

Re: [OT] Top things Mark has been during his time away from the Struts List

2004-08-18 Thread James Mitchell
Ya, I put together a little script that shows the top [OT] posters over the last year. Here is the results: $ant find-ot-posters Searching archive. Bill Siggelkow20 James Holmes..40 Rick Reumann.510 James Mitchell..1248 Mark Galbreath..T

RE: [OT] Top things Mark has been during his time away from the Struts List

2004-08-18 Thread Chappell, Simon P
Friday comes early some weeks. Red or Grey squirrels? (inquiring minds want to know!) >-Original Message- >From: Rick Reumann [mailto:[EMAIL PROTECTED] >Sent: Wednesday, August 18, 2004 2:09 PM >To: Struts Users Mailing List >Subject: Re: [OT] Top things Mark has been during his time >a

RE: configuration violating J2EE spec?

2004-08-18 Thread Jim Barrows
> -Original Message- > From: Dan Allen [mailto:[EMAIL PROTECTED] > Sent: Wednesday, August 18, 2004 12:14 PM > To: [EMAIL PROTECTED] > Subject: configuration violating J2EE spec? > > > Before I go paging through the J2EE spec to find a defense, I want to > see if someone out there can o

RE: Learning the basics

2004-08-18 Thread Galbreath, Mark A
Hey! those were from ME! -Original Message- From: Rick Reumann [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 18, 2004 3:09 PM To: Struts Users Mailing List Subject: Re: Learning the basics Robert Taylor wrote: > The struts website contains a wealth of information > on getting star

RE: Validation plug-in & Websphere Studio 5.0.1

2004-08-18 Thread Jim Barrows
> -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: Wednesday, August 18, 2004 12:06 PM > To: Struts Users Mailing List > Subject: RE: Validation plug-in & Websphere Studio 5.0.1 > > > > > > > My bad. > > That was some code I was trying just to see what

configuration violating J2EE spec?

2004-08-18 Thread Dan Allen
Before I go paging through the J2EE spec to find a defense, I want to see if someone out there can offer advice in the following matter. In our application, the configuration of the servers is such that any URL with a context of "/apps/" is captured by the webserver, the URL is rewritten with this

Re: [OT] Top things Mark has been during his time away from the Struts List

2004-08-18 Thread Rick Reumann
- Learning new and inventive ways to clutter up other technical mailing lists with OT Friday posts. -- Rick - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Learning the basics

2004-08-18 Thread Rick Reumann
Robert Taylor wrote: The struts website contains a wealth of information on getting started. A google search wouldn't hurt either. Ken's questions are fine compared to the one's I've gotten mailed to me personally lately. I almost thought they were a joke Two separate e-mails from the same

RE: Learning the basics

2004-08-18 Thread Kenneth Litwak
Thanks Jim, and everyone else, for your help. Ken -Original Message- From: Jim Barrows [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 18, 2004 12:04 PM To: Struts Users Mailing List Subject: RE: Learning the basics > -Original Message- > From: Kenneth Litwak [mailto:[EMAIL

Re: [OT] Top things Mark has been during his time away from the Struts List

2004-08-18 Thread James Mitchell
Sorry, I meant to say "unsuspecting". -- James Mitchell Software Engineer / Open Source Evangelist EdgeTech, Inc. 678.910.8017 AIM: jmitchtx - Original Message - From: "Galbreath, Mark A" <[EMAIL PROTECTED]> To: "'Struts Users Mailing List'" <[EMAIL PROTECTED]> Sent: Wednesday, August 1

RE: Validation plug-in & Websphere Studio 5.0.1

2004-08-18 Thread bmf5
My bad. That was some code I was trying just to see what would happen. This line gets the same results and is the one I started with. Promise. errors.add(ActionErrors.GLOBAL_MESSAGE, new ActionError( "errors.physical.takeover"));

RE: [OT] Top things Mark has been during his time away from the Struts List

2004-08-18 Thread Galbreath, Mark A
They were NOT innocent! -Original Message- From: James Mitchell [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 18, 2004 3:03 PM To: Struts Users Mailing List Subject: Re: [OT] Top things Mark has been during his time away from the Struts List 1 more... - molesting innocent squirrel

RE: Learning the basics

2004-08-18 Thread Jim Barrows
> -Original Message- > From: Kenneth Litwak [mailto:[EMAIL PROTECTED] > Sent: Wednesday, August 18, 2004 11:52 AM > To: Struts Users Mailing List > Subject: RE: Learning the basics > > > Hi Jim, > >Well, I did actually look in google before posting. If I was doing > this in regula

Re: [OT] Top things Mark has been during his time away from the Struts List

2004-08-18 Thread James Mitchell
1 more... - molesting innocent squirrels behind the pub -- James Mitchell Software Engineer / Open Source Evangelist EdgeTech, Inc. 678.910.8017 AIM: jmitchtx - Original Message - From: "Rick Reumann" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Wedne

  1   2   >