RE: strange tomcat problem with struts1.1

2004-05-10 Thread MARU, SOHIL (SBCSI)
Do not use class variables at all. A FINAL class variable may point to a hashmap so the variable cannot point to another hashmap once initialized but its contents can still be modified. So just use method level variables. -Original Message- From: Riyad Kalla [mailto:[EMAIL PROTECTED]

RE: Overriding RequestProcessor for sesion validationi

2004-05-07 Thread MARU, SOHIL (SBCSI)
I had asked the same question some time ago and the consensus was to use Filters and not RequestProcessor if you have the appropriate version of struts. I have still not added the display message part to my stuff. -Original Message- From: news [mailto:[EMAIL PROTECTED] On Behalf Of GMaine

RE: Displaying Error Message on Top

2004-04-22 Thread MARU, SOHIL (SBCSI)
Put the html:errors tag above the first form only at top. -Original Message- From: Ramadoss Chinnakuzhandai [mailto:[EMAIL PROTECTED] Sent: Thursday, April 22, 2004 1:27 PM To: [EMAIL PROTECTED] Subject: Displaying Error Message on Top Hi I hv defined separate form for top(xyzForm) and

RE: redirecting XML/XSLT to JSP or Vice Versa

2004-04-15 Thread MARU, SOHIL (SBCSI)
to JSP or Vice Versa Thanks Maru... little problem with sellin the client the concept that JSTL is not a risk :( --alan -Original Message- From: MARU, SOHIL (SBCSI) [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 14, 2004 8:24 PM To: Struts Users Mailing List Subject: RE: redirecting

RE: struts 1.1 and session handling

2004-04-15 Thread MARU, SOHIL (SBCSI)
You can use the dynaValidatorForm and instead extend RequestProcessor to create a custom processor and do you session handling stuff in the preProcess method. -Original Message- From: Dean A. Hoover [mailto:[EMAIL PROTECTED] Sent: Thursday, April 15, 2004 1:55 PM To: Struts Users Mailing

RE: redirecting XML/XSLT to JSP or Vice Versa

2004-04-14 Thread MARU, SOHIL (SBCSI)
I am doing something similar, I have a JSP with the following code c:import var=xslt url=xsl/home_xsl.jsp/ c:set var=xml value=abmary had a little lamb /b/a/ x:transform xml=${xml} xslt=${xslt}/ Which transforms using XSL. Now you need to create an xsl and then use the .jsp extension instead.

No Suitable Driver problem

2004-04-09 Thread MARU, SOHIL (SBCSI)
Hello All, I have been scouring the mailing list archives and lot of other places. I am seeing a problem configuring a datasource with Tomcat. I saw a lot of posts where the drivername was not being picked up but none where the driver name was being picked up and yet people were getting the

RE: No Suitable Driver problem

2004-04-09 Thread MARU, SOHIL (SBCSI)
) in order to get the driver to load. I used to get the same error. I hope it helps. Jose Quoting MARU, SOHIL (SBCSI) [EMAIL PROTECTED]: Hello All, I have been scouring the mailing list archives and lot of other places. I am seeing a problem configuring a datasource with Tomcat. I saw

RE: No Suitable Driver problem

2004-04-09 Thread MARU, SOHIL (SBCSI)
Never mind, even though I am using jdk1.4 and tomcat5.0, I had to replace ojdbc14.jar with classes version to get it to work. -Original Message- From: MARU, SOHIL (SBCSI) Sent: Friday, April 09, 2004 11:29 AM To: 'Struts Users Mailing List' Subject: RE: No Suitable Driver problem I

Problem with DynaValidatorForm

2004-04-07 Thread MARU, SOHIL (SBCSI)
Hi, I am a newbie to using the struts framework and am trying to get Validation framework to work. It seems to be working fine,ie if error checks fail it redirects me to the page where it should but does not display the errors. I have read over the archives and corrected couple of things I

RE: Global forwards not working

2004-04-07 Thread MARU, SOHIL (SBCSI)
with actions? -Original Message- From: MARU, SOHIL (SBCSI) Sent: Wednesday, April 07, 2004 3:06 PM To: 'Struts Users Mailing List' Subject: Global forwards not working Hello All, I have the following forwards definition in my struts-config.xml global-forwards forward

Struts with Cocoon

2004-04-02 Thread MARU, SOHIL (SBCSI)
Hello All, We are in process of designing a framework using struts. I am looking to get rid of JSPs and replace the View with just XSLs. I was wondering if anyone has done the following: 1) Extending struts so that each action tag forwards the request to an XSL servlet which using an XSL to

RE: Struts with Cocoon

2004-04-02 Thread MARU, SOHIL (SBCSI)
/index.html (also never used it on my own ... ;-)) but perhaps you got some ideas on that. Cheers! Matthias -Original Message- From: MARU, SOHIL (SBCSI) [mailto:[EMAIL PROTECTED] Sent: Friday, April 02, 2004 8:25 PM To: Struts Users Mailing List Subject: Struts with Cocoon Hello All