Re: org.apache.jasper.JasperException when moving TLD

2002-12-31 Thread Paul Campbell
I don't think you need to put taglib definitions in because they may allready be jarrd/warrd in. Try without the tablib defs At 06:28 PM 12/31/2002 +0100, you wrote: Hi I've installed Tomcat 4.1.18 now and the first thing I usually do is test the tag libraries. Since I don't want to have a

Re: problems with fmt:setLocale

2002-12-21 Thread Paul Campbell
Hola Pablo, I am not certain that I understand completly. This is what I do to take the language that the browser has and use that for the user. c:if test=${param.language == 'en'} fmt:setLocale value=en scope=page / /c:if c:if test=${param.language == 'es'} fmt:setLocale value=es

Re: client/server side xslt depending on client possilities

2002-12-02 Thread Paul Campbell
I don't know if I understand your question, but I believe that lt;xml:transform is part of the JSTL . http://jakarta.apache.org/taglibs/doc/standard-doc/intro.html At 05:01 PM 12/2/02 +0100, you wrote: Hi, I wonder if someone has already implemented a tag library allowing to perform

Solved: Re: fmt:setLocale value=es

2002-11-19 Thread Paul Campbell
Muchas Gracias, Fredrik, I would never have guessed at the solution. tagpooling is true in 4.1.12 also. If there is an FAQ for taglibs, conf/web.xml/enablePooling default(true) causes problems with subsequent access. Hasta la vista, muchacho. At 07:38 AM 11/19/02, you wrote: Paul Campbell

fmt:setLocale value=es

2002-11-15 Thread Paul Campbell
It seems that if I specify a Locale(es) for the first invocation of a jsp, I will get the appropriate output. Spanish Text for labels and headings. However, if I access the same page with a different Locale(en) from another browser, I still get the same output in Spanish. It appears that the

mailer-taglib in jakarta

2002-11-14 Thread Paul Campbell
On the mailer taglib, I didn't seem to be able to find a syntax that allows me to set a string either using EL or RT notation. Is that correct? or is my understanding faulty? Is there more than one way ? Example: I have some bean called stringBean. How do I get a property such as

Alternatives to this hack ?

2002-11-09 Thread Paul Campbell
First, I just used the JSTL taglibs-mailer for the first time. It was remarkable how easy and effective it was. My hack was that I wanted to execute to method in a bean ef and then to do a getProperty to obtain the result of the method. I executed % ef.doToString(); % and then