RE: Question about NestedIterateTag (also: nested:iterate nested:root)

2003-03-14 Thread Bhamani, Nizar A TL56E
://nagoya.apache.org/bugzilla/show_bug.cgi?id=17977 Personally, I'm seeing more of a problem with the actual names re: the nesting level rather than the actual objects, but your problem could be a symptom of the same issue too. chris -Original Message- From: Bhamani, Nizar

RE: Question about NestedIterateTag

2003-03-14 Thread Bhamani, Nizar A TL56E
created in the work directory and put that logic in MyTag. It worked like a champion. Should've thought of this before. Thanks all for your help. Nizar Bhamani -Original Message- From: Bhamani, Nizar A TL56E [mailto:[EMAIL PROTECTED] Sent: Thursday, March 13, 2003 4:01 PM To: 'Struts

Question about NestedIterateTag

2003-03-13 Thread Bhamani, Nizar A TL56E
We have written our own tag to print a bunch of fields read from an XML file. I am using various NestedTextTag, NestedRadioTag, NestedSelectTag, NestedOptionsTag and it all works fine. I had to enhance this to use iterations of a list of fields and am using NestedIterateTag. However using

RE: Question about NestedIterateTag (also: nested:iterate nested:root)

2003-03-13 Thread Bhamani, Nizar A TL56E
- I've attached. Chris -Original Message- From: Bhamani, Nizar A TL56E [mailto:[EMAIL PROTECTED] Sent: Thursday, March 13, 2003 4:01 PM To: 'Struts Users Mailing List' Subject: Question about NestedIterateTag We have written our own tag to print a bunch of fields read from an XML file. I am

Page Anchoring using Tiles Def

2003-01-02 Thread Bhamani, Nizar A TL56E
My struts config is using Tiles definition to forward to a Page instead of jsp. i.e. I am using the following : forward name=DoSomething path=.tilesdef.doSomething redirect=false contextRelative=true / instead of :

RE: Dynamic list validations

2002-12-12 Thread Bhamani, Nizar A TL56E
of dependents. So if dependents[3].firstName is being checked, it will be checked against dependents[3].lastName James -Original Message- From: Bhamani, Nizar A TL56E [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 11, 2002 5:34 PM To: 'Struts Users Mailing List' Subject: RE

RE: Move to TilesRequestProcessor results in forwarding exception.

2002-12-12 Thread Bhamani, Nizar A TL56E
You need to also do the following in your struts-config : controller processorClass=org.apache.struts.tiles.TilesRequestProcessor debug=0 bufferSize=4096 contentType=text/html locale=false maxFileSize=250M

RE: Move to TilesRequestProcessor results in forwarding exception.

2002-12-12 Thread Bhamani, Nizar A TL56E
To use Tiles, you need to have both 1) plug-in entry and 2) Controller entry in your 'struts-config.xml' as has been mentioned in the available documentation. Nizar Bhamani -Original Message- From: Jerome Jacobsen [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 12, 2002 3:07 PM To:

Dynamic list validations

2002-12-11 Thread Bhamani, Nizar A TL56E
Our forms have a list of input fields and we are using struts-validators to Validate our forms. i.e. the form looks like : InputField1[0] InputField2[0] InputField1[1] InputField2[1] InputField1[2] InputField2[2] InputField1[3] InputField2[3] I want to perform

RE: Dynamic list validations

2002-12-11 Thread Bhamani, Nizar A TL56E
: Wednesday, December 11, 2002 5:10 PM To: 'Struts Users Mailing List' Cc: [EMAIL PROTECTED] Subject: RE: Dynamic list validations Look at the new RequiredIf validation in the night build, it supports just this mechanism. James -Original Message- From: Bhamani, Nizar A TL56E [mailto

html tags

2002-11-06 Thread Bhamani, Nizar A TL56E
I have a typical problem where, I am using the html:form/ tags, in which the contents/fields within the html:form/ tag needs to be dynamic. i.e. the form consists of multiple sections and each of these section has a few fields which can change based on certain conditions. I want to use the

Struts/Tiles/RequestProcessor

2002-11-05 Thread Bhamani, Nizar A TL56E
Here is my scenario that uses Struts/Tiles that has following pages. http://localhost:8080/login.jsp http://localhost:8080/page1.jsp http://localhost:8080/page2.jsp http://localhost:8080/page3.jsp and so on All the above pages use Tiles layout. Every user needs to login before going to

RE: Struts/Tiles/RequestProcessor

2002-11-05 Thread Bhamani, Nizar A TL56E
I am using Tomcat 4.1.12 with Struts 1.1. I will try to dig more about using Filters. Thanks, Nizar Bhamani -Original Message- From: Wendy Smoak [mailto:Wendy.Smoak;asu.edu] Sent: Tuesday, November 05, 2002 6:15 PM To: 'Struts Users Mailing List' Subject: RE:

Form using beans as data member

2002-10-30 Thread Bhamani, Nizar A TL56E
I have a FormBean Class : public class SomeForm extends ActionForm implements Serializable { private SomeBean someBean; // .. } public class SomeBean implements Serializable { private String field1; private String field2; public String getField1() {

Mixing of html:.../ taglib with custom taglibs

2002-10-30 Thread Bhamani, Nizar A TL56E
Is it OK to mix html:form/, html:text/, with custom field tags and use them in the ActionForm Beans ? Has anybody done this ? Nizar Bhamani Senior Software Engineer YouDecide.com Inc, a subsidiary of Ace INA Holdings Corp [EMAIL PROTECTED] (770) 291 7180 http://www.youdecide.com

RE: Dynamic Forms using XML

2002-10-25 Thread Bhamani, Nizar A TL56E
to the Custom Tags that do the needed rendering of the HTML fields. Any comments/suggestions/improvements? /* A - Original Message - From: Bhamani, Nizar A TL56E [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, October 24, 2002 3:46 PM Subject: Dynamic Forms using XML I have a scenario

Dynamic Forms using XML

2002-10-24 Thread Bhamani, Nizar A TL56E
I have a scenario where, I need to develop Dynamic forms using an XML. i.e. the XML will specify what fields (all types of fields) need to be displayed on what page (i.e. page1, page2, etc). Has anybody out there worked on a similar scenario using Struts? Any help/input on this will be greatly

Action Errors

2002-10-24 Thread Bhamani, Nizar A TL56E
I have a form page, which is using the Validations Plugin to perform certain validations. If on a page, I get an error because of required field value is missing, the error message is displayed correctly. However, if I put correct values later, the ActionErrors is still set (ActionError.size() ==

Tiles and validations in Struts

2002-10-23 Thread Bhamani, Nizar A TL56E
I have a tile framework in which the body tile changes every time based on user actions. I am using StrutsValidation in Struts 1.1 to perform user input validations. Whenever, the validation fails on a page, for some reason it always goes to the first page rather then reDisplaying the original

RE: Tomcat startup error

2002-10-23 Thread Bhamani, Nizar A TL56E
I am not sure, I guess, this could be something related to the PersistentManager I am using for my session management, which I had downloaded from the TomCat site for version 4.1.12 ? The server.xml file sets the PersistentManger section as : Manager

Validation Question

2002-10-22 Thread Bhamani, Nizar A TL56E
I have layed out my application to use tiles in which, it has the usual tiles like header, footer, bodyContent etc, inwhich the bodyContent is dynamic. For each page I have a form that redirects it to the tiles/template and appropriately setting the dynamic bodyContent page. The sequence goes

Validators Info

2002-10-17 Thread Bhamani, Nizar A TL56E
May be this question has been asked before. Can somebody send a url which describes the ValidatorForm/DynaValidatorForm etc usage ? I tried digging into the archives but it seems that it is always in bits and pieces with too much digging. Thanks, Nizar Bhamani

FW: Struts - tiles - taglib - error

2002-10-16 Thread Bhamani, Nizar A TL56E
I have been getting this error in my TomCat 4.1.12 error log, when I try to run the tile based struts application. Can somebody throw me some light as to what needs to be done to avoid this. Thanks, Nizar. 2002-10-16 14:29:46 ApplicationDispatcher[/ina-prototype] Servlet.service() for

Struts newbie question

2002-10-16 Thread Bhamani, Nizar A TL56E
I had a question about deploying an application that consisted of multiple struts based components. i.e. there will be a main application directory set (which is struts based) under webapps and underneath which there will be multiple sub-application directories which are also struts based. My

Validator XML error in logs

2002-10-14 Thread Bhamani, Nizar A TL56E
I have setup my struts application to use the StrutsValidator Plugin. As directed, the validator-rules.xml file looks something like : --- ?xml version=1.0 encoding=ISO-8859-1? !DOCTYPE form-validation PUBLIC