Re: [FRIDAY] Preview of a new version of windows! (WinRG) ;-)

2002-10-25 Thread Jan Fetyko
Nice Flash, True Windowz. Thanks. Andrew Hill wrote: http://www.surfersonacid.com/pages/winrg.html -- To unsubscribe, e-mail: mailto:struts-user-unsubscribe;jakarta.apache.org For additional commands, e-mail: mailto:struts-user-help;jakarta.apache.org -- To unsubscribe, e-mail:

I cannot seem to be able to ost to the list.

2002-10-14 Thread Jan Fetyko
Can somebody check it out please ? (If this goes through of'course) I did reply to number of messages, but it never got it into the list neither to the archive on www.mail-archive.com Jf -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL

Re: Extending DynaValidatorForm

2002-10-14 Thread Jan Fetyko
page itself. Maybe I'm doing it completely wrong, I even did try to use String[] in : form-property name=cats type=java.lang.String[]/ but that doesn't do any good. J Craig R. McClanahan wrote: On Fri, 11 Oct 2002, Jan Fetyko wrote: Date: Fri, 11 Oct 2002 07:47:20 -0400 From: Jan Fetyko

Extending DynaValidatorForm

2002-10-11 Thread Jan Fetyko
Hi all, I've got a little confusion going on. I wanted to extend the DynaValidatorForm like this : public class EditProd extends org.apache.struts.validator.DynaValidatorForm { private String cats; public String getCats() { return cats; } ... } In the

Re: AAAARGH! SOMEONE! How do I set the default selection when I'm using html:options?

2002-09-19 Thread Jan Fetyko
; } public List getStates(){ return states; } JSP: html:select property=usStates html:option value=0Select A State/html:option html:options name=MyActionForm.getStates() / /html:select Mark -Original Message- From: Jan Fetyko [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 18

Re: AAAARGH! SOMEONE! How do I set the default selection when I'm using html:options?

2002-09-19 Thread Jan Fetyko
You were not alone. :(( Galbreath, Mark wrote: Aboslutely - must have been brain-dead for not thinking of that (especially because that's exactly what I do!). -Original Message- From: Jan Fetyko [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 19, 2002 8:00 AM To: Struts Users

Re: AAAARGH! SOMEONE! How do I set the default selection when I'musing html:options?

2002-09-19 Thread Jan Fetyko
How to by using an Init Servlet. Some examples, since explaining would take too long : Java startup servlet ---cut--- package org.init.whatever; import javax.servlet.*; import javax.servlet.http.*; public class InitServlet extends HttpServlet {

Re: How can I implement session time out control in struts

2002-09-18 Thread Jan Fetyko
Another possible question is : What about multiple windows open within the same session ? This kind of functionality is calling for Java applets. I guess. :( Khan, Manuchehar A (ACF) wrote: I saw bank of america site. They start timer once the page is loaded and before session timeout they

Re: AAAARGH! SOMEONE! How do I set the default selection when I'musing html:options?

2002-09-18 Thread Jan Fetyko
Can you post some code : what are the values of the states, what is the definitions in the form, how you're setting the default value , etc. Jf Michael Lee wrote: Thanks, but nada. The ActionForm state is set yet its still not working. :( Is the problem with the options? html:select

Re: NullPointerException while extending DynaValidatorForm

2002-09-11 Thread Jan Fetyko
to convey that the NPE is not because the form is null. If this is not the case, you should allow Struts to create the form. robert -Original Message- From: Jan Fetyko [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 10, 2002 11:32 AM To: struts Subject: Re: NullPointerException while

NullPointerException while extending DynaValidatorForm

2002-09-10 Thread Jan Fetyko
Hi all, I have a problem setting values of a form in my action. The form extends the org.apache.struts.validator.DynaValidatorForm. The struts-config.xml defines all the properties of the form except 2, that are defined in the actual Java source of the form. This is the error I'm getting :

Re: [OT] RE: Struts and Large ResultSet

2002-09-05 Thread Jan Fetyko
Couple of thoughts: 1. Can you get and unique ID of the record(s) and store it somewhere (users session) ? Pageing through would be easy (although if you have to store couple of 1000 ids, it's not pretty) 2nd option maybe ? 2. Or is there a certain order by which this ResultSet is ordered by

Re: [OT] RE: Struts and Large ResultSet

2002-09-05 Thread Jan Fetyko
Couple of thoughts: 1. Can you get and unique ID of the record(s) and store it somewhere (users session) ? Pageing through would be easy (although if you have to store couple of 1000 ids, it's not pretty) 2nd option maybe ? 2. Or is there a certain order by which this ResultSet is ordered by

Getting a connetion defined via struts in Java app

2002-08-21 Thread Jan Fetyko
Hi all, I'm trying to create a little Java app that would connect to the same database as the Struts one. This little app runs in the same VM. Is there a way to get a database connection defined in struts-config.xml and use it in this little app ? Jf -- To unsubscribe, e-mail:

Jcrontab and Struts

2002-08-20 Thread Jan Fetyko
Hi all, I was wondering if anybody has some experience implementing Jcrontab into struts. Jf -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Re: Connection pool question

2002-08-16 Thread Jan Fetyko
Robert, How would I define the DB connection in struts-config.xml so it's accessible through the syntax you provided bellow ? I'm sorry but this is very new to me, so some poor level questions might follow. Jf Robert Taylor wrote: Standardization: All servlet containers that support the

Re: Connection pool question

2002-08-16 Thread Jan Fetyko
, although I'm very sure many others on this list know, or it is probably well documented in Tomcat. HTH, robert -Original Message- From: Jan Fetyko [mailto:[EMAIL PROTECTED]] Sent: Friday, August 16, 2002 9:32 AM To: Struts Users Mailing List Subject: Re: Connection pool question Robert

Re: Connection pool question

2002-08-16 Thread Jan Fetyko
-4.1-doc/jndi-resources-howto.html HTH, robert Craig -Original Message- From: Jan Fetyko [mailto:[EMAIL PROTECTED]] Sent: Friday, August 16, 2002 9:32 AM To: Struts Users Mailing List Subject: Re: Connection pool question Robert, How would I define the DB connection

Re: App will hang if it runs over night

2002-08-12 Thread Jan Fetyko
Thanks, it works for me now too, although it's the syntax that I wouldn't expect, since I thought that this is the right way : set-property property=autoReconnect value=true/ Jf Billy Ng wrote: The problem is totally gone after I added the autoReconnect parameter in the mysql's url.

Re: App will hang if it runs over night

2002-08-09 Thread Jan Fetyko
:(( Same here. I guess I'll have to build my own connection pooling or use something I find on the net. Also I was wondering if PostgreSQL is having the same problem, any idea ? Maybe it's worth changing Db platforms. Jano [EMAIL PROTECTED] wrote: Hey, I am having the same problem and

inserting templates

2002-08-02 Thread Jan Fetyko
All beer thinkers, I was wondering if there is a was to insert a template using : template:insert template=../ or by using anything else in a way that the beans from the main page are visible in the template ? Lets say there is a page : main.jsp. On that page I iterate through some

Re: Remove request parameter

2002-07-31 Thread Jan Fetyko
Marius Gabor wrote: Hi, Eddie! Looks like u r the only one interrested in this s... Not entirely true. What I think I'm unclear about is: At what point are you wanting to manipulate them? ... on the page? ... at the action itself? I'm trying to manipulate them in the action,

Re: Remove request parameter

2002-07-29 Thread Jan Fetyko
Listen to Eddie, he knows what he is talking about, I know from my own experience. J Eddie Bush wrote: *maybe* you could try replying to the threads you have already? And maybe you could wait longer than 15 minutes in between postings of the *exact same material*? I know it can be

Simple write of a form property

2002-07-26 Thread Jan Fetyko
Hi all, I was wondering if there is a way to write out a property of a form as text, so I could write something like html:textonly property=salary/. I know there is a was to get it through some scriplets, but we are trying to avoid those in JSPs aren't we ? Maybe there is such a tag between

Sending response to browser as a ZIP

2002-07-26 Thread Jan Fetyko
Hi all, I'm looking for some advice or solution that'd help me send the response to the browser as a zip file. I did found a tag that does it on : http://www.servletsuite.com/servlets/opttags.htm but I'm getting some errors while the page is rendered ( see bellow ), so I'm looking for a

Re: CSS Question

2002-07-17 Thread Jan Fetyko
Or you can checkout : www.cross-browser.com I use it everyday and works in Mozilla,IE,Netscape,Opera J Struts Newsgroup (@Basebeans.com) wrote: Subject: Re: CSS Question From: Matt Raible [EMAIL PROTECTED] === If you want to get away from fat client you pages will load faster if you

Re: html:errors tag funny null strings -SOLVED

2002-06-21 Thread Jan Fetyko
Jan Fetyko janof@phase2o

html:errors tag funny null strings

2002-06-20 Thread Jan Fetyko
Hi, I'm using the html:errors property=.../ tag to display errors after the form validation fails. The problem is that when the error is displayed it contains a null string at the begining and at the end on the actual error message. Ex.: null Password is required null. What's going on ? Is

Re: html:errors tag funny null strings

2002-06-20 Thread Jan Fetyko
errors.footer=/ulhr -Original Message- From: Jan Fetyko [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 20, 2002 1:51 PM To: Struts Users Mailing List Subject: html:errors tag funny null strings Hi, I'm using the html:errors property=.../ tag to display errors after