Load on startup servlet in glassfish initializing two times

2009-06-17 Thread ECLIPSE + CVS
Hi, I have one problem in glassfish while i am specifying the load on start up servlet; it is initializing two times. ie:Print statement in the init method of the servlet is executing two times. I need to look up all the ejb's while the server startup itself instead of waiting for a request to

java.lang.SecurityException

2009-01-17 Thread ECLIPSE + CVS
Hi, In one of my project i am planning to use Display tag libraries for the pagination purpose. While i am using any one of the tags from the dispaly tld it is showing the security exception. Please see the below exception. Is there any other libraries available for pagination ?. Am using d

Re: Logic Iterate problem

2009-01-17 Thread ECLIPSE + CVS
Thanks !!! Paweł Wielgus wrote: > > Hi, > You are iterating over user. > > Best regards, > Paweł Wielgus. > > 2009/1/14 ECLIPSE + CVS : >> >> Hi, >> >> In one page of my application i am trying to iterate through one >> collect

Logic Iterate problem

2009-01-14 Thread ECLIPSE + CVS
Hi, In one page of my application i am trying to iterate through one collection for populating one combo box. But it is showing "javax.servlet.jsp.JspException: Cannot create iterator for this collection" I have one LoginForm that extends Validator form and it containg one object of User.

Struts Menu problem

2009-01-12 Thread ECLIPSE + CVS
Hi, I am totally new to struts menus and while i am trying to implement one sample in tomcat 6.0.18; it is showing securiyt exception. I am using the latest struts menu jar (2.4.3) and struts-core is 1.3. My common collections version is 3.1 . Is this because of any jar conflicts ?... My

Strut Menu question....

2009-01-12 Thread ECLIPSE + CVS
Hi, I want to create one horizontal menu for my project. I searched a lot and i can found so many .css based menus. But i think controlling the css menus based on the user roles is not that much easy. I found there is project in struts called struts-menu for creating and handling menus in strtus

RE: RequestProcessor Issue

2009-01-10 Thread ECLIPSE + CVS
ml's ActionServlet entry. But you have to specify RequestProcessor > class. > > Regards, > > Rajil > > -Original Message- > From: ECLIPSE + CVS [mailto:anishpis...@gmail.com] > Sent: Saturday, January 10, 2009 3:09 PM > To: user@struts.apache.org > Subjec

RE: RequestProcessor Issue

2009-01-10 Thread ECLIPSE + CVS
ard("unauthorized"); > } > > return super.processActionPerform(arg0, arg1, arg2, arg3, arg4); > } > > I have global forward defined in Struts-config.xml > > > > I hope above sample will help you. > > Regards, > Rajil Davda > > -Original Mes

RequestProcessor Issue

2009-01-10 Thread ECLIPSE + CVS
Hi, I have a small query on Request Processor class. In my project i want to consider the user roles in some of the pages. For that i am planning to extend the RequestProcessor class to create one custom request processor and handle the role based things in the processRoles method. Here my prob