PLZ help : urgent

2006-06-15 Thread Nikita Desai
Hi, I have one problem in displaying value of form bean in jsp page. In my action class i am getting collection of formbean from database. Form bean contains division, heading, date as property. From database I can get same division name several times , so i want to display unique on jsp page.

Plz Help, Urgent

2006-08-10 Thread Medicherla Lakshmi
Hi All, I developed an application which forwards menuitems.jsp as we login and it was working fine. I changed the name of the jsp into MenuItems.jsp and trying to access, it gives the following error. I felt it unable to find the class file. So, undeployed the application and deployed

RE: PLZ help : urgent

2006-06-15 Thread Patil, Sheetal
:[EMAIL PROTECTED] Sent: Friday, June 16, 2006 12:03 PM To: Struts Users Mailing List Subject: PLZ help : urgent Hi, I have one problem in displaying value of form bean in jsp page. In my action class i am getting collection of formbean from database. Form bean contains division, heading, date as

Re: PLZ help : urgent

2006-06-16 Thread Richard Yee
Look at the Set interface in java.lang.util -Richard Nikita Desai wrote: Hi, I have one problem in displaying value of form bean in jsp page. In my action class i am getting collection of formbean from database. Form bean contains division, heading, date as property. From database I can get

Re: Plz Help, Urgent

2006-08-10 Thread Shervin Asgari
I guess you have forgotten to change menuitems.jps in your forwards.xml file or other config files. Because your output is saying: (wrong name: org/apache/jsp/menuitems_jsp) Find this value, and changed it to MenuItems and not menuitems Shervin Asgari - System Consultant Medicherla Lakshmi w

RE: Plz Help, Urgent

2006-08-10 Thread Chandra.Ravinithala
If its tomcat, worth clearing the cache. Goto work/Catalina/ and remove whatever in there. Chandra -Original Message- From: Medicherla Lakshmi [mailto:[EMAIL PROTECTED] Sent: Thursday, August 10, 2006 4:47 PM To: user@struts.apache.org Subject: Plz Help, Urgent Hi All, I

Re: Plz Help, Urgent

2006-08-10 Thread kalpesh modi
It seems that you have not changed the JSP name in your forward. You are still forwarding to the old JSP in your code. Thanks, -Kalpesh - Do you Yahoo!? Everyone is raving about the all-new Yahoo! Mail Beta.

RE: Plz Help, Urgent

2006-08-10 Thread Medicherla Lakshmi
/ and remove whatever in there. Chandra -Original Message- From: Medicherla Lakshmi [mailto:[EMAIL PROTECTED] Sent: Thursday, August 10, 2006 4:47 PM To: user@struts.apache.org Subject: Plz Help, Urgent Hi All, I developed an application which forwards menuitems.jsp as we login and it was

RE: Plz Help, Urgent

2006-08-10 Thread Chandra.Ravinithala
: Thursday, August 10, 2006 5:04 PM To: Struts Users Mailing List Subject: RE: Plz Help, Urgent Am using NetBeans bundled with Tomcat, i could not fine work folder in the ide, but anyhow, i tried to delete the content in it. Still i get the same error. I even tried to clean and build the project

Re: Plz Help, Urgent

2006-08-10 Thread Medicherla Lakshmi
No, i changed everywhere. kalpesh modi <[EMAIL PROTECTED]> wrote: It seems that you have not changed the JSP name in your forward. You are still forwarding to the old JSP in your code. Thanks, -Kalpesh - Do you Yahoo!? Everyone is raving about the all-new Yahoo

Re: Plz Help, Urgent

2006-08-10 Thread Shervin Asgari
I don't think you have changed everywhere. Try searching for menuitems If you have Linux then try grep -r menuitems * if nothing, then try grep -ri menuitems * Shervin Asgari - System Consultant Medicherla Lakshmi wrote: No, i changed everywhere. kalpesh modi <[EMAIL PROTECTED]> wrote: It s

Re: Plz Help, Urgent

2006-08-10 Thread Medicherla Lakshmi
i tried to search in the application using "find" for any file by name menuitems.jsp with case, it did not give me any results. Thatz the reason, am not able to understand where is the problem like. Shervin Asgari <[EMAIL PROTECTED]> wrote: I don't think you have changed everywhere. Try searc

Re: Plz Help, Urgent

2006-08-10 Thread Shervin Asgari
You cannot use find, because find does not search inside a file. You have to use grep Shervin Asgari - System Consultant Medicherla Lakshmi wrote: i tried to search in the application using "find" for any file by name menuitems.jsp with case, it did not give me any results. Thatz the reas

RE: Plz Help, Urgent

2006-08-10 Thread Pillay, Kiren KN
Hi I'm not sure if grep -r does this also, but you can also use: find . -name '*.jsp' -exec grep {} \; Regards Kiren -Original Message- From: Shervin Asgari [mailto:[EMAIL PROTECTED] Sent: 10 August 2006 13:53 PM To: Struts Users Mailing List Subject: Re: Plz Help, Urg

Re: Plz Help, Urgent

2006-08-10 Thread sarat chandra
Hi, Its not creating the class file for that JSP. So its not doesn't find that file. Can You extract the war file you are deploying and check out when is it modified. and genareate a class for the MenuItems.jsp and put it in that war file not using build.xml(I think thats how you are doing it).

Re: Plz Help, Urgent

2006-08-10 Thread Shervin Asgari
o use: find . -name '*.jsp' -exec grep {} \; Regards Kiren -Original Message- From: Shervin Asgari [mailto:[EMAIL PROTECTED] Sent: 10 August 2006 13:53 PM To: Struts Users Mailing List Subject: Re: Plz Help, Urgent You cannot use find, because find does not search inside a

Re: Plz Help, Urgent

2006-08-10 Thread kalpesh modi
gt; Regards > Kiren > > -Original Message- > From: Shervin Asgari [mailto:[EMAIL PROTECTED] > Sent: 10 August 2006 13:53 PM > To: Struts Users Mailing List > Subject: Re: Plz Help, Urgent > > You cannot use find, because find does not search inside a file. You >

Re: Plz Help, Urgent

2006-08-10 Thread sarat chandra
did u checked the war file and saw what file u have in that and when is it modified --- Medicherla Lakshmi <[EMAIL PROTECTED]> wrote: > No, i changed everywhere. > > kalpesh modi <[EMAIL PROTECTED]> wrote: It > seems that you have not changed the JSP name in your > forward. You are still forward

Re: Plz Help, Urgent

2006-08-10 Thread Srinivas_Biragoni
08:26 PM cc Subject Please respond to Re: Plz Help,

Re: Plz Help, Urgent

2006-08-10 Thread Puneet Lakhina
On 8/10/06, Medicherla Lakshmi <[EMAIL PROTECTED]> wrote: Hi All, I developed an application which forwards menuitems.jsp as we login and it was working fine. I changed the name of the jsp into MenuItems.jsp and trying to access, it gives the following error. I felt it unable to find the c