Re: DropDowns....

2004-02-28 Thread Rick Reumann
Action classes to handle each scenario (or else logic in the execute method to decided what to do). -- Rick Reumann - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: [OT] Gays and computing

2004-02-27 Thread Rick Reumann
On Friday 27 February 2004 4:39 pm, Melvin Kurzchen wrote: Article: http://www.albinoblacksheep.com/flash/you.html Good article but does it have to use all that nude pictures to make his point? -- Rick - To unsubscribe,

Re: [Newbie] Is it worth subclassing your own Action and ActionForm classes to attain code re-use?

2004-02-23 Thread Rick Reumann
On Sat, 2004-02-21 at 23:40, Mark Jones wrote: In what circumstances might you want to subclass your own Action class and, if you did, how would you handle/inherit the form data? Would you just use different subclasses of your Action but just one ActionForm for each Action? Did you look at

Re: Re-populating form after validate fails

2004-02-04 Thread Rick Reumann
Paul Barry wrote: action path=/myaccount/login type=myapp.struts.actions.ForwardAction scope=request name=LoginForm validate=false parameter=/WEB-INF/jsp/myaccount/login.jsp / action path=/myaccount/loginAction type=myapp.struts.actions.LoginAction scope=request

Re: Need to pass data to JSP in ActionForm

2004-02-03 Thread Rick Reumann
Pat Young wrote: 6. The problem I am having is that if the ActionForm failes validation, then the sales.jsp page gets an error becaue it can not find the bean in the Request for the products list. Should I build this bean in my validate and place it in the request at the beginning of validate?

Re: locale specific date format

2003-11-21 Thread Rick Reumann
Nathan Coast wrote: How do I set locale specific date formats? I tried setting org.apache.struts.taglib.bean.format.date with format strings within locale specific applicationResources.properties but the format keeps coming out the same Fri Nov 21 16:46:05 CST 2003 any ideas? For displaying

Re: URGENT: getting a Session Attribute from ActionForm

2003-11-21 Thread Rick Reumann
[EMAIL PROTECTED] wrote: Hi All is there a way i can pass a request in an ActionForm. I need to get a session attribute thro the request and write the getters in ActionForm according to the values in the session.Please let me know I'm not sure what you are really asking mohan. You don't have to

Re: locale specific date format

2003-11-21 Thread Rick Reumann
Kris Schneider wrote: Schneeder? Hm, sounds familiar, he he sorry about that Kris:) Just don't beat me... you were sort of a bad ass as the superintendent on One Day At A Time.:) -- Rick - To unsubscribe, e-mail: [EMAIL

Re: (newbie asking advice) in which order do I call my .do and .jsp?

2003-11-21 Thread Rick Reumann
Janice wrote: (1) When I want to display a list of widgets, my link is to: /projectTypes.do?action=showList (2) My mapping looks like this (ProjectTypeCodeActions extends DispatchAction): actionpath=/projectTypes input=/projectTypeCode/project_type_code_form.jsp

Re: Lazy questions on this list

2003-11-20 Thread Rick Reumann
Paul McCulloch wrote: Is it my imagination or are the number of downright lazy requests to this list getting worse? Where can I download Struts? -- Rick - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands,

Re: ForwardAction with Redirect

2003-11-20 Thread Rick Reumann
Juan Alvarado wrote: Is there any way to configure org.apache.struts.actions.ForwardAction to do a redirect instead of a forward. Hey Juan, what's up:) Maybe I'm missing your question but in you action mapping you could just add redirect=true. Would that accomplish what you need? -- Rick

Re: ForwardAction with Redirect

2003-11-20 Thread Rick Reumann
Yee, Richard K,,DMDCWEST wrote: Rick is right. All you need to do is set the redirect attribute of your forward to true like in this example: I was wrong.. Juan was talking about ForwardAction not ActionForward (confusing I know:). -- Rick

Re: preload validation problem

2003-11-19 Thread Rick Reumann
Nathan Maves wrote: I have an action that loads a collection into the request so that the for can get pre-loaded. The created form need to be validated. When the validator runs the request is sent back to the original form. Problem is that the data need to pre-load the form is gone from the

Re: Map Backed Action Form

2003-11-19 Thread Rick Reumann
Agashivala, Vishal wrote: Hi Can anyone help me to implement MAP BACKED ACTION FORM??? In this forum, I see 100 of mails but wht I am try to get help on is not there..And NO ONE IS HERE TO HELP ME OUT?? AM I ASKING SOME irrelevant info here?? If so atleast write to me so that i can think of

Re: How to iterate over two collections ?

2003-11-17 Thread Rick Reumann
Vinita Keswani wrote: Hello, Could anyone please tell me if there is a workaround for iterating over two collections at the same time when both have the same key but different values? For eg: Descr, Cost,Volume Two maps one is - costMap which has descr and cost and another one is - volMap

Re: Request scope for FormBeans does not work??

2003-11-13 Thread Rick Reumann
Voinea, Marina wrote: (MtgDayForm)form.setMeetings(mtgBeanList); // try to store in form, the form scoped at request You fowarded to this Action and it has the current request, but objects in that request are now no longer around once you leave this Action.. so you need to

Re: Handling Session Timeout

2003-11-05 Thread Rick Reumann
Samanth Athrey wrote: I am trying to handle session timeout by extending RequestProcessor. Since the processPreprocess(...) method is called before the Action.execute(..) method, am trying to add that piece of code to check if the session is valid. The problem am facing is, if i return false from

Re: Forward attribute vs. ForwardAction

2003-11-05 Thread Rick Reumann
Phil wrote: action path=/login type=org.apache.struts.actions.ForwardAction parameter=/login.jsp / or: action path=/login forward=/login.jsp / So what is the benefit of the ForwardAction class? I'm not positive but I'm pretty sure both are using the ForwardAction class, the

Re: Trouble redirecting

2003-11-05 Thread Rick Reumann
Hubert Rabago wrote: What does your action mapping look like and what are your returning to struts from within your Action? You can use redirect=true to redirect to yahoo: action path=... forward name=redirectToYahoo path=http://www.yahoo.com; redirect=true/ /action and in your Action:

Re: Trouble redirecting

2003-11-05 Thread Rick Reumann
Marcella Turner wrote: The contextPath may prove to be a real problem for me since I would like to transfer control to a servlet in a different contextPath than the one my app is in. Why don't you post the syntax of the exact page you are trying to redirect to. As far as I know you will need

[OT] Re: free ftp utils

2003-11-05 Thread Rick Reumann
Rachid Drissi wrote: Hi All, Is any free java utils to send mails , aatchements, ftp files using java ? I think the .NET, Javascript, and DogFancy mailing lists discuss this a lot. Have you tried posting this question to one of those lists? I also heard of this thing called Google. I'm not

Re: Struts-Validation

2003-11-05 Thread Rick Reumann
Ramadoss Chinnakuzhandai wrote: yesI should restrict the user to enter both fields i.e they should enter anyone of the fields and not both. These option I think is to use the validate method in your ActionForm and then first call your validation framework and then do the check for the

Re: Paging

2003-11-03 Thread Rick Reumann
Christian Bollmeyer wrote: http://displaytag.sourceforge.net/ (my favorite, new 1.0 beta out) The last time I used this tag was a long time ago (over 5 months). What I didn't like about it, at the time, was that it stored your entire collection in session scope. This is ok for small to moderate

Re: session time-out in pop-up windows

2003-11-03 Thread Rick Reumann
Rabago, Hubert wrote: You'd have to find a way to identify the popup. It could be because of the requested resource (myPopup or any page with popup) or a special request parameter which will only be sent by a request for a popup window (href='/mycontext/myinfodisplay.do?myActualParam=1isPopup).

Re: Paging

2003-11-03 Thread Rick Reumann
Ashish Kulkarni wrote: Visit this URL, it works great with struts or any jsp framework http://kulkarni_ash.tripod.com/howto/jsptaglib-howto.html Yea page not found errors work great with any framework, I agree:0 -- Rick - To

Re: Serializing objects in session

2003-11-03 Thread Rick Reumann
Ramadoss Chinnakuzhandai wrote: Can anybody suggest which is the best book for beginner to understand Struts in a easyway. Programming Jakarta Struts by Chuck Cavaness http://www.amazon.com/exec/obidos/tg/detail/-/0596003285/qid=1067898114/sr=8-2/ref=sr_8_2/102-1084108-9634561?v=glancen=507846

Re: Beginner Struts

2003-11-03 Thread Rick Reumann
Ramadoss Chinnakuzhandai wrote: Can anybody suggest which is the best book for beginner to understand Struts1.1 in a easy approach...? Programming Jakarta Struts by Chuck Cavaness

Re: How do I disable struts logging?

2003-11-01 Thread Rick Reumann
Jeremy Nix wrote: I'm looking for exact instructions on how to turn off struts logging. Can somebody help me out? I've tried log4j.properties with no avail. How did you try to turn it off in log4j.properties? Since I usually end up with a log4j.properties file anyway here's what I have been

Re: What's the best strategy to handle this kind of thread issues?

2003-09-10 Thread Rick Reumann
On Thu, Sep 11,'03 (01:06 PM GMT+0800), Andrew wrote: I change the visibility style on most of the page (including the button) to invisible, and reveal a section containing a please wait message. Excellent! I'll have to use this myself. Thanks! -- Rick

Is nesting Tile layouts possible?

2003-09-03 Thread Rick Reumann
Pardon if this is a real stupid question and has been covered before (I have looked at some of the docs and didn't see this addressed but I've been known to easily miss the obvious:). Imagine you have a site that has a main layout: COMPANY LOGO DATE MAIN MENU {II. main content section}

Is nesting Tile layouts possible?

2003-09-03 Thread Rick Reumann
Pardon if this is a real stupid question and has been covered before (I have looked at some of the docs and didn't see this addressed but I've been known to easily miss the obvious:). Imagine you have a site that has a main layout: COMPANY LOGO DATE MAIN MENU {II. main content section}

Re: Is nesting Tile layouts possible?

2003-09-03 Thread Rick Reumann
On Wed, 2003-09-03 at 17:31, Rick Reumann wrote: Is what I'm looking for possible with tiles? I thought I tried this by extending the base defintion, but maybe I haven't worked with it enough, let me mess with it some more. Sorry for a possible 'too soon' post. -- Rick

Re: Is nesting Tile layouts possible?

2003-09-03 Thread Rick Reumann
I'm still stumped even working with extending definitions on how to accomplish this. A friend in #struts_users was helping as well and his solution is good, but still seems like a lot of work. I posted the idea below this post... On Wed, 2003-09-03 at 17:31, Rick Reumann wrote: Pardon

Re: Need Instructions To Setup The Artimus Example

2003-08-20 Thread Rick Reumann
On Wed, Aug 20,'03 (04:55 PM GMT-0700), Caroline wrote: Hoping Ted noticed my post and provides guidance to setup the Artimus example for someone new like me to get the look and feel of all the features. Have you checked out his book's site? and posted there? I think he's pretty good at

Re: Need Instructions To Setup The Artimus Example

2003-08-20 Thread Rick Reumann
On Wed, Aug 20,'03 (10:38 PM GMT-0700), Caroline wrote: I have gone to his book site but cannot find a discussion forum. You can get to the forum here: http://www.manning.com/getpage.html?project=hustedfilename=forum.html Click on author online (I admit not easy to find from his

Re: Form with fields and the display tag? Please help

2003-08-14 Thread Rick Reumann
On Fri, Aug 08,'03 (10:08 AM GMT+0800), Andy wrote: Although my code does not work properly, but I feel that there are things that could be of great help to some people (e.g. displaying hashmap easily), and I would like to share these and possible help others. I haven't looked at long but

Re: Newbie: Passing parameter using html:link, but how to get itback?

2003-08-03 Thread Rick Reumann
On Mon, Aug 04,'03 (11:36 AM GMT+0800), Andy wrote: If I do the data access part in UserDetailAction, how can I retrieve the UserId parameter that was specified from the link part in UserList.jsp? request.getParameter(UserId); -- Rick

[ANN] brief example using iBATIS from Struts

2003-07-25 Thread Rick Reumann
There are often newbie requests asking how to deal with a database layer from Struts. Since there are so many ways this can be done, 'simple' examples of how this can be done seem hard to come by. Since I currently use iBATIS as my persistence mechanism of choice, I created a simple Struts

Re: prefill form bean ahead of the jsp

2003-07-23 Thread Rick Reumann
On Wed, Jul 23,'03 (03:34 PM GMT+0200), Struts wrote: Hi all Can I prefill the values of my form bean ahead of displaying the jsp page that is associated with this form? If yes, how? Sure just do it in Action before you go the form or if you know they will always be the same values you can

Re: Birthdate validation ?

2003-07-23 Thread Rick Reumann
On Wed, Jul 23,'03 (09:03 PM GMT+0200), Erez wrote: I have a birth date field composed of three different fields of day month and a year. Now, what is the best way to receive those three and combine them into a java.sql.Date class and performing validation using the validator? Search the

Re: Birthdate validation ?

2003-07-23 Thread Rick Reumann
On Wed, Jul 23,'03 (09:37 PM GMT+0200), Erez wrote: Since I am not an HTML wizard (yet :) ) my first attempt was as follows: What also bugs me is the scriplet iteration using actual java code - any idea how to do it more elegant? Just use the normal Struts validation framework. For

Re: LookupDispatchAction problem

2003-07-23 Thread Rick Reumann
On Wed, Jul 23,'03 (03:44 PM GMT-0400), Tim wrote: I am getting the following exception: SupportOrgDispatchAction] does not contain handler parameter named method For this actionmapping: action path=/SupportOrgDispatchAction

Re: LookupDispatchAction problem

2003-07-23 Thread Rick Reumann
On Wed, Jul 23,'03 (04:03 PM GMT-0400), [EMAIL PROTECTED] wrote: I am not super-experienced in this, but it seems to me, that your line: html:submit property=method value=Query Oh sorry, I missed that... I doubt the above would ever work. The method had to match an actual method

Re: LookupDispatchAction problem

2003-07-23 Thread Rick Reumann
On Wed, Jul 23,'03 (04:19 PM GMT-0400), Suzette wrote: With LookupDispatch you don't have to use a hidden tag. I think the problem might be in your action itself. Yea, I'll shut up now:) I forgot also Tim mentioned he wanted to use LookupDispatchAction. I'm giving messed up advice answering

Re: FW: Redirect to home page on logon

2003-07-20 Thread Rick Reumann
On Sun, Jul 20,'03 (01:44 PM GMT+0300), Tarek wrote: I have an application that uses beans stored in the session context. If the user's session times out, he's asked to re-login on his next request. For this, I'm using J2EE security; I'm not doing it myself.After the user is finished with

Re: DispatchAction role

2003-07-18 Thread Rick Reumann
On Fri, Jul 18,'03 (09:22 AM GMT-0400), Witbeck, wrote: Is there any disadvantage of to letting a DispatchAction handle both the setup and submission of a form something like the following: DispatchAction contains the following methods: 1. init() - sets up the form with initial values

Re: DispatchAction role

2003-07-18 Thread Rick Reumann
On Fri, Jul 18,'03 (10:49 AM GMT-0400), Rick wrote: 1. init() - sets up the form with initial values for select lists, etc. 2. submitForm() - handles the validation and data associated with the completed form setup above and forwards to another DispatchAction's init() method. I do

Re: Returning data from a ResultSet (via a Collection) to my jsppage ...

2003-07-17 Thread Rick Reumann
On Thu, Jul 17,'03 (11:47 AM GMT-0700), Zimmerman, wrote: My Action page I believe is fine, it is just how to reference it in the jsp. c:forEach var=item items=${nameOfCollectionInScope} c:out value=${item.fieldNameInBeanFromCollection}/br /c:forEach So, say a Collection of

Re: [OT] Ibatis as DAO with SessionFacade

2003-07-16 Thread Rick Reumann
On Wed, 2003-07-16 at 09:11, Cruz, Edward J. wrote: Has anyone used Ibatis along with this pattern and if so how have you built the SqlMap? I see that the SqlMap is usually built in a BaseDao and stored as a static variable. I understand that but that assumes you can perform the need I/O

Re: [ARTICLE] Succeeding with Struts Pt 2: Indexed Properties ofBeans

2003-07-15 Thread Rick Reumann
On Mon, Jul 14,'03 (06:32 AM GMT-0400), James wrote: http://www.developer.com/java/ejb/article.php/2233591 This month, I covered using indexed arrays of beans to do master/detail records in forms. Thanks James, excellent example! One thing I would now still like to see.. could you

Re: Where to build dropdown lists?

2003-07-15 Thread Rick Reumann
On Tue, Jul 15,'03 (01:56 PM GMT-0100), Dichotomy wrote: My solution, which is perhaps not the most efficient memory-wise, is to simply put it in (and retrieve it from) the session rather than the request. I agree this is the best solution (using Session or Application scope). I brought

Re: Where to build dropdown lists?

2003-07-15 Thread Rick Reumann
On Tue, Jul 15,'03 (02:32 PM GMT+0200), Adam wrote: I designed a system where I can specify in my action which dropdown lists I require with a method call. I route my failed validate requests thro' the action (using the action mapping input tag) every time so the call is always made, and if

Re: Where to build dropdown lists?

2003-07-15 Thread Rick Reumann
On Tue, Jul 15,'03 (04:04 PM GMT+0200), Adam wrote: Since it's in my action base class, I never have to worry about programming it manually. If you are always going to check that the List is there in your BaseAction class, why not just give the List application scope on start up and not

[OT] Re: 4th Of July Struts Challenge...

2003-07-15 Thread Rick Reumann
may be off base... Quoting Rick Reumann [EMAIL PROTECTED]: Ok stupid subject line, but now I can get back to something I was curious about that I posted around a week ago. I'm really curious how to do accomplish this and yes have tried it a bunch of different ways

Re: struts books

2003-07-14 Thread Rick Reumann
On Mon, 2003-07-14 at 05:05, Butt, Dudley wrote: Can anyone recommend which of the struts books as listed I should get. Programming Jakarta Struts by Chuck Cavaness http://www.amazon.com/exec/obidos/tg/detail/-/0596003285/ref=pd_sim_books_4/104-4079535-6570309?v=glances=books (Also, not

Re: quote or apostrophe in c:out ...?

2003-07-14 Thread Rick Reumann
On Mon, 2003-07-14 at 09:13, Terje Hopsø wrote: I then changed it to look like this with apostrphe instead of quotes: ..href=c:out value='/report.jsp' / Dreamweaver showed the pages correctly now but will this have any impact elsewhere. Could Tomcat or other webservers fail writing

Re: getting hash map values

2003-07-14 Thread Rick Reumann
On Mon, 2003-07-14 at 08:23, Kris Schneider wrote: The way the class is defined, I don't think either JSTL or Struts tags will be of much use. There really aren't any properties exposed. True, I forgot that there wasn't a getMapName() method listed. If he included that the tags should work.

[OT] java coding standards question

2003-07-14 Thread Rick Reumann
I know this is totally OT (and it's not even Friday:), but does anyone use the checkstyle plugin in Eclipse? I have it set up to the defaults and I keep getting two warnings that I don't understand (and I've searched Google etc.).. I keep getting the following for my methods that throw

RE: struts books

2003-07-14 Thread Rick Reumann
On Mon, 2003-07-14 at 14:03, Yansheng Lin wrote: IMHO, Struts in Action is a much better read. Yea... well my mom can beat up your mom. -- Rick - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail:

Re: getting hash map values

2003-07-13 Thread Rick Reumann
On Mon, Jul 14,'03 (11:37 AM GMT+0800), Richard wrote: now, my question is how will i be able to get the value i set for test? is that possible? is there other way i can get to the hashmap values directly from struts? You should be able to do it with

Re: newbie question - setting form parameter in Javascript

2003-07-12 Thread Rick Reumann
My Javascript function is given below: SCRIPT language=JavaScript function submitForm(form) { form.action.value=Lookup; form.submit(); return true; } # and I invoke this function in my HTML form as shown below:

Re: Help needed - running Rick Reumann's lesson 1- Urgent!!

2003-07-12 Thread Rick Reumann
On Sat, Jul 12,'03 (08:20 AM GMT-0700), Rajat wrote: Hi, I am running the lesson 1( turorial by Rick Reumann) and am getting the foll. error: Error in using tag library uri='/WEB-INF/struts-html-el.tld' prefix='html': The Tag class 'org.apache.strutsel.taglib.html.ELOptionTag' has

[OT] Raj, please start a new message vs reply

2003-07-12 Thread Rick Reumann
On Sat, Jul 12,'03 (08:20 AM GMT-0700), Rajat wrote: Hi, I am running the lesson 1( turorial by Rick Reumann) and am getting the foll. error: Also, Rajat, please start a new message (vs replying to a thread) if the subject has changed. Now this message as well as my previous one and yours

Re: Webapp Security?

2003-07-06 Thread Rick Reumann
On Thu, 2003-07-03 at 16:42, Craig R. McClanahan wrote: Why are you trying to mess with the container's implementation of authentication at all? Why not just write a Filter that does an RD.forward() to some safe place if it sees that the session does not contain the right stuff (because

4th Of July Struts Challenge...

2003-07-03 Thread Rick Reumann
Ok stupid subject line, but now I can get back to something I was curious about that I posted around a week ago. I'm really curious how to do accomplish this and yes have tried it a bunch of different ways... Here's the challenge First challenge is just with a regular ActionForm... 1) Your

Re: Webapp Security?

2003-07-03 Thread Rick Reumann
On Thu, 2003-07-03 at 14:41, Erik Price wrote: I am really confused as to why you don't want to use a Filter. It seems that they were developed specifically for situations like the one you describe Here's the problem I'm having with the securityFilter stuff that I'm implementing. Not sure

Re: Webapp Security?

2003-07-03 Thread Rick Reumann
On Thu, 2003-07-03 at 14:37, David Erickson wrote: Thoughts, comments? Any other ways to do this? I like to subclass the RequestProcessor and over-ride the process method: public void process(HttpServletRequest request, HttpServletResponse response) throws IOException,

Re: Webapp Security?

2003-07-03 Thread Rick Reumann
and the session times out and after the user now is brought back to the login page and submits the user is returned to where he left off, which errors out bc some stuff is missing in the sesion that your normally get to by going through the steps). On Thu, 2003-07-03 at 15:00, Rick Reumann wrote

Re: Webapp Security?

2003-07-03 Thread Rick Reumann
On Thu, 2003-07-03 at 15:05, Craig R. McClanahan wrote: If you go with roll your own security, though, I would definitely recommend that you implement it as a Filter rather than trying to modify Struts to do this for you. Craig, is there a way I can force container managed security under

Re: Webapp Security?

2003-07-03 Thread Rick Reumann
On Thu, 2003-07-03 at 15:27, Dolf Starreveld wrote: How about deriving all your actions from a base class that checks if the requisite objects are in session, and if not, either puts them there, or forwards/redirects to a page which will cause them to be put there. If you prefer, you

JSTL- el - nested beans from a map used in a form?

2003-06-28 Thread Rick Reumann
Ok this has me stumped... the down and dirty: formBean has HashMap called fooMap fooMap has keys that bring back beans of type BarBean BarBean has properties someCode , someDescrip Now I want to iterate over this map and create the properties based on the properties in BarBean and be able to

Re: JSTL- el - nested beans from a map used in a form?

2003-06-28 Thread Rick Reumann
see how this is going to get them populated in the correct bean and loaded back into the map? Adding indexed=true doesn't seem to help. -Dan - Original Message - From: Rick Reumann [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Saturday, June 28, 2003 9:35

Re: nested bean parameters

2003-06-28 Thread Rick Reumann
On Sat, 2003-06-28 at 13:31, Mick Knutson wrote: I have a Collection of AlertDto's. Each AlertDto has a method called getStartingLocation() that returns a LocationDto. That LocationDto has a method called getLocationTitle(). How, in a JSP can I get the locationTitle? I have tried:

Re: nested bean parameters

2003-06-28 Thread Rick Reumann
On Sat, 2003-06-28 at 15:10, Mick Knutson wrote: In AlertDto: public com.baselogic.yoursos.location.LocationDto getStartingLocation() { return this.StartingLocation; } StartingLocation should be startingLocation (lowercase s) -- Rick

Re: JSTL- el - nested beans from a map used in a form?

2003-06-28 Thread Rick Reumann
['${beanInMap.deptCode}'].deptCode / br Name: html:text property=departments['${beanInMap.deptName}'].deptName / br br /c:forEach I've tried all kinds of other combos also and still stumped. Thanks for the help so far. Rick Reumann wrote: Ok this has me stumped... the down and dirty

Re: way to format a date property inside an iterate loop?

2003-06-25 Thread Rick Reumann
On Wed, 2003-06-25 at 09:47, Nielsen, Jim wrote: Hi, Is there a simple way to format a date property inside an iterate loop? The property is a long value. I want to have the display the date in a localize format. Not having much luck searching for examples. You could see if the JSTL fmt

RE: logic:iterate using HashMap

2003-06-24 Thread Rick Reumann
On Tue, 2003-06-24 at 10:46, O_Parthasarathy Kesavaraj wrote: O_Parthasarathy Kesavaraj írta: Thanks Tib.I did look at the docs.But i got struck up.If u have any sample code pls send. I admit the docs I think are lame on this area. This should work.. logic:iterate id=element

Re: Dirty Data check

2003-06-24 Thread Rick Reumann
On Tue, 2003-06-24 at 10:52, Agarwal, Vinay wrote: Does struts provide any inbuilt support for dirty data check. Not that I'm aware of. You'll have to code this yourself. -- Rick - To unsubscribe, e-mail: [EMAIL PROTECTED]

Re: Unable to do search on struts-user list

2003-06-24 Thread Rick Reumann
On Tue, 2003-06-24 at 10:58, Alen Ribic wrote: 100%, me too. I tried yesterday with 0 results for keywords File upload Use this link for searching. I find it much better... http://marc.theaimsgroup.com/?l=struts-user -- Rick

Re: logic:iterate and html:submit

2003-06-08 Thread Rick Reumann
On Sun, Jun 08,'03 (10:09 PM GMT-0300), Rodrigo wrote: Sorry friend, but it doesnt work too. snip Marco Tedone writes: Try: logic:iterate name=valueObjectproperty=addressesid=address bean:define id=buttonName name=address property=hash / tr td /td td

Re: using struts token

2003-06-08 Thread Rick Reumann
On Mon, Jun 09,'03 (08:39 AM GMT+0500), Riyaz wrote: 1) is there a sample application which demonstrates using tokens in struts? Actually I didn't find the Struts example app using the token stuff too well. Maybe the example has changed though since it's been a while since I looked at, but

Re: should I use struts

2003-06-07 Thread Rick Reumann
On Sat, Jun 07,'03 (10:09 AM GMT-0400), Mark wrote: I would NEVER use srtuts for ANY project... You only use Flash:) -- Rick - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Is it better to return list of formbeans or list of objectscreated by torque?

2003-06-06 Thread Rick Reumann
On Thu, Jun 05,'03 (05:59 PM GMT-0400), Vic wrote: What I do is my BaseFormBean implements a collection. So it's both! It has getters/setters. When iterator or next() is called it goes to the next item in list. Because it simplifies, it makes more complex designs possible. I should

Re: Where to put logic for create or update stuff?

2003-06-02 Thread Rick Reumann
On Sun, 01 Jun 2003 17:54:06 -0300, José Ventura wrote: I have a use case in wich a user will be created if its ID is null, or updated otherwise. What would be the preferrable approach? a) My business services layer provides both createUser() and updateUser(), and I determine wich one to

Re: Replacing a String with a Date in a DynaForm?

2003-06-02 Thread Rick Reumann
On Sat, May 31,'03 (09:24 AM GMT-0700), Mick wrote: I am trying to take a String version of a date OUT of my DynaForm, convert it to a Date (which I can do successfully thusfar), and stick it back into the DynaForm, so I can copy all the properties into my ValueObject... When I load the

RE: Struts IRC online

2003-06-01 Thread Rick Reumann
On Sat, 31 May 2003 13:32:17 -0400, Mark Galbreath wrote: IRC servers talk to each other and propagate there channels to each other. I could be wrong but I don't think the servers act that way and you do need to know what server you set up the channel. (By the way found some people hanging

RE: Struts IRC online

2003-06-01 Thread Rick Reumann
On Sat, 31 May 2003 15:09:06 -0500, P Dunham wrote: No it doesn't that only happens with certain large servers Maybe this means Mark doesn't belong there:) he he just kiddin. -- Rick - To unsubscribe, e-mail: [EMAIL

Re: [log4j]

2003-04-01 Thread Rick Reumann
On Tue, 01 Apr 2003 17:37:27 +0100 Pat Quinn [EMAIL PROTECTED] wrote: Has anyone tried using log4j-1.2.7.jar with Struts I use it. -- Rick Reumann - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail

Re: Help with validation

2003-04-01 Thread Rick Reumann
it there? Sorry if I'm missing something. -- Rick Reumann - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: [OT] overwhelmed [was] Re: Does a degree matter?

2003-03-30 Thread Rick Reumann
Does anyone else ever wake up going Man, I feel overwhelmed. Too much too learn, not enough time. I started this computer stuff rather late in life and find it very difficult trying to pick out what to try concentrate my learning in. Bottom line is I have to put food on the table for the family so

Re: [OT] overwhelmed [was] Re: Does a degree matter?

2003-03-30 Thread Rick Reumann
On Mon, Mar 31,'03 (12:56 PM GMT+0800), Andrew wrote: My old man was a farm labourer. Its no walk in the park, Well, I certainly didn't mean to imply that it would be and of course I really wasn't serious about wanting to be a farmer (I'm way too lazy for that job:). I just meant it from

Re: [OT] Re: Does a degree matter?

2003-03-29 Thread Rick Reumann
On Sat, Mar 29,'03 (02:31 PM GMT-0600), Jeff wrote: probably only you can make that decision. its a tough one. Also depends on your financial situation...sucks when you have to take out loans for school. I think I'll be paying back my loans forever:)(Biology major...not even computer

Re: [OT] Contract Work: Going Rate?

2003-03-28 Thread Rick Reumann
, EJB, SQL, UML, Electrical Engineering, Expert Horseback Rider, Must be able to shoot 85% from free throw line, vegetarian, proficient in VCR repair, must be able to make a great pot of coffee, must get along with Boss' wife and his pets. PAY: 25-30/hr depending on experience -- Rick Reumann

[OT/ANN] Tampa/St.Pete Struts User Group

2003-03-27 Thread Rick Reumann
://groups.yahoo.com/group/struts-tampa/ Best to post on the above list, but feel free to e-mail me off list if you like. Hope to hear from you. -- Rick Reumann - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail

Re: [OT] Meeting in Paris this Saturday

2003-03-20 Thread Rick Reumann
eventually all this will become come on ligthen' up have a beer. -- Rick Reumann - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: [OT] Meeting in Paris this Saturday

2003-03-20 Thread Rick Reumann
On Thu, 20 Mar 2003 11:14:31 -0500 Mark Galbreath [EMAIL PROTECTED] wrote: Just tryin' to keep things lively ;-) This message was not received by recipient because it was F-I-L-T-E-R-E-D :) -- Rick Reumann

Re: Repost - Messages with Scaffold Helper Class

2003-03-19 Thread Rick Reumann
which it should be) if it's the last item declared in the resource file? You sure it's accessing that specific resource file?(try switching them around ? putting message2 before message1?). Sorry, wish I could be more help. -- Rick Reumann

Re: Design philosophy, beans, model to view

2003-03-19 Thread Rick Reumann
/group/model_struts/ -- Rick Reumann - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: bean:write and scriptlet write

2003-03-17 Thread Rick Reumann
On Mon, 17 Mar 2003 16:21:00 -0500 Cohan, Sean [EMAIL PROTECTED] wrote: Both methods return Strings. What am I missing? Send the whole JSP to [EMAIL PROTECTED] -- Rick Reumann - To unsubscribe, e-mail: [EMAIL

Re: Select box in struts

2003-03-15 Thread Rick Reumann
On Sat, Mar 15,'03 (11:13 PM GMT-0500), Sreepuram, wrote: I just need a help ,how to generate dynamically dropdown , when the options are in a hashtable r vector , please help me , send me the code which will be useful. There are tons of examples of this in the archives and in the

  1   2   3   4   5   >