Tomcat 5.0.28

2007-11-08 Thread Shabada, Gnaneshwer
Hello I am going off the topic, but wanted to know if you gurus out there tried to install multiple instances of Tomcat on single windows XP machine. I downloaded the zip file and extracted then created two diff folders for 2 intended tomcat instances under my main installation dir. Copied conf,

OWASP standards

2007-01-19 Thread Shabada, Gnaneshwer
Hello, Are there any Java frameworks or Java Utility projects which comply to OWASP standards in terms of data validation etc., Please share if you know of any such frameworks Thank you Gnan This email message is for the

RE: OWASP standards

2007-01-19 Thread Shabada, Gnaneshwer
: Shabada, Gnaneshwer [EMAIL PROTECTED] Hello, Are there any Java frameworks or Java Utility projects which comply to OWASP standards in terms of data validation etc., Please share if you know of any such frameworks David Chandler had a presentation on OWASP at the ApacheCon US 2006 [1

RE: OWASP standards

2007-01-19 Thread Shabada, Gnaneshwer
never mind, I found it http://www.us.apachecon.com/presentations/TH19/TH19-OWASP-updated.ppt Thanks anyways -Original Message- From: Shabada, Gnaneshwer [mailto:[EMAIL PROTECTED] Sent: Friday, January 19, 2007 1:51 PM To: 'Struts Users Mailing List' Subject: RE: OWASP standards

Centralized logging software

2006-08-22 Thread Shabada, Gnaneshwer
Hello, This my question off the topic, but was just wondering if you guys know of any open source software that lets me view all my application logs deployed on various servers to be viewable from one place and that should be online. Please share if you know of any such software? Thanks much

Uncompress

2006-06-09 Thread Shabada, Gnaneshwer
Hello all, I have a question which is unrelated to Struts but wanted to try it out here considering this as a huge java based group. I am trying to uncompress a .Z file using java on windows. Have anyone of you tried this out, if so please share the solution.. I checked Java API with no luck.

JSF real world examples

2006-03-27 Thread Shabada, Gnaneshwer
Hello, Can someone point me to some real world websites/applications that have successfully implemented JSF framework? I tried googling but no luck..Any help is appreciated. Thank you Gnan Shabada This email message is

Struts Plug-in on Tomcat

2005-08-12 Thread Shabada, Gnaneshwer
Is there any chance that Struts Plug-in class wouldn't work on Tomcat 5.5.9 server? I have a web application where I wrote a Plugin to cache my results prior to the page display. I want to run this plug-in during server startup. I configured my struts-config.xml accordingly. Apparently, the same

Deploying on Tomcat - Urgent

2005-08-04 Thread Shabada, Gnaneshwer
Hello, I am trying to deploy my Struts application on Tomcat 5.0.28 on Win2k. I get the following error on my browser when I try to start up. My application has tiles in them and I believe I configured everything properly. I was able to successfully deploy and run the application in Websphere App

RE: Deploying on Tomcat - Urgent

2005-08-04 Thread Shabada, Gnaneshwer
on Tomcat - Urgent Post your web.xml file... (you can omit mime defs from it) and the controller and plugin part of your struts config file rgds aleiprecht -Original Message- From: Shabada, Gnaneshwer [mailto:[EMAIL PROTECTED] Sent: Thursday, August 04, 2005 6:41 PM To: 'user

RE: Deploying on Tomcat - Urgent

2005-08-04 Thread Shabada, Gnaneshwer
Albi, I commented out all the below stuff you mentioned in my web.xml and also in my struts-config.xml I just left the plugin tags and commented rest of them. I still get the same error and nothing in the logs I find the same stack trace. I also find one extra error during the server start up as

Determine the previous action

2004-12-17 Thread Shabada, Gnaneshwer
Hello, How can I determine the previous action I executed in Struts. I would like to know which Action/Screen I came from and appropriately do something in my application. Is there anyway I could do that? TIA Gnan This

bean:define tag

2004-10-21 Thread Shabada, Gnaneshwer
Hello, In my application, I am trying to set a exportIndex variable to a true or false value based on if the member is admin level or not. And I want to use this exportIndex value to display or not display one of my attributes in table. I am using display:table from DisplayTag. I am using

FW: bean:define tag

2004-10-21 Thread Shabada, Gnaneshwer
Sorry for the repeat post. Can someone give me some input? Hello, In my application, I am trying to set a exportIndex variable to a true or false value based on if the member is admin level or not. And I want to use this exportIndex value to display or not display one of my attributes in table.

RE: How to retrieve session variables using Struts tag in JSP

2004-10-20 Thread Shabada, Gnaneshwer
stores. Craig On Tue, 19 Oct 2004 18:59:38 -0400, Shabada, Gnaneshwer [EMAIL PROTECTED] wrote: Hello, I am trying to retrieve a flag value ( that I put in session in my Action class ) in my JSP. I tried bean:define tags and other struts tags but no luck. Can anyone point me which tag does

Session variables using Struts tag in JSP

2004-10-20 Thread Shabada, Gnaneshwer
Can someone tell me how to retrieve session variable values using Struts tags?? I tried logi:match but didn't work. All I am doing is checking for a flag that I am setting in the session in my Action class like below.. Action Class: session.setAttribute(loggedUser, admin); JSP:

How to retrieve session variables using Struts tag in JSP

2004-10-19 Thread Shabada, Gnaneshwer
Hello, I am trying to retrieve a flag value ( that I put in session in my Action class ) in my JSP. I tried bean:define tags and other struts tags but no luck. Can anyone point me which tag does this? I also used logic:match logic:present tags but no use. I tried this where the parameter is the

bean:define

2004-10-13 Thread Shabada, Gnaneshwer
? Any help is appreciated. TIA GNan -Original Message- From: Shabada, Gnaneshwer [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 12, 2004 12:14 PM To: 'Struts Users Mailing List' Subject: logc:equal with displaytag in Struts Hello All, I am using DisplayTag in my Struts App to display

RE: Checkboxes with display tag

2004-10-12 Thread Shabada, Gnaneshwer
mapping, HttpServletRequest request) { deleteList=new String[0]; } ... } This gives me an array of all the id's corresponding to the ticked checkboxes, which I might update in a database. Hope that gives you some clues - but probably more questions :) Shabada, Gnaneshwer wrote

logc:equal with displaytag in Struts

2004-10-12 Thread Shabada, Gnaneshwer
Hello All, I am using DisplayTag in my Struts App to display a list of results. One of the columns is shown as a hyperlink to show the details for that row on a different screen. Now, I want to be able to make this column as a hyperlink only for certain authorized users like admins. I could have

c:set tag

2004-10-11 Thread Shabada, Gnaneshwer
Does Struts have a html or logic tag that is similar to c:set tag that shows how to set a var with a default value?? Thanks Gnan This email message is for the sole use of the intended recipient (s) and may contain

RE: c:set tag

2004-10-11 Thread Shabada, Gnaneshwer
, rather than the html or logic tags, and see if that helps. Erik Shabada, Gnaneshwer wrote: Does Struts have a html or logic tag that is similar to c:set tag that shows how to set a var with a default value?? Thanks Gnan

Checkboxes with display tag

2004-10-11 Thread Shabada, Gnaneshwer
Hello All, I have a Struts app that I am working on and am using DisplayTag to display my search results. So far everything works fine. Now, I want to add a checkbox for each row in this Displaytag which I was able to do but unable to capture the checked values in my Action Class. Please verify

RE: Displaytags or ValueListHandler

2004-10-07 Thread Shabada, Gnaneshwer
to the table. Does either of them support this functionality? Thanks again. -Original Message- From: Shabada, Gnaneshwer [mailto:[EMAIL PROTECTED] Sent: Thursday, October 07, 2004 3:51 PM To: 'Struts Users Mailing List' Subject: RE: Displaytags or ValueListHandler But looks like ValueList tag

Page Navigation in Struts

2004-10-06 Thread Shabada, Gnaneshwer
Hello All, I am planning to implement a Page Navigation functionality to navigate through search results in my project. I read about ValueListHandler pattern and thought that would be the best approach. But am not sure if Struts has any inbuilt navigation functionality or if I can adopt any

Calling JSP directly.

2004-10-04 Thread Shabada, Gnaneshwer
Hi, Was wondering if calling a JSP directly a good approach in struts or should I always go through Action/Action Mappings. I have a situation where I have a result list displayed in a table and each row has email icon which when clicked should display a JSP where one can enter email text and

RE: Calling JSP directly.

2004-10-04 Thread Shabada, Gnaneshwer
.. Let me know if you need more info. Thanks for your help Gnan -Original Message- From: Shabada, Gnaneshwer [mailto:[EMAIL PROTECTED] Sent: Monday, October 04, 2004 4:41 PM To: 'Struts Users Mailing List' Subject: RE: Calling JSP directly. Thanks for your replies guys. I implemented

RE: Calling JSP directly.

2004-10-04 Thread Shabada, Gnaneshwer
Never mind. Got it. I used html:hidden fields with those bean:write tags and it works, :) Thanks anyways guys. -Original Message- From: Shabada, Gnaneshwer [mailto:[EMAIL PROTECTED] Sent: Monday, October 04, 2004 5:37 PM To: 'Struts Users Mailing List' Subject: RE: Calling JSP directly

RE: FW: R: Detecting the previous JSP

2004-09-30 Thread Shabada, Gnaneshwer
Oops, I sent it as an attachment. I guess the mailing list doesn't take it. Anyways, below is the rendered html code from my JSP. When I click the DELETE button, the JS error comes on line 38 i.e, as marked below..Let me know if you find anything Thanks for your help !DOCTYPE HTML PUBLIC

RE: FW: R: Detecting the previous JSP

2004-09-30 Thread Shabada, Gnaneshwer
Dohh!! that was silly of me :) Thanks Frank. Nice eye. I got rid of that JS problem now but it still wouldn't recognize my action on submit. I get the following error on my console. [9/30/04 11:27:48:550 EDT] 3324009f OSEListenerDi E PLGN0021E: Servlet Request Processor Exception: Virtual

RE: FW: R: Detecting the previous JSP

2004-09-30 Thread Shabada, Gnaneshwer
Never mind.. I think I am really being impatient..:) I found it, its the path to the action in the JS function. Had to set it to full path..it works now Thanks anyways -Original Message- From: Shabada, Gnaneshwer [mailto:[EMAIL PROTECTED] Sent: Thursday, September 30, 2004 11:34 AM

RE: FW: R: Detecting the previous JSP

2004-09-30 Thread Shabada, Gnaneshwer
, Gnaneshwer said: Never mind.. I think I am really being impatient..:) I found it, its the path to the action in the JS function. Had to set it to full path..it works now Thanks anyways -Original Message- From: Shabada, Gnaneshwer [mailto:[EMAIL PROTECTED] Sent: Thursday

RE: Detecting the previous JSP

2004-09-29 Thread Shabada, Gnaneshwer
Technologies http://www.omnytex.com On Wed, September 29, 2004 11:02 am, Shabada, Gnaneshwer said: Hi. Is there any way in Struts I could determine dynamically what JSP/screen/action am coming from when I am in a certain screen. I have a scenario where I can delete users from a result list page

FW: R: Detecting the previous JSP

2004-09-29 Thread Shabada, Gnaneshwer
W. Zammetti (MLists) [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 29, 2004 12:59 PM To: Shabada, Gnaneshwer Subject: RE: R: Detecting the previous JSP Yes, I think two different mappings is not only a good idea, but is required. If we assume there's no way (aside from manually passing

FW: FW: R: Detecting the previous JSP

2004-09-29 Thread Shabada, Gnaneshwer
Message- From: Frank W. Zammetti (MLists) [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 29, 2004 3:05 PM To: Shabada, Gnaneshwer Subject: RE: FW: R: Detecting the previous JSP When you say it blows up, do you mean your getting a CLIENT-SIDE error? I had assumed it was a server-side error

RE: FW: R: Detecting the previous JSP

2004-09-29 Thread Shabada, Gnaneshwer
: Frank W. Zammetti (MLists) [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 29, 2004 3:17 PM To: Shabada, Gnaneshwer Subject: RE: FW: R: Detecting the previous JSP Oh, ok, that makes a big difference :) The only thing I can see that looks a bit off to me is how your referencing the form

RE: FW: R: Detecting the previous JSP

2004-09-29 Thread Shabada, Gnaneshwer
All. I am posting again so that someone can shed some light on this.. I am trying to submit an action from a button thru a Javascript function. My Javascript code is : function callDelete() { document.forms[0].action=/deleteRegistration; document.forms[0].submit(); JS

CheckBoxes in logic:ietrate tag

2004-09-27 Thread Shabada, Gnaneshwer
I am running into problem when trying to implement checkboxes using Struts html:checkbox tag in logic:iterate tag. The scenario is as follows: I have a result page that is populated from the database. I used the logic:iterator to iterate through the list of results retrieved from database

RE: CheckBoxes in logic:ietrate tag

2004-09-27 Thread Shabada, Gnaneshwer
: CheckBoxes in logic:ietrate tag From: Shabada, Gnaneshwer [EMAIL PROTECTED] I am running into problem when trying to implement checkboxes using Struts html:checkbox tag in logic:iterate tag. The scenario is as follows: If you have multiple checkboxes, the multibox tag, not checkbox. Then it should

RE: CheckBoxes in logic:ietrate tag

2004-09-27 Thread Shabada, Gnaneshwer
-Original Message- From: Wendy Smoak [mailto:[EMAIL PROTECTED] Sent: Monday, September 27, 2004 6:03 PM To: Struts Users Mailing List Subject: Re: CheckBoxes in logic:ietrate tag From: Shabada, Gnaneshwer [EMAIL PROTECTED] I replaced the checkbox with multi box and in my action class when I

RE: CheckBoxes in logic:ietrate tag

2004-09-27 Thread Shabada, Gnaneshwer
in logic:ietrate tag From: Shabada, Gnaneshwer [EMAIL PROTECTED] And changed the logic:iterate tag logic:iterate id=register property=memberList type=org.acaosa.registration.RegistrationTO This time it didnot recognize memberList and gave me a NullPointerException. You seem to be expecting

RE: CheckBoxes in logic:ietrate tag

2004-09-27 Thread Shabada, Gnaneshwer
PROTECTED] Sent: Monday, September 27, 2004 6:46 PM To: Struts Users Mailing List Subject: Re: CheckBoxes in logic:ietrate tag From: Shabada, Gnaneshwer [EMAIL PROTECTED] Baahh! why didn't that strike me :) I'll put searchResults in session and it should work.. Thanks for your help, Wendy