Poolman?

2003-06-26 Thread bill blackmon
I'm looking for connection pooling for a Struts app. Everyone recommends Poolman but it's discontinued. Can anyone recommend something else or tell me where I can download Poolman? - To unsubscribe, e-mail: [EMAIL PROTECTED]

FormFile name and directory

2003-05-29 Thread bill blackmon
How do you get the directory of a FormFile that has been uploaded? There is no method to retrieve the directory, only the name of the file. I need the full path. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Struts site and programmer listing on Jarkarta Resources site

2002-12-11 Thread Bill Blackmon
I've recently completed a Struts-driven site and would like to have it and my firm listed on the Jakarta Resources pages. There doesn't seem to be any way to submit this information. Can anyone give me an email address or something to send the information to? Thanks, Bill Blackmon

Re: Contract Sr. Developer opportunity

2002-09-03 Thread Bill Blackmon
I'm not local and this is the 3rd email you've sent. Please take me off of your list. Thanks, Bill Blackmon New York City - Original Message - From: Joe De Ville [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, September 03, 2002 2:05 PM Subject: Contract Sr. Developer opportunity

jsp compilation errorss

2002-08-21 Thread Bill Blackmon
I've had to recreate my dev environment and I've dis-configured something that I can't seem to find. All of my jsp pages now throw the same errors: log trace message: 2002-08-21 23:27:32 StandardContext[/EGPS]: Mapped to servlet 'jsp' with servlet path '/membersList.jsp' and path info 'null'

multiple passes through action and validation

2002-08-16 Thread Bill Blackmon
I have an action class that performs add, edits and deletes depending on the arg passed. On edit, I do not want validation to occur since there is no valid data and all of the validation errors appear. Is there a way around this or should I put the edit action in another class? -- To

Anyone know what this error message means?

2002-08-15 Thread Bill Blackmon
I'm getting the following error message in a jsp. I put debug code in the top code section of the page with a try/catch statement and nothing is being caught during the imports and declarations - no output at all. This is a new one and not too helpful. org.apache.jasper.JasperException:

Re: form fields not showing in jsp after being set?

2002-08-09 Thread Bill Blackmon
). -Original Message- From: Bill Blackmon [mailto:[EMAIL PROTECTED]] Sent: Friday, 9 August 2002 3:23 PM To: Struts Users Mailing List Subject: Re: form fields not showing in jsp after being set? Thanks - that solved the problem. Unfortunately, I have 2 pages sharing the same bean

servlet.findForward() null pointer exception question

2002-08-09 Thread Bill Blackmon
Why would the following code throw a NullPointerException if the forward is defined in the global-forwards section of the struts-config.xml file if the jsp exists? I cannot get the servlet.findForward() method to return any of the jsps listed. Any ideas? return

Re: form fields not showing in jsp after being set?

2002-08-08 Thread Bill Blackmon
Message- From: Bill Blackmon [mailto:[EMAIL PROTECTED]] Sent: Friday, 9 August 2002 12:09 PM To: Struts Users Mailing List Subject: form fields not showing in jsp after being set? I have an a large amount of input across two separate jsp pages that is set by one bean. I'm able to write

Re: form fields not showing in jsp after being set?

2002-08-08 Thread Bill Blackmon
may wish to look at the Struts layouts tag library to help reduce the amount of html you are using. See http://struts.application-servers.com -Original Message- From: Bill Blackmon [mailto:[EMAIL PROTECTED]] Sent: Friday, 9 August 2002 12:44 PM To: Struts Users Mailing List Subject

Re: just curious

2002-08-02 Thread Bill Blackmon
Yeah - thanks. The tone of this group is MUCH more pleasant and helpful than some of the others. - Original Message - From: David Graham [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, August 02, 2002 6:05 PM Subject: Re: just curious Thanks Craig! I immediately noticed how

Scoped jsp items disappearing after Action.validate()

2002-07-31 Thread Bill Blackmon
Hi, Sorry, I posted a similar message earlier but I'm very pressed for time. I have the following declared at the top of a jsp page: % // THIS SECTION IS NEVER 'SEEN' WHEN PAGE IS RETURNED WITH ERRORS.. Iterator disciplineListIt = (Iterator) session.getAttribute(DISCIPLINE_LIST); Iterator

application-level item disappearing from jsp page after validate is called

2002-07-30 Thread Bill Blackmon
I'm using the following iterator in a jsp page % Iterator disciplineListIt = (Iterator) application.getAttribute(DISCIPLINE_LIST); % The code that uses the iterator follows: while(disciplineListIt.hasNext()) { db = (DisciplineBean) disciplineListIt.next(); description = db.getDiscipline(); id

best practice question

2002-07-29 Thread Bill Blackmon
I have several iterators filled from db calls that will be used across the app for select boxes, lists of checkboxes, radio button etc.. In the context of Struts, would it be best to load these items as application level items at startup and define them in the struts-config.xml file with a

Re: best practice question

2002-07-29 Thread Bill Blackmon
Subject: Re: best practice question From: Vic C [EMAIL PROTECTED] === No need to optimize, just do it as a formbean with c:for each or logic: iterate ...or html:options. v. Bill Blackmon wrote: I have several iterators filled from db calls that will be used across the app for select boxes

Re: best practice question

2002-07-29 Thread Bill Blackmon
, if you're using Struts 1.1-b1 or a nightly build. It's an extremely simple interface, and a snap to use. -- Martin Cooper -Original Message- From: Bill Blackmon [mailto:[EMAIL PROTECTED]] Sent: Monday, July 29, 2002 8:09 AM To: Struts Users Mailing List Subject: Re: best

Re: html:checkbox

2002-07-25 Thread Bill Blackmon
Is this correct? I'm just getting into an application and there are lots of checkboxes and radio buttons. Records will have to be read for editing and 'true' values will have to be reflected in checked checkboxes and selected radio buttons as well as selected items in select drop downs. Are there

Erorr: No getter method for property action of bean org.apache.struts.taglib.html.BEAN

2002-07-23 Thread Bill Blackmon
I'm pulling my hair out trying to find the solution to the error below. I'm using Struts 1.1b and I'm new at this and starting to find my way around by looking at several different examples. If anyone could help me with this I'd be VERY appreciative. // error message No getter method for