RE: CSS and Struts

2003-11-12 Thread Manjunath Bhat
html:text property= styleClass=... / -Original Message- From: Ipsita [mailto:[EMAIL PROTECTED] Sent: Thursday, November 13, 2003 9:16 AM To: Struts Users Mailing List; Struts Users Mailing List Subject: CSS and Struts Hi, I have an application which I want to change to a struts

RE: how to read request attribute

2003-11-12 Thread Manjunath Bhat
If the varName is an instance of a bean then you can try bean:write name= varName property=username/ where username is member of the bean -Original Message- From: Garg Raman (SDinc) [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 12, 2003 5:02 PM To: Struts Users Mailing List

RE: Email Validation Rules

2003-11-19 Thread Manjunath Bhat
Try this, [\p{L}_-]+(\.[\p{L}_-]+)[EMAIL PROTECTED](\.[\p{L}_]+)+ -Original Message- From: David Friedman [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 18, 2003 11:46 PM To: Struts Users Mailing List Subject: RE: Email Validation Rules I'd suggest calling:

RE: IDE

2003-11-19 Thread Manjunath Bhat
Eclipse + Lamboz + Easy Struts are good combination I would suggest you. MB -Original Message- From: Gonzalez ComesaƱa, Sergio Eduardo [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 19, 2003 4:01 PM To: Struts Users Mailing List Subject: IDE Hello, Someone knows a good editor

RE: anyone using jstl side by side with the strut taglibs?

2003-11-19 Thread Manjunath Bhat
I am quoting following from O'Reilly Programming Jakarta Struts By Chuck Cavaness for your info.. snip The Struts Bean and Logic tag libraries may eventually be phased out in favor of the JSTL tags. In the next few versions of the Struts framework, look for changes in these two libraries to help

RE: security pattern

2003-11-28 Thread Manjunath Bhat
Use security-constraint and security-role in web application deployment descriptor (web.xml). HTH Manjunath -Original Message- From: Vano Beridze [mailto:[EMAIL PROTECTED] Sent: Friday, November 28, 2003 9:27 PM To: [EMAIL PROTECTED] Subject: security pattern Hello I'm a new user to

Page expires when back button is pressed

2003-12-11 Thread Manjunath Bhat
Hi I have a page which calls an action. Depending on certain condition I will forward it to suitable pages. After this steps if user clicks the Browser's back button, it gives typical browser error Warning: Page has Expired (I am using IE). This happens especially after the validation failure.

Warning: Page has Expired

2004-01-05 Thread Manjunath Bhat
Hi I have a page which calls an action. Depending on certain condition I will forward it to suitable pages. After this steps if user clicks the Browser's back button, it gives typical browser error Warning: Page has Expired (I am using IE). This happens especially after the validation failure.

RE: Warning: Page has Expired

2004-01-05 Thread Manjunath Bhat
(max-age, 0); response.setDateHeader(Expires, 0); % Regards, Martin - Original Message - From: Manjunath Bhat [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Monday, January 05, 2004 6:55 AM Subject: Warning: Page has Expired Hi I have a page which calls an action

redirect=true ActionErrors

2004-01-28 Thread Manjunath Bhat
The errors that I populated in ActionErrors in my action classes are not displayed in page if I use redirect=true. I am using redirect=true to handle user clicking refresh button. If I use redirect=false the ActionErrors are displayed. But I don't want to use redirect=false. Is there any work

RE: redirect=true ActionErrors

2004-02-02 Thread Manjunath Bhat
for your app, let me know and I'll send you some Struts subclasses that you can incorporate in your current project. (It's 2 AM my time, though, so I may not get back to you right away.) - Hubert --- Manjunath Bhat [EMAIL PROTECTED] wrote: The errors that I populated in ActionErrors in my action

RE: redirect=true ActionErrors

2004-02-02 Thread Manjunath Bhat
me know and I'll send you some Struts subclasses that you can incorporate in your current project. (It's 2 AM my time, though, so I may not get back to you right away.) - Hubert --- Manjunath Bhat [EMAIL PROTECTED] wrote: The errors that I populated in ActionErrors in my action classes

RE: File Upload using Struts

2004-02-03 Thread Manjunath Bhat
The struts1.1 distribution contains a file jakarta-struts-1.1\webapps\struts-upload.war. This will answer all your queries. Manjunath/ -Original Message- From: Gandhi, Snehal Kishore (Cognizant) [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 03, 2004 5:21 PM To: [EMAIL PROTECTED]

RE: redirect=true ActionErrors

2004-02-05 Thread Manjunath Bhat
you add some subclasses to your project to make it work for you. - Hubert --- Manjunath Bhat [EMAIL PROTECTED] wrote: Hi Thanks for the reply. My first concerns is with the action errors display on the web page, which is lost due to redirect=true, since it is bound to the request. I

RE: Need to modify the URL path of the forward dynamically

2004-02-09 Thread Manjunath Bhat
Hi, You may look into this URL, http://issues.apache.org/bugzilla/show_bug.cgi?id=866 , which addresses similar(same) issue. Also follow the thread redirect=true ActionErrors in this list. Manjunath -Original Message- From: Max Cooper [mailto:[EMAIL PROTECTED] Sent: Monday,

RE: JUnit test cases for struts

2004-02-17 Thread Manjunath Bhat
http://strutstestcase.sourceforge.net/ -Original Message- From: Jitender Kumar C [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 18, 2004 12:19 PM To: Struts Users Mailing List Subject: JUnit test cases for struts Can anybody help me how I can proceed with writing JUnit Test cases