CDATA with Digester

2001-09-04 Thread Bernard Genin
Hello List, Is it normal to get an exception when one tries to parse CDATA tags with Digester ? (maybe related to Sax) Like in : .. some text Thanks for any hint, .B

Re: html:link parameter within logic:iterate

2001-07-30 Thread Bernard Genin
Warwick Boote wrote: > The output of this shows a list of links, but i want &stencilName= > apended to the url... how do i do that? > >type="com.eurobenefits.dta.domain.StencilSummary"> > name="iterator1" property="stencilName" filter="true"/> > > > I need to use the paramName=

Re: template problem in WAS

2001-05-21 Thread Bernard Genin
"Assenza, Chris" wrote: > This is a resend from a ways back :) > So your end result will look like: > > pageContext.getOut().flush(); > pageContext.include(content.toString()); > > By hardcoding the flush your problems should be solved. Recompiling struts > is documented on the Struts installa

template problem in WAS

2001-05-21 Thread Bernard Genin
I'm trying to use templates (not yet components, but soon) in WAS 3.5.3 I got a "uncaught" servlet exception (apparently on PageContext.include) on a simple example like : ... If I replace it by : <%@jsp:include file="menu.jsp" %> ... it works fine. But it sound like a bad workaround. I've

Issue with WAS 3.5.3 (Reposting)

2001-05-21 Thread Bernard Genin
I'm trying to use templates (not yet components, but soon) in WAS 3.5.3 I got a "uncaught" servlet exception (apparently on PageContext.include) on a simple example like : ... If I replace it by : <%@jsp:include file="menu.jsp" %> ... it works fine. But it sound like a bad workaround. I'

Another issue with Websphere 3.5.3

2001-05-18 Thread Bernard Genin
I'm trying to use templates (not yet components, but soon) in WAS 3.5.3 I got a "uncaught" servlet exception (apparently on PageContext.include) on a simple example like : ... If I replace it by : <%@jsp:include file="menu.jsp" %> ... it works fine. But it sound like a bad workaround. I'v

Re: How to display odd/even rows using iterator

2001-04-19 Thread Bernard Genin
Scott Walter wrote: > Although I don't like to place Java code in my JSP > pages, this is how I accomplished this: > > > <% if(index%2==0) { %> > > <% } else { %> > > <% } %> > > index++; > > > > --- Anthony Martin <[EMAIL PROTECTED]> wrote: > > I'm sure I'll get to this in my project. Why

Re: Is Struts with Websphere that slow ? - any other problems?

2001-04-09 Thread Bernard Genin
"Assenza, Chris" wrote: > Hendrik: > It's a bear to configure the first time but thereafter its not bad at all. > :) > > Bernard: > My app's templates do about 5 includes per page and anything that does that > will take a performance hit, however I have not noticed it reload every > time, nor h

Is Struts with Websphere that slow ?

2001-04-09 Thread Bernard Genin
Hi all, I did (at last) install a struts application on WebSphere - Advanced 3.5.3 on NTsp6 (with the proposed modification of GetTag.java for "better" support of templates), but it is quite slow. It seems to always reload jsp pages, even afert I put the automatic reloading option in my applic

Re: WebSphere problem

2001-03-16 Thread Bernard Genin
[EMAIL PROTECTED] wrote: > Can anyone provide a stack trace? > here it is. > We're about to move to 3.5.3 from a working 3.5.2, so I'd appreciate a head > start. As the author of the 3.5.2 instructions, I'd like to know that you > changed the ActionServlet class and stored it in the servlet d

WebSphere problem

2001-03-15 Thread Bernard Genin
Hello list, I'm trying to install struts in a websphere servlet container. I have followed all the steps required figuring in the installation notes (on the jakarta site). WebSphere throws errors of parsing on struts-config.xml (during the init pass of the action servlet). Any hint ? Bernard.