Jsp not displayed on first time.

2001-05-03 Thread Tewathia, Atul
Whenever I start my application after redeploy I get the error given below. But on a subsequent refresh of the page the browser displays the jsp on the screen exactly fine. This happens for every jsp in my application. Does any body know why this happens ? May 3, 2001 12:03:36 PM GMT+05:30

RE: Reducing the burden on ActionServlet.

2001-05-01 Thread Tewathia, Atul
, this is a technique that I use and it works quite well. We have multiple "projects" in our web app and each project has its own config file. I hope this helps. "Tewathia, Atul" wrote: In our project we have more than one hundred jsp (each having an average of

Reducing the burden on ActionServlet.

2001-04-27 Thread Tewathia, Atul
Title: Reducing the burden on ActionServlet. In our project we have more than one hundred jsp (each having an average of 2 or 3 forms )and we have already decided to use struts as our framework. Now the dilema :- We found that managing such a large number of jsp from a single

Reducing the burden on ActionServlet.

2001-04-27 Thread Tewathia, Atul
Title: Reducing the burden on ActionServlet. In our project we have more than one hundred jsp (each having an average of 2 or 3 forms )and we have already decided to use struts as our framework. Now the dilema :- We found that managing such a large number of jsp from a single

Reducing the burden on ActionServlet.

2001-04-26 Thread Tewathia, Atul
Title: Reducing the burden on ActionServlet. In our project we have more than one hundred jsp (each having an average of 2 or 3 forms )and we have already decided to use struts as our framework. Now the dilema :- We found that managing such a large number of jsp from a single

RE: Pre populating a Form Bean

2001-04-15 Thread Tewathia, Atul
pulating a Form Bean Does jsp1 forward to jsp2? If so, populate the bean in the perform method, stuff it in the request, the jsp2 can find it there. - Original Message ----- From: Tewathia, Atul To: [EMAIL PROTECTED] Sent: Sunday, April 15, 2001 12:46 AM

Pre populating a Form Bean

2001-04-14 Thread Tewathia, Atul
Title: Pre populating a Form Bean I want to pre-populate a formBean in this scenario. Jsp1 -- Jsp2 When I process the data of jsp1 using form1 in the perform method how do I set the form2 attributes .. so that the jsp2 is displayed with preloaded data. Can any body guide in this ??

RE: Pre populating a Form Bean

2001-04-14 Thread Tewathia, Atul
that jsp2 will use the same data in the formBean, just stuff it in the request object in the perform method. Then jsp2 can use the bean. - Original Message - From: Tewathia, Atul To: '[EMAIL PROTECTED]' Sent: Saturday, April 14, 2001 12:16 PM Subject

RE: Pre populating a Form Bean

2001-04-14 Thread Tewathia, Atul
Bean I think u should be able to Populate it in the Action of JSP1. --- Tewathia, Atul [EMAIL PROTECTED] wrote: I want to pre-populate a formBean in this scenario. Jsp1 -- Jsp2 When I process the data of jsp1 using form1 in the perform method how do I set the form2 attributes .. so

Can i get the exact Exception.

2001-03-30 Thread Tewathia, Atul
Title: Can i get the exact Exception. While experimenting with struts I generally get following error on the browser. Error 500--Internal Server Error It makes debugging difficult. Is there a way for me to see the exact Exception on the browser that has occurred ?

JavaScript in Struts

2001-03-28 Thread Tewathia, Atul
Title: JavaScript in Struts How do I perform javascript validation in struts pages ??

Struts Development : tep by step.

2001-03-22 Thread Tewathia, Atul
Title: Struts Development : tep by step. Is there any link/tutorial where a step by step approach of developing a struts-application is given. I am finding it a bit slippery to get a grip on the examples provided with struts.

Confusion : Usage of Struts

2001-03-21 Thread Tewathia, Atul
Title: Confusion : Usage of Struts I am new to struts. I have gone thru the theoretical part of struts and found the concept interesting. Even read thru some examples. But there are some doubts like... What happens to javascript validations? Where do we fit them in the comlete picture?