Re: problem with adding ActionMessage to ActionErrors

2004-03-15 Thread yoge
Use *html:messages id=msg message=false bean:write name=msg/ /html:messages* instead of *html:errors* Bradford M. Ayers wrote: I noticed in the documentation that ActionError is deprecated, so I was trying to be a good doobie and use ActionMessage like the docs say to. So in my code,

Re: ClassPath Problem

2004-03-14 Thread yoge
Place your classes in WEB-INF\classes folder. Prakasan OK wrote: Hi, I am a new bie to struts..I have a problem with my classpath. Instead of putting my ActionForm and Action class in the classes folder of my web application I am getting 'ClassnotFoundError'. I have put the required clases in a

Re: Collection inside a collection

2004-03-05 Thread yoge
Hope this helps. logic:iterate name=/your bean name/ property=/propertyname/ id=group type=java.util.ArrayList logic:iterate collection=%= group% id=/column/ type=java.lang.Object %= row% /logic:iterate br /logic:iterate --Yoge Selim Hendrickson wrote: Hi, I have a bean

Re: optionsCollection struts 1.1

2004-03-04 Thread yoge
() { return value; } public void setLabel(String temp) { this.label=temp; } public void setValue(String temp) { this.value=temp; } } Hope this helps --Yoge bojke wrote: Hi, I don't see optionsCollection in struts1.1 Is there optionsCollection in struts1.1? I have

Re: Getting the real request url

2004-03-03 Thread yoge
Dear Hen, Write a servletFilter and include the below code snippet in your doFilter method *String uri=(String)((HttpServletRequest)request).getAttribute(uri); if(uri==null) { System.out.println(Inside uri==null );

Reload Action Classes

2004-02-20 Thread yoge
requests. What should I do to make the Action classes reloadable so that I dont have to restart my tomcat server for each and every modification in my action classes. Thanks for your Help --Yoge - To unsubscribe, e-mail