Re: Checkbox question

2005-06-30 Thread basudeb . acharya
Hi Apte, The problem is due to the fact that when an array of checkboxes are submitted only the checkboxes which are checked are sent back to the server and that does not contain the index of the checkbox as laid out in the form, for example if there are 10 checkboxes (with same name) in a f

populating of struts formbeans

2005-06-30 Thread Schlenger, Michael, VF-DE
If a strut application runs with log level debug, while populating a form bean, all request parameters and their values are logged into a appropiate Appender (we use log4j), for instance a logfile. In common this is not a problem, but for instance, after a successful form based login and a forwar

Exception - General Question

2005-06-30 Thread Gaet
Hi everybody, Up to now, I was handling my exceptions in my Action class as follow : ActionErrors errors = new ActionErrors(); try{ .. .. } catch (Exception e) { //Put pr

Re: Error deploying struts webapp to sunone 6.1

2005-06-30 Thread Richard Reyes
Am suppose to see anything on the browser if I browse this.. http://struts.apache.org/tags-bean to GET /index.jsp, service-j2ee reports: StandardWrapperValve[jsp]: WEB2792: Servlet.service() for servlet jsp threw exception org.apache.jasper.JasperException: WEB4083: No such tag message

Re: Error deploying struts webapp to sunone 6.1

2005-06-30 Thread Richard Reyes
Hello Guys, Am I suppose to see anything on the browser if I browse this.. http://struts.apache.org/tags-bean Now I got this error after implementing this...http://struts.apache.org/userGuide/configuration.html#dd_config_taglib_23 to GET /index.jsp, service-j2ee reports: StandardWrapperVal

Problem rendering internationalized messages

2005-06-30 Thread Stéphane Josephy
Hi everyone, Just crashed onto this site, seems all nice and useful, let's see if you can do something for me (I'm a young Struts padawan :-) ) I'm working in a 3-legal-languages-country, so localization is a must. I have messageResouces.properties declared in 3 locales, and some message like th

DynaActionForm values problem after submit

2005-06-30 Thread Ciaran Hanley
Can anybody help me with the problem below please. I've hit a brick wall with it! :) -Original Message- From: Ciaran Hanley [mailto:[EMAIL PROTECTED] Sent: 28 June 2005 20:02 To: 'Struts User Mailing List' Subject: Unable to read DynaForm array values I have the following DynaActionForm

RE: Problem rendering internationalized messages

2005-06-30 Thread Marco Mistroni
Hello, How about this? HTH marco -Original Message- From: news [mailto:[EMAIL PROTECTED] On Behalf Of Stéphane Josephy Sent: 30 June 2005 10:15 To: user@struts.apache.org Subject: Problem rendering internation

RE: DynaActionForm values problem after submit

2005-06-30 Thread Marsh-Bourdon, Christopher
Is it the name of the property is 'paymentAmount' yet in the form definition it states the name as 'payments'? Christopher Marsh-Bourdon www.marsh-bourdon.com -Original Message- From: Ciaran Hanley [mailto:[EMAIL PROTECTED] Sent: 30 June 2005 10:42 To: 'Struts User Mailing List' Subject

Using dynamic GET data

2005-06-30 Thread Karianne Berg
Hello, I'm fairly new to Struts, and I'm trying to transform a web presentation application of some size into using Struts for the Controller part, since it has grown really, really long. For the presentation part of the application, the users are supposed to follow links and get presented with i

Re: Problem rendering internationalized messages

2005-06-30 Thread Stéphane Josephy
Thanks Marco, it just works fine! - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: DynaActionForm values problem after submit

2005-06-30 Thread Ciaran Hanley
No its not that, paymentAmount is a property in the payments Array, which is of type PaymentBean[], and it iterates over this array to gather the data. This data gets printed ok, but when it gets new values it doesn't save, instead the old data is retrieved via the form.get("property") methods. T

Re: DynaActionForm values problem after submit

2005-06-30 Thread Nitesh
Try putting some debugs into your action class... probably your pre-population logic is running over your edited data! Nitesh - Original Message - From: "Ciaran Hanley" <[EMAIL PROTECTED]> To: "'Struts User Mailing List'" Sent: Thursday, June 30, 2005 3:11 PM Subject: DynaActionForm va

Re: DynaActionForm values problem after submit

2005-06-30 Thread Nitesh
should've been basically your generated html would look like... ... HTH Nitesh - Original Message - From: "Marsh-Bourdon, Christopher" <[EMAIL PROTECTED]> To: "'Struts Users Mailing List'" Sent: Thursday, June 30, 2005 3:15 PM Subject: RE: DynaActionForm values problem after

Re: Using dynamic GET data

2005-06-30 Thread Nitesh
Probably you could get the GET data in the action class which goes to a intermediate JSP which does nothing but forwards to the right JSP using the GET data. HTH Nitesh - Original Message - From: "Karianne Berg" <[EMAIL PROTECTED]> To: Sent: Thursday, June 30, 2005 3:32 PM Subject: U

Re: multiselect checkbox inside multiselect dropdown

2005-06-30 Thread Vicky
Anybody with the solutions please? --- Vicky <[EMAIL PROTECTED]> wrote: > I need to design a control on Struts UI page with > following functionalities. > > * I have two attributes: Region, office. I have to > design following tree structure on UI > +Region 1 (checkbox) > office1 (checkbox) > of

RE: DynaActionForm values problem after submit

2005-06-30 Thread Ciaran Hanley
At last it works!!! Thanks very much for your help Ciaran -Original Message- From: Nitesh [mailto:[EMAIL PROTECTED] Sent: 30 June 2005 11:17 To: Struts Users Mailing List Subject: Re: DynaActionForm values problem after submit should've been basically your generated html would l

Re: multiselect checkbox inside multiselect dropdown

2005-06-30 Thread Nitesh
You should probably try to put in the DHTML Folder tree to display your list... There should be script available online for doing this... the change you'll have to put in your folder tree would be to add checkboxes in addition to the text. HTH Nitesh - Original Message - From: "Vicky"

architecture of composite action forms

2005-06-30 Thread Rivka Shisman
Hi Dears, I have a transfer object called FatherTO that contains a collection of ChildTO's. Can you please help me with how the relevant ActionForm (i.e. FatherForm ) should look like. How should the reset() & validate() methods look like? Should I use the same jsp form for the Father data a

How do you have a form with two images do two different things when submitted

2005-06-30 Thread Harland, David
How do you have two images that submit a form but they do two different operations. Thanks Dave. This e mail is from DLA Piper Rudnick Gray Cary UK LLP. The contents of this email and any attachments are confidential to the intended recipient. They may not be disclosed to or used by or copied

RE: How do you have a form with two images do two different thing s when submitted

2005-06-30 Thread Marsh-Bourdon, Christopher
One way would be to have a form with a hidden html object that gets set by the onClick event of each of the images. This can then be collected by the ActionForm and acted upon by the Action. Christopher Marsh-Bourdon www.marsh-bourdon.com -Original Message- From: Harland, David [mailto

Can't start simple struts app with Eclipse, JDK 1.5, & Tomcat plugin

2005-06-30 Thread Michael Mattox
I was developing just fine and now tomcat refuses to start. I get this error: GRAVE: Unable to initialize Struts ActionServlet due to an unexpected exception or error thrown, so marking the servlet as unavailable. Most likely, this is due to an incorrect or missing library dependency. java.lang.

RE: [OT] Stinking IDEs

2005-06-30 Thread Mark Galbreath
Amen, brother! Like I said when I began this thread...Struts is dead and Java is a C# wannabie. ~mark -Original Message- From: Gregory Seidman [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 29, 2005 7:17 PM To: user@struts.apache.org Subject: Re: [OT] Stinking IDEs So I hate to feed

RE: [OT] Stinking IDEs

2005-06-30 Thread Mark Galbreath
u missed the obvious innuendo and half-assed attempt at humor -Original Message- From: Larry Meadors [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 29, 2005 5:32 PM To: Struts Users Mailing List Subject: Re: [OT] Stinking IDEs IMO, the IDE bigots are engaged in some sort of Freudian

Re: Exception - General Question

2005-06-30 Thread BHansard
In 1.2.7 you simply change the ActionErrors to ActionMessages. you still save the errors with the saveErrors method and it works the same in the tags. ">"Gaet" <[EMAIL PROTECTED]> "Gaet" <[EMAIL PROTECTED]> 06/30/2005 04:54 AM Please respond to "Struts Users Mailing List" To

Re: multiselect checkbox inside multiselect dropdown

2005-06-30 Thread Wendy Smoak
From: "Vicky" <[EMAIL PROTECTED]> Anybody with the solutions please? This is too complex a problem for anyone to be able to hand you a complete solution. In particular, what you're describing (checkboxes *inside* a dropdown) doesn't really exist from an HTML standpoint. That's why I sugge

RE: [OT] Stinking IDEs

2005-06-30 Thread jacob.willig
I very much like the ease of use of struts (yes it need some improvements still) and everytime I encounter a lack of functionality building my JSP I will have to ask myself if this is lack of functionality or simply an attempt of me to put too much logic into the JSP... Sofar I could handle all iss

Re: Exception - General Question

2005-06-30 Thread Gaet
Thanks for replying! And what baout the validate() method in struts form? Is it still return ActionErrors or ActionMessages? What about the exception Handler? what is the best pratice between catching in each action class or in the hander? Thanks for help! - Original Message - Fr

RE: [OT] Stinking IDEs

2005-06-30 Thread jacob.willig
btw I use Eclipse 3.0.1 with several cool plugins for building and testinf my webapplications... Sofar it rocks. The new features in 3.2 make it even more user friendly and easier to work with.. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: donderdag 30 juni 2

Re: Exception - General Question

2005-06-30 Thread Martin Gainty
Gaet et al Yes with ActionMessages you will be pulling key indexed locale specific Unicode strings where locale detaults to your browsers locale e.g. (keyed information contained within ApplicationResources_fr_FR.properties will be extracted while you are using a french browser in Paris) Take

Re: Exception - General Question

2005-06-30 Thread BHansard
Yes, the validate method is going with the ActionMessages as well. However, the Validator Plug-in is something that should be looked at. It is a little more object based in nature so you do not end up repeating the same validations on multiple forms. It returns errors in the same mannor as the

Re: Error deploying struts webapp to sunone 6.1

2005-06-30 Thread Wendy Smoak
From: "Richard Reyes" <[EMAIL PROTECTED]> Am I suppose to see anything on the browser if I browse this.. http://struts.apache.org/tags-bean No. It needs to match the URI in the TLD file, (and be unique,) but it doesn't have to be a working URL. Now I got this error after implementing thi

[slightly OT] alternatives to Tiles?

2005-06-30 Thread Bill Schneider
Hello, Tiles is very powerful but I've found that 99% of the time I'm only using it to wrap a page in a consistent layout/navigation. It seems like I'm not getting enough value out of it to justify the additional layer of indirection of having to touch tiles-defs.xml. I also would love to be

Re: AW: [OT]Linux server market share...

2005-06-30 Thread Ed Griebel
This is scary indeed. For Western NY, there's 2x .net jobs compared to plain Java, and 8x more .net than j2ee. However, consider that MS has marketed hard that any kind of development with Microsoft can now be tagged ".Net", which inflates the figures. At least that's my story :-) -ed On 6/29/05

RE: [slightly OT] alternatives to Tiles?

2005-06-30 Thread Mark Galbreath
Yep - it's called "PHP 5.0." ~mark -Original Message- From: Bill Schneider [mailto:[EMAIL PROTECTED] Sent: Thursday, June 30, 2005 8:45 AM Has anyone seen anything that has Tiles' request/response cycle and runtime footprint, but configures like SiteMesh? :-) **

Re: [slightly OT] alternatives to Tiles?

2005-06-30 Thread Wendy Smoak
From: "Bill Schneider" <[EMAIL PROTECTED]> Tiles is very powerful but I've found that 99% of the time I'm only using it to wrap a page in a consistent layout/navigation. It seems like I'm not getting enough value out of it to justify the additional layer of indirection of having to touch tiles

RE: [OT] Java vs .NET

2005-06-30 Thread Mark Galbreath
Scary? Ponder this: in the Wash DC area, there is an overabundance of Java gigs and a scarcity of Java developers. Why? Because all the Java developers have wised up and realized that (1) C# is what Java should have been to begin with, and (2) C# and .NET are O-P-E-N S-T-A-N-D-A-R-D-S (can

Re: AW: [OT]Linux server market share...

2005-06-30 Thread Leon Rosenberg
On Thu, 2005-06-30 at 08:48 -0400, Ed Griebel wrote: > This is scary indeed. For Western NY, there's 2x .net jobs compared to > plain Java, and 8x more .net than j2ee. > > However, consider that MS has marketed hard that any kind of > development with Microsoft can now be tagged ".Net", which infl

Re: [OT] Java vs .NET

2005-06-30 Thread Aleksandar Matijaca
That is interesting, because, the situation is completely opposite in Toronto, and in Canada in general I think. I just did a quick search on google groups (group tor.jobs) : http://groups.google.ca/groups?hl=en&lr=&q=c%23+group%3Ator.jobs&qt_s=Search returns 2200 jobs http://groups.google.ca/g

Re: [OT] Java vs .NET

2005-06-30 Thread Larry Meadors
Scary? Not at all, as a Java developer, that is what I call a Hot Market (tm). :) Larry On 6/30/05, Mark Galbreath <[EMAIL PROTECTED]> wrote: > Scary? Ponder this: in the Wash DC area, there is an overabundance of Java > gigs and a scarcity of Java developers. --

Re: [slightly OT] alternatives to Tiles?

2005-06-30 Thread Aleksandar Matijaca
I believe that if you are using JSP includes, the included file, "looses" any objects that were put in using request.setAttribute(...) ? I have found that using jsp:includes is typicaly good enough to include any group page imports, definitions and maybe any JavaScript... Regards, Alex. On 6/30

Re: Can't start simple struts app with Eclipse, JDK 1.5, & Tomcat plugin

2005-06-30 Thread Michael Mattox
> GRAVE: Unable to initialize Struts ActionServlet due to an unexpected > exception or error thrown, so marking the servlet as unavailable. Most > likely, this is due to an incorrect or missing library dependency. > java.lang.NoClassDefFoundError: > org/apache/struts/tiles/TilesRequestProcessor I

Re: AW: [OT]Linux server market share...

2005-06-30 Thread Larry Meadors
LOL! Based on the .net developers I have worked with so far, I concur. Example: The company I currently work for hired a ".NET Expert" to come help us get moving with our first .net project. On the first day, we were discussing data caching. .Net Expert: Put it in the asp.net cache object (like

Re: [OT] Java vs .NET

2005-06-30 Thread Larry Meadors
On 6/30/05, Aleksandar Matijaca <[EMAIL PROTECTED]> wrote: > All big employers here (Banks, Insurance companies ...) use J2EE. .NET is > typicaly seen here as something small companies without any expertise do.. I would agree with that assessment. -

[OT] Off topic threads

2005-06-30 Thread Marsh-Bourdon, Christopher
I know this would "stifle" the debate, but can we just stop the very off-topic debates on: My IDE vs. Your Text Editor Struts vs. Anything else (especially Microsoft) It's not Friday and it only encourages the trolls. It really doesn't have a place here. I personally do attempt (however poorly

Re: [OT] Off topic threads

2005-06-30 Thread delbd
You know what? I was presuaded it's Friday today. Still one more day of work before week-end :'( Le Jeudi 30 Juin 2005 15:43, Marsh-Bourdon, Christopher a écrit : > I know this would "stifle" the debate, but can we just stop the very > off-topic debates on: > > My IDE vs. Your Text Editor > Stru

Re: [OT] Java vs .NET

2005-06-30 Thread Gregory Seidman
On Thu, Jun 30, 2005 at 09:00:58AM -0400, Mark Galbreath wrote: } Scary? Ponder this: in the Wash DC area, there is an overabundance of } Java gigs and a scarcity of Java developers. Why? Because all the Java } developers have wised up and realized that (1) C# is what Java should } have been to

RE: [slightly OT] alternatives to Tiles?

2005-06-30 Thread Abdullah Jibaly
Take a look at SiteMesh. It's much better than Tiles for page decoration (not composition), which looks like exactly what you need. You just define one (or more) decorators (layout pages) and SiteMesh will automatically format your pages using that layout page. Regards, Abdullah -Original

Strange problem with validator

2005-06-30 Thread Manfred Wolff
Hi all. I have a very, very strage problem. I use commons-validator to validate my struts pages. I use also velocity to render the pages. If I have a required field and it is empty it writes an error message and deletes the field. But it also deletes other fields in the form. Not all, but som

Re: architecture of composite action forms

2005-06-30 Thread Adam Hardy
Rivka Shisman on 30/06/05 13:30, wrote: I have a transfer object called FatherTO that contains a collection of ChildTO's. Sounds like you should look at 'nested beans'. Check them out on the jakarta struts website. It depends on your user interface design. You may find it easier to have a

Re: Unacceptable Behaviour of Mark Galbreath @ elections.state.md.us

2005-06-30 Thread Gregory Seidman
On Wed, Jun 29, 2005 at 08:50:47PM -0700, Carlos Duque wrote: } Actually, I wonder just how happy the State of Maryland would be know the } amount of time this fellow expends pontificating on topics far removed } from any work for the Department of Elections. It certainly seems ill-advised to use

Re: [OT] Off topic threads

2005-06-30 Thread Aleksandar Matijaca
Long weekend in Canada (day-off tomorrow)! Sorry, I fergot -- about OT topics on friday... Cheers, Alex. On 6/30/05, delbd <[EMAIL PROTECTED]> wrote: > > You know what? > I was presuaded it's Friday today. Still one more day of work before > week-end :'( > > Le Jeudi 30 Juin 2005 15:43, Mars

RE: [OT] Off topic threads

2005-06-30 Thread Scott Piker
I personally don't mind them as long as they're flagged [OT] - that way, my email filters work and I can choose to read them when/if I choose. Besides - without these threads, we'd lose out on such timeless analogies like the 'mud-wrestling with pigs' comment! :-) - Scott > -Original Messag

RE: Unacceptable Behaviour of Mark Galbreath @ elections.state.md.us

2005-06-30 Thread Mark Galbreath
Carlos, this sounds like a threat. That is REALLY intolerable, u obtuse little shmuck. On Wed, Jun 29, 2005 at 08:50:47PM -0700, Carlos Duque wrote: } Actually, I wonder just how happy the State of Maryland would be know the } amount of time this fellow expends pontificating on topics far remove

RE: [slightly OT] alternatives to Tiles?

2005-06-30 Thread Durham David R Jr Ctr 805 CSPTS/SCE
> What about plain-old jsp includes? Maybe they're "enough" for your needs. I think tiles controllers provided added benefit/functionality beyond something like SiteMesh. Furthermore, use of tiles does not preclude the use of SiteMesh. - Dave --

Re: architecture of composite action forms

2005-06-30 Thread Martin Gainty
You can use computed values for your index to the array which contains bean attribute Take a look at http://www.informit.com/content/images/0131001531/samplechapter/0131001531.pdf+%22Single+JSP%22+AND+%22Nested+Beans%22&hl=en HTH, Martin Gainty __ D

RE: Populating the ActionForm without using the reset method?

2005-06-30 Thread Thai Dang Vu
It's really simple using your way. Thank you :) I can do that with Struts 1.2 (eclipse 3.0, exadel 2.5), but it seems to me that it doesn't work in JDeveloper 10.1.2.0.0 build 1811) which uses Struts 1.1. Does anybody know that it is because of Struts 1.1 or because of my program? >>> [EMAIL P

Passing collection Objects from html form to Action class

2005-06-30 Thread Phani
I have a Collection Object in my JSP which I am able to display using display Tag. I want to render those collection objects when I submit my html form, so that I can retrieve them in my Action class as form property. If it is a string, I can render it as hidden field.. And in the Action class

Re: [slightly OT] alternatives to Tiles?

2005-06-30 Thread a k
Is it even possible to include pages from another webapp context? Doesn't every web app have its own classloader? On 6/30/05, Bill Schneider <[EMAIL PROTECTED]> wrote: > Hello, > Tiles is very powerful but I've found that 99% of the time I'm only > using it to wrap a page in a consistent layout/na

Re: [slightly OT] alternatives to Tiles?

2005-06-30 Thread Michael Jouravlev
On 6/30/05, Aleksandar Matijaca <[EMAIL PROTECTED]> wrote: > On 6/30/05, Wendy Smoak <[EMAIL PROTECTED]> wrote: > > From: "Bill Schneider" <[EMAIL PROTECTED]> > > > Tiles is very powerful but I've found that 99% of the time I'm only using > > > it to wrap a page in a consistent layout/navigation. I

Re: [OT]VS.NET is awesome

2005-06-30 Thread Anand Apte
I do not understand why topics are on struts user mailing list like: - text vs ide - vs.net ?? - linux server Is it long weekend effect or what? Anand Apte Dave Newton wrote: Yan Hu wrote: I love VS.NET very much. VS.NET pretty much blows chunks and is outpaced even by Eclipse. The 2005

Re:

2005-06-30 Thread Norm Deane
You should check out sitemesh. It uses page decoration (vs Tiles page composition) and requires very little configuration and programming overhead. It also is capable of decorating pages with elements from other sites/applications. http://opensymphony.com/sitemesh/ Norm wrote: On 6/30/05,

Re: use a plugin property

2005-06-30 Thread Dewitte Rémi
It works perfectly, thank you. Rémi Le Mercredi 29 Juin 2005 11:33, Marsh-Bourdon, Christopher a écrit : > Create a private property with a Getter and Setter in your plugin, and the > wonders, nay mysteries, of Struts will ensure that it gets populated for > your use. > > Christopher Marsh-Bourdon

Re: Unacceptable Behaviour of Mark Galbreath @ elections.state.md.us

2005-06-30 Thread Brandon Goodin
i find this thread massively humorous. Can someone collect more of marks quotes. I was crying with laughter while i read them :) Brandon On 6/30/05, Mark Galbreath <[EMAIL PROTECTED]> wrote: > Carlos, this sounds like a threat. That is REALLY intolerable, u obtuse > little shmuck. > > On Wed,

iterate on a value

2005-06-30 Thread Dewitte Rémi
Hello ! In my form , i ask the number of children. On the next page, i'd like to display as many textboxes as children to get their name. provides iteration on array or collection, how can i iterate on the number of children ? Thanks ! ---

RE: Passing collection Objects from html form to Action class

2005-06-30 Thread Mark Benussi
Sadly you cannot unless you make the scope of the form session. I find it limiting to say the least! -Original Message- From: Phani [mailto:[EMAIL PROTECTED] Sent: 30 June 2005 16:14 To: Struts Users Mailing List Subject: Passing collection Objects from html form to Action class I hav

Re: Unacceptable Behaviour of Mark Galbreath @ elections.state.md.us

2005-06-30 Thread Larry Meadors
Well, IMO, the funny part of them is that 50% are accurate and valid. So, do we now ban people whose opinions do not match ours because they are "disruptive"? Great way to build up the community Niall - ban independent thought. Larry On 6/30/05, Brandon Goodin <[EMAIL PROTECTED]> wrote: > i f

RE: Passing collection Objects from html form to Action class

2005-06-30 Thread Phani
Tell me which is performance efficient & desired way: Putting the form in session or making a trip to the database.. assuming we have collection of 50 - 60 records.. Phani.. --- Mark Benussi <[EMAIL PROTECTED]> wrote: > Sadly you cannot unless you make the scope of the > form session. > > I f

Re: [OT]VS.NET is awesome

2005-06-30 Thread Simon Chappell
Well, the Struts mailing list has a long, and I mean LONG, history of off-topic conversations. I should know, I've been one of the bigger offenders over time. :-) The rules have always been that the messages should be suitably labeled with either [OT], [FRIDAY] or [BEER]. This allows folks to filt

check role - isUserInRole in jstl

2005-06-30 Thread Grzegorz Stasica
I've a code like that but I get an error that namespace has to be specified. IsUserInRole is a function so probably I invoke it incorectlly. How can I check user's role in jstl? - To unsubscribe, e-mail: [EMAIL PROTECTED] For

Using html:file

2005-06-30 Thread vinod varghese
Hi, I have a particular issue using the html:file tag. The situation is that my jsp uses a html:file tag.First I submit the jsp which returns a validation error through the html:errors tag. I correct those errors and again submit the form which after processing in the action takes to another j

[OT] Re: Unacceptable Behaviour of Mark Galbreath

2005-06-30 Thread erikweber
Sheesh man, I'm not calling for a ban on anyone, but give Niall a break. Niall is one of the most helpful people I've ever met online. Mark comes in here and says "Struts is dead" and calls everyone faggots, etc., ad nauseum. He might behave that way on many lists, but all of us who don't know h

Re: Is there any Jsp template like Smarty template ?

2005-06-30 Thread Dave Newton
Zarar Siddiqi wrote: An old woodcutter once had to chop down a very large tree and all he owned was a hacksaw. He was really really good at using this hacksaw since he had used it all his life. Just as he was about to start cutting the tree another woodcutter who had just cut a similar tree

Re: [OT] Re: Unacceptable Behaviour of Mark Galbreath

2005-06-30 Thread M. Bitner
On 6/30/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Sheesh man, I'm not calling for a ban on anyone, but give Niall a break. > Niall is one of the most helpful people I've ever met online. Mark comes in > here and says "Struts is dead" and calls everyone faggots, etc., ad nauseum. > He mi

RE: [OT] check role - isUserInRole in jstl

2005-06-30 Thread Lindholm, Greg
I've used the Jakarta taglibs-request tags to do this. <%@ taglib uri="http://jakarta.apache.org/taglibs/request-1.0"; prefix="req" %> -Original Message- From: news [mailto:[EMAIL PROTECTED] On Behalf Of Grzegorz Stasica Sent: Thursday, June 30, 2005 12:48 PM To: user@struts

Re: [OT] Re: Unacceptable Behaviour of Mark Galbreath

2005-06-30 Thread Mark Galbreath
...just trying to keep the conversation lively. ;-) ~mark On 6/30/05, M. Bitner <[EMAIL PROTECTED]> wrote: > On 6/30/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > Sheesh man, I'm not calling for a ban on anyone, but give Niall a break. > > Niall is one of the most helpful people I've ev

Re: Unacceptable Behaviour of Mark Galbreath @ elections.state.md.us

2005-06-30 Thread Dave Newton
Niall Pemberton wrote: Pretty much all of Mark Galbreath's posts to this mailing list are IMO either rude, obnoxious or irrelevant. Its obvious that he has no interest in Struts or contributing constructively to this community and his only purpose is to disrupt. Below I include a selection of th

Re: [OT] Re: Unacceptable Behaviour of Mark Galbreath

2005-06-30 Thread Rick Reumann
M. Bitner wrote the following on 6/30/2005 1:57 PM: FWIW, I do find Mark's posts to have little redeeming value and would prefer not to be inflicted with them. Using Thunderbird mail client: 1) Go to tools --> Message Filters 2) Select "New" 3) On Left hand column change field to "Sender" 4)

Re: Unacceptable Behaviour of Mark Galbreath @ elections.state.md.us

2005-06-30 Thread Mark Galbreath
wow...what a bunch of fascists! Did you used to work as a forum guide on AOL? Do you know what a filter is? Can you spell d-e-l-e-t-e? Try taking your finger out of your ass and pressing the button. On 6/30/05, Dave Newton <[EMAIL PROTECTED]> wrote: > Niall Pemberton wrote: > > >Pretty much

Re: [OT] Re: Unacceptable Behaviour of Mark Galbreath

2005-06-30 Thread Yan Hu
> ...just trying to keep the conversation lively. ;-) by insulting people? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: [OT] Re: Unacceptable Behaviour of Mark Galbreath

2005-06-30 Thread Durham David R Jr Ctr 805 CSPTS/SCE
> > ...just trying to keep the conversation lively. ;-) > by insulting people? Evidently. That's my one word sentence for the day. - Dave - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PRO

Re: [OT] Re: Unacceptable Behaviour of Mark Galbreath

2005-06-30 Thread Dave Newton
Yan Hu wrote: ...just trying to keep the conversation lively. ;-) by insulting people? Beats hittin' 'em with a stick. Dave

Re: Passing collection Objects from html form to Action class

2005-06-30 Thread Laurie Harper
Huh? All you have to do is render the collection as a set of hidden fields on the form and treat the data the same way as the string value. L. Mark Benussi wrote: Sadly you cannot unless you make the scope of the form session. I find it limiting to say the least! -Original Message

[OT] Re: Unacceptable Behaviour of Mark Galbreath @ elections.state.md.us

2005-06-30 Thread Lists
I noticed Mark that you have changed your email address from your work one to a more "personal" one. No doubt in view of the comments made about your current position and how well you must be reflecting on your present employer. Still any future prospective employers can have the joy of re

Re: [OT] Re: Unacceptable Behaviour of Mark Galbreath @ elections.state.md.us

2005-06-30 Thread Mark Galbreath
Actually, I changed the email address so I could continue this scintilating conversation away from the office from my laptop. Nice try at a good dig, though. Try to rise above mediocrity. Cheers! Mark On 6/30/05, Lists <[EMAIL PROTECTED]> wrote: > I noticed Mark that you have changed your email

Re: Passing collection Objects from html form to Action class

2005-06-30 Thread Phani
How ??... can u show me the syntax.. --- Laurie Harper <[EMAIL PROTECTED]> wrote: > Huh? All you have to do is render the collection as > a set of hidden fields > on the form and treat the data the same way as the > string value. > > L. > > Mark Benussi wrote: > > > Sadly you cannot unless yo

My apology

2005-06-30 Thread Mark Gallbreath
I just wanted to apologize for my behavior over the past few days. I understand some of my posts could be construed as offensive. I'm going through a real tough time now in my personal life. For the longest time I've wanted to really become a woman but I can't seem to pass the psychological exami

Re: My apology

2005-06-30 Thread Mark Galbreath
hahahahaha! now THAT was funny!! good email spoof, too! On 6/30/05, Mark Gallbreath <[EMAIL PROTECTED]> wrote: > I just wanted to apologize for my behavior over the past few days. I > understand some of my posts could be construed as offensive. > > I'm going through a real tough time now in my

Re: My apology

2005-06-30 Thread Dave Newton
Mark Gallbreath wrote: To make matters worse, I've recently been abused by an older Indian gentleman down the street for me. While making love, he forced me to scream out Java API calls, which I think explains why I've moved on to C#/.NET and have a prejudice against Indians. "I said name my

Validator Form and inheritance

2005-06-30 Thread Charles . Gouin-Vallerand
Hi EveryBody, I'm trying to use some inheritance with ValidatorForm. But, when it's time to validate some field from the father class in the child class, it doesn't work. I know that i'm not clear but check this exemple you will understand more : I got a BottleForm class that is ext

OT - Re: My apology

2005-06-30 Thread Jason King
Perhaps you could find Lorena Bobbitt and she'll take care of the problem for free. Mark Gallbreath wrote: I just wanted to apologize for my behavior over the past few days. I understand some of my posts could be construed as offensive. I'm going through a real tough time now in my personal li

Re: Validator Form and inheritance

2005-06-30 Thread erikweber
I take it you are using the Validator plugin? Do you have the xml files setup correctly? Is there a form-bean defined as type AddBottleForm? Is this the type you specify in your action mapping? Does validation.xml have the correct entry for AddBottleForm, according to the name you gave it in st

Re: [OT] check role - isUserInRole in jstl

2005-06-30 Thread Laurie Harper
See also the standard Struts logic tags, particularly logic:present: http://struts.apache.org/userGuide/struts-logic.html#present L. Lindholm, Greg wrote: I've used the Jakarta taglibs-request tags to do this. <%@ taglib uri="http://jakarta.apache.org/taglibs/request-1.0"; prefix="req" %>

RE: Validator Form and inheritance

2005-06-30 Thread Charles . Gouin-Vallerand
I was using the validation for other form and it's work fine. I just have difficulty to validate field from a extend class. There is a snippet of my code : The declaration in the The location field is came from the BottleForm that is the "parent" class of the EditBot

Re: [OT] Re: Unacceptable Behaviour of Mark Galbreath

2005-06-30 Thread Brandon Goodin
I love this drama. It's like watching a soap opera. *urmph* Did i just admit that i like soap operas? And just think, our favorite troll is savoring every moment of this :D. Brandon On 6/30/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Sheesh man, I'm not calling for a ban on anyone, but giv

Re: [OT] Re: Unacceptable Behaviour of ......

2005-06-30 Thread Adam Hardy
[EMAIL PROTECTED] on 30/06/05 18:40, wrote: Sheesh man, I'm not calling for a ban on anyone, but give Niall a break. Niall is one of the most helpful people I've ever met online. Mark comes in here and says "Struts is dead" and calls everyone faggots, etc., ad nauseum. He might behave that way on

Re: [OT] check role - isUserInRole in jstl

2005-06-30 Thread Grzegorz Stasica
ok, but is not jstl solution? Laurie Harper wrote: See also the standard Struts logic tags, particularly logic:present: http://struts.apache.org/userGuide/struts-logic.html#present L. Lindholm, Greg wrote: I've used the Jakarta taglibs-request tags to do this. <%@ taglib uri="http://jakar

Struts Books Recommendations

2005-06-30 Thread Mark Galbreath
I've been out of Struts for about 18 months now and all my books are out of date (Chuck Cavaness, Ted Husted, etc.) and are from the pre-release days. Are there any references published in the past year you would recommend? And Rick, I've already read, "Who's Yer Daddy, Now?" by Raji Mahatma. Ch

Re: [OT] Re: Unacceptable Behaviour of Mark Galbreath

2005-06-30 Thread netsql
On 6/30/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: ... give Niall a break. Niall is one of the most helpful people I've ever met online. +1 .V - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e

Re: Struts Books Recommendations

2005-06-30 Thread Rick Reumann
Mark Galbreath wrote the following on 6/30/2005 3:44 PM: I've been out of Struts for about 18 months now and all my books are out of date (Chuck Cavaness, Ted Husted, etc.) and are from the pre-release days. Are there any references published in the past year you would recommend? Come on this

  1   2   >