Components....

2002-07-28 Thread Andrew Myers
Hi, I have a bit of a problem which I'm hoping some of the brainy people here might be able to help me with. :) My boss wants me to write a component (which he defines as a series of JSPs and associated business logic beans) that allows you to search for a property by its address. The end

Security Roles

2002-07-01 Thread Andrew Myers
Hi all, I've seen in the Struts documentation that the logic:present tag has a role attribute. Can anyone point me in the right direction to find out more information about how this works, and where these roles are defined? Thanks, Andrew. -- To unsubscribe, e-mail: mailto:[EMAIL

How to handle long waits...

2002-06-30 Thread Andrew Myers
Hi all, One of my struts actions will call a process which generates and returns a PDF. Depending on the size of this document there can be quite a lengthy delay while this occurs. I'd like to display a message to the user saying Generating PDF, please wait until the document is returned

struts-config_1_1.dtd

2002-02-12 Thread Andrew Myers
Hi, What do folks here suggest we do with the DOCTYPE declaration at the top of struts-config.xml when deploying to a live server? Currently it says !DOCTYPE struts-config PUBLIC -//Apache Software Foundation//DTD Struts Configuration 1.1//EN

Re struts-config_1_1.dtd

2002-02-12 Thread Andrew Myers
Ooops I just found someone had asked the same question (and received a very helpful answer from Ted Husted) in an early digest. Please ignore the previous message!! Andrew. :) -- __ Your favorite stores, helpful shopping

Re: Connection Pooling

2002-01-31 Thread Andrew Myers
I did give this a try although I had a few hassles getting it running in the Visual Age 4.0 and the WebSphere Test Environment (the lazy instantiation didn't seem to work on the first attempt and I always had to reload my pages to see the data?). Has anyone successfully used this in WTE?

Connection Pooling

2002-01-30 Thread Andrew Myers
Hi, I'm using Struts connection pooling in my Struts application. If the database goes offline temporarily the only way I know of to re-establish the pool is to stop and start the application server (in this case WebSphere 3.5.5 which is quite a tedious process!). Is there a smarter way

Design of Business Objects

2001-12-02 Thread Andrew Myers
Hi, This is not exactly a question related to Struts as such but it does relate to a Struts application I'm building. :) I have a search function that allows users to search for a Property via a street address. The business objects I have to support this are a Property object and a

Websphere Studio Struts

2001-09-19 Thread Andrew Myers
Fari, Do you have the .tlds in the servlet directory of your project? You also need to make sure that the URI in the taglib directive at the top of your jsp matches the URI in the tld otherwise it doesn't seem to work eg. %@ taglib uri=http://jakarta.apache.org/struts/tags-html-1.0;

Multiple input fields

2001-08-16 Thread Andrew Myers
Thanks for your reply. I guess that would work but it seems to break away from the ActionForm / Action model? Also is anyone able to tell me where I would find an example of a form bean associated with a multibox element? Thanks, Andrew. --Original Message-- Date: Thu, 16 Aug 2001 12:03:15

Multiple input fields

2001-08-15 Thread Andrew Myers
Is it possible to have multiple input fields with the same name? Eg. In regular HTML I would do this form action=blah TABLE TR TDCategory/TD TDDescription/TD /TR TR TDinput type=text name=category value=/TD TDinput type=text name=description value=/TD