Re: Getting my JRun taglib working with Tomcat 3.2.3

2001-11-22 Thread horombo
Hi Nick, you can put your custom tag classes either in the WEB-INF/classes or - as a JAR-file - in the WEB-INF/lib directory. The TLD must be located somewhere in the WEB-INF/... directory. It's a good practice to put them in a separate directory, such as WEB-INF/tlds (Don't forget to adapt the t

Getting my JRun taglib working with Tomcat 3.2.3

2001-11-22 Thread Nick de Voil
I have developed a JSP app which works great on my PC under JRun 3.0 and W2K. It makes extensive use of custom tags. To get them working I basically just created a TLD. There didn't seem to be any need to create a web.xml file. Or to put the classes in a JAR file. Now I am trying to install the

Re: JSTL (standard taglib) Early Access 2

2001-11-22 Thread Hans Bergsten
Shawn Bayern wrote: > [...] Thanks for the new release. It's nice to be able to play around and test the new tags. > The EA2 release contains proposed standard tags for internationalization, > data retrieval (via URLs), formatting, and XML manipulation (using XPath > and XSLT). It incorporates

RE: using ONLY taglib in JSP

2001-11-22 Thread Shawn Bayern
It's at the Jakarta Taglibs site: http://jakarta.apache.org/taglibs/doc/standard-doc/intro.html Enjoy! Shawn On Thu, 22 Nov 2001, Philippe ENTZMANN wrote: > Thanks a lot. > > Where can I download this ? > > Just a step further ... > Is there a way to automatically include a <%@ taglib > %

RE: using ONLY taglib in JSP

2001-11-22 Thread Reynir Hübner
http://jakarta.apache.org/struts -> download ->.. -Original Message- From: Philippe ENTZMANN [mailto:[EMAIL PROTECTED]] Sent: 22. nóvember 2001 16:49 To: Tag Libraries Users List Cc: [EMAIL PROTECTED] Subject: RE: using ONLY taglib in JSP Thanks a lot. Where can I download this ? Jus

RE: using ONLY taglib in JSP

2001-11-22 Thread Philippe ENTZMANN
Thanks a lot. Where can I download this ? Just a step further ... Is there a way to automatically include a <%@ taglib %> in all the JSP pages a compilation time. So all pages will be scriptlet-free ? --- Shawn Bayern <[EMAIL PROTECTED]> wrote: > There's a standard, easier way to handle it: yo

RE: using ONLY taglib in JSP

2001-11-22 Thread Lacerda, Wellington (AFIS)
Yes, it is! Take a look on the JSPTL and Struts! Have you seen the Struts framework? It's also from Jakarta. If you already have a framework you are using with some success, then you can BORROW some concepts from Struts (it's an open source project from Jakarta). If you are creating a framework f

RE: using ONLY taglib in JSP

2001-11-22 Thread Philippe ENTZMANN
Thanks for your help. I could look into Tomcat sources but it will not work on other container like WebSphere. I looked at velocity which provide a true MVC approach but it lakes some king of "taglib support" (not sure). I really like the tag syntax over the velocity syntax #myobject.doSomethin

RE: using ONLY taglib in JSP

2001-11-22 Thread Shawn Bayern
There's a standard, easier way to handle it: you can use a TagLibraryValidator to ensure that the page contains no scriptlets. JSTL's (early-access) reference implementation comes with a 'scriptfree.tld' library that you can import using the <%@ taglib %> directive. This library ensures that i

RE: using ONLY taglib in JSP

2001-11-22 Thread Reynir Hübner
Never seen such a switch in tomcat... in theory you should be able to get the source of Tomcat and find out how it parses the JSP pages (with Jasper) and change it so it will not parse <% %>. You can check out velocity (http://jakarta.apache.org/velocity) that is a template engine. It might help

using ONLY taglib in JSP

2001-11-22 Thread Philippe ENTZMANN
Need some advices to use ONLY taglib in my JSP pages. We have some taglibs implementing our business model. With a MVC approach in mind, we avoid using Java code in our JSP and always put "model" into tag. Is it possible de restrict JSP pags to only contains tags (taglig, HTML, ...) et not Java so

AW: DBTags in a production enviroment??! ConnectionPool running out

2001-11-22 Thread Stefan Frank
I'm currently looking for exactly this switch in the ConnectionPool: Alas, there is no such thing in Weblogic6.1. To me it looks like the Connection is stored somewhere (in the Session?! Applicationwide?!) and it doesn't matter wether you close it or not. Does anybody know, where it is stored?! Wi