RE: [OT] RE: J2EE certified

2003-08-18 Thread Jones, Marty B.
Why o why must it always be a racist thing. Can't we all just get along. -Original Message- From: message message [mailto:[EMAIL PROTECTED] Sent: Monday, August 18, 2003 7:52 AM To: [EMAIL PROTECTED] Subject: RE: [OT] RE: J2EE certified Who wants to know about your theory about girls

Iterate Tag Question

2003-08-15 Thread Jones, Marty B.
I am using an iterate tag to iterate over a List of items that have a given category. I need to be able to determine when a given category has changed when iterating and push out a header row in a table that I am generating. Is there a way that I can look back a row or save the category from the

RE: Iterate Tag Question

2003-08-15 Thread Jones, Marty B.
Does anyone have any suggestions on how I can compare the previous object's parameters to determine when my object's category has changed? -Original Message- From: Jones, Marty B. Sent: Friday, August 15, 2003 7:07 AM To: [EMAIL PROTECTED] Subject: Iterate Tag Question I am using

RE: Iterate Tag Question

2003-08-15 Thread Jones, Marty B.
of it. Does that answer your question? Matt Jones, Marty B. wrote: Does anyone have any suggestions on how I can compare the previous object's parameters to determine when my object's category has changed? -Original Message- From: Jones, Marty B. Sent: Friday, August 15, 2003 7:07 AM

RE: Html tag question

2003-08-14 Thread Jones, Marty B.
nagi, thanks for the input. I tried what you suggested and I get the following error: No getter method for property name of bean element' -Original Message- From: Nagendra Kumar O V S [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 05, 2003 7:21 AM To: [EMAIL PROTECTED] Subject:

RE: bean tag question

2003-08-14 Thread Jones, Marty B.
the project and provides getters for the properties you are interested in? Paul -Original Message- From: Jones, Marty B. [mailto:[EMAIL PROTECTED] Sent: 05 August 2003 14:41 To: [EMAIL PROTECTED] Subject: bean tag question Does anyone know if the bean tag will allow you to pull a value from

RE: Sessions and ActionForm

2003-08-14 Thread Jones, Marty B.
See answers below: -Original Message- From: Erez Efrati [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 05, 2003 8:58 AM To: 'Struts Users Mailing List' Subject: Sessions and ActionForm I have a registration wizard where I have a RegForm bean on the session scope. Now if on the second

Html tag question

2003-08-14 Thread Jones, Marty B.
I have an array of Project objects that are stored within a ActionForm class (say ShowFileDiffsForm). I have a getter and setter on the ShowFileDiffsForm: Project[] getProjects() void setProjects(Project[] projects) The Project object itself has the attributes:

RE: Location of JSPs for TILES

2003-08-08 Thread Jones, Marty B.
. Where can I find out what the rules are for folders to hold JSPs for either struts, or tiles? Does Tomcat implement this reserved folder concept for WEB-INF/jsp ? Thanks Cameron -Original Message- From: Jones, Marty B. [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 05, 2003 7:25 PM

bean tag question

2003-08-06 Thread Jones, Marty B.
Does anyone know if the bean tag will allow you to pull a value from a class that does not have getter or setter methods on the instance attributes? Here is the scenerio that I have. I have a ActionForm that has an array of Project objects. The actionForm has a getter and setter for the array of

RE: Location of JSPs for TILES

2003-08-06 Thread Jones, Marty B.
I think that the /jsp folder that you are specifying is a reserved folder for some jsp containers. We use /WEB-INF/pages/... Hope this helps. -Original Message- From: Cameron Hickey [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 05, 2003 11:23 AM To: [EMAIL PROTECTED] Subject: Location

RE: Html tag question

2003-08-05 Thread Jones, Marty B.
Sorry about the mislabeled subject line. It should have been logic tag question :) -Original Message- From: Jones, Marty B. Sent: Tuesday, August 05, 2003 7:04 AM To: [EMAIL PROTECTED] Subject: Html tag question I have an array of Project objects that are stored within a ActionForm

RE: Best place to hook the Security Call

2003-08-04 Thread Jones, Marty B.
From what I can tell, if you have already authenticated a user, and now you want to ensure that the user's roles and grants allow them to see the given url that was requested, I would place it in the RequestProcessor by overloading the processPreprocess method. This method gives you the

RE: Best place to hook the Security Call

2003-08-04 Thread Jones, Marty B.
This is what I mentioned earlier. We needed more security flexability that what the normal servlet container supports so we had to write our own security handler. The struts framework has a method hook in the RequestProcessor class that will allow you to verify the users access rights for each

RE: DynaValidatorForm question

2003-08-01 Thread Jones, Marty B.
attribute in action to false will solve your problem. -Original Message- From: Jones, Marty B. [mailto:[EMAIL PROTECTED] Sent: July 31, 2003 3:37 PM To: [EMAIL PROTECTED] Subject: DynaValidatorForm question I have a class that extends Action (LoginAction) and references

RE: Strange Problem saving and retrieving file

2003-08-01 Thread Jones, Marty B.
Are you using a input stream to load the file in the database? If so make sure that you flush the stream and close it. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Friday, August 01, 2003 4:59 AM To: [EMAIL PROTECTED] Subject: Strange Problem saving and

RE: DynaValidatorForm question

2003-08-01 Thread Jones, Marty B.
it to validate when the user has actually submitted a form with request parameters to that given action. Marty -Original Message- From: Jones, Marty B. Sent: Friday, August 01, 2003 6:09 AM To: Struts Users Mailing List Subject: RE: DynaValidatorForm question Will this still validate

RE: DynaValidatorForm question

2003-08-01 Thread Jones, Marty B.
- From: Jones, Marty B. [mailto:[EMAIL PROTECTED] Sent: Thursday, July 31, 2003 5:37 PM To: [EMAIL PROTECTED] Subject: DynaValidatorForm question I have a class that extends Action (LoginAction) and references a DynaValidatorForm for form validation. I have noticed that if I directly reference a url

RE: DynaValidatorForm question

2003-08-01 Thread Jones, Marty B.
question My gut reaction would be to use a depends=required on both fields. This should give you the behavior you desire. -Original Message- From: Jones, Marty B. [mailto:[EMAIL PROTECTED] Sent: Thursday, July 31, 2003 5:37 PM To: [EMAIL PROTECTED] Subject: DynaValidatorForm

DynaValidatorBean Error Question

2003-08-01 Thread Jones, Marty B.
I am getting the following error when I try to set the name and type attribute of the html:form tag. I have included a snippet of my login.jsp file and my struts-config.xml file The main reason I am trying to set them is because if I don't set them and let the form tag configure itself with the

Html Form Tag Question

2003-08-01 Thread Jones, Marty B.
I have the following tag declaration in a jsp file: html:form name=loginForm action=/login focus=username method=POST type=com.dailyaccess.actions.LoginBean The jsp compiles correct and views correctly. The issue that I am having is that the action attribute in the html form that is created is

RE: Html Form Tag Question

2003-08-01 Thread Jones, Marty B.
:40 AM To: Struts Users Mailing List Subject: Re: Html Form Tag Question I don't know if it was resolved, but this thread should be of interest to you: http://marc.theaimsgroup.com/?l=struts-userm=105943092932593w=2 HTH m --- Jones, Marty B. [EMAIL PROTECTED] wrote: I have the following tag

RE: Html Form Tag Question

2003-08-01 Thread Jones, Marty B.
://marc.theaimsgroup.com/?l=struts-userm=105943092932593w=2 HTH m --- Jones, Marty B. [EMAIL PROTECTED] wrote: I have the following tag declaration in a jsp file: html:form name=loginForm action=/login focus=username method=POST type=com.dailyaccess.actions.LoginBean The jsp compiles correct and views

RE: Html Form Tag Question

2003-08-01 Thread Jones, Marty B.
--- Jones, Marty B. [EMAIL PROTECTED] wrote: I have the following tag declaration in a jsp file: html:form name=loginForm action=/login focus=username method=POST type=com.dailyaccess.actions.LoginBean The jsp compiles correct and views correctly. The issue that I am having

DynaValidatorForm question

2003-07-31 Thread Jones, Marty B.
are both null. If they are then return a mapping to go back to the login screen. Is there a way to do this with the DynaValidatorForm? Thanks in advance, Marty Jones Marty B. Jones Senior Software Engineer DailyAccess.Com