Pages being cached

2000-11-18 Thread Jim Richards
I'm getting weird behaviour with my struts code, and with the example application. Currently I've got Tomcat 3.2b6 running, with the latest nightly build of struts (17-11-2000, that's the 17th November, 2000) and the examples, documentation and test data all run. (Which I must say, took a very

Open source connection pool recommendations?

2000-11-18 Thread Ray Power
Hi, I'm playing with struts 0.5 on tomcat 3.1. I was wondering what JDBC connection pool people are using with struts. Thanks, Ray

RE: Update on example app failure in WebLogic 5.1

2000-11-18 Thread Stephen Earl
Nope... no fix in sp 6... Steve... -Original Message- From: Ray [mailto:[EMAIL PROTECTED]] Sent: Saturday, November 18, 2000 3:45 AM To: [EMAIL PROTECTED] Subject: RE: Update on example app failure in WebLogic 5.1 Hi, Yes - weblogic does not honor load-on-startup, so the

Re: encodeURL tag

2000-11-18 Thread Craig R. McClanahan
Ray Power wrote: public java.lang.String encodeURL(java.lang.String url) // Encodes the specified URL by including the session ID in it, or, if encoding is not needed, returns the URL unchanged. I'm playing with struts 0.5 on tomcat 3.1 with IE5 cookies enabled. How

Re: Open source connection pool recommendations?

2000-11-18 Thread Joe Peer
i've been using a connection pool which was published in a java book by Wrox, you can check it out at http://www.wrox.com/Books/Book_down.asp?isbn=1861004656sub_section=1subjec t=Javasubject_id=13 (download the whole code, chapter 9 should contain the connection pool) i cant say if it is high

RE: Open source connection pool recommendations?

2000-11-18 Thread Andy Boyko
I'm playing with struts 0.5 on tomcat 3.1. I was wondering what JDBC connection pool people are using with struts. We're using the minerva pool (written for the jboss EJB container, but we're using it by itself, without jboss). It has some very nice features, like JDBC 2.0 Datasource

Re: i18n, bean:message, .jsp

2000-11-18 Thread Craig R. McClanahan
[EMAIL PROTECTED] wrote: 3. The XHTML and HTML4.0 standard says that there should be an attribute on the html tag specifying the language, a la html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" I just added a new form:html/ tag that will generate the "lang" and "xml:lang"

Struts Style Sheets or composite tags?

2000-11-18 Thread Robert Leland
For custom tags is there a standard way of defining a collection of tags that is normally used over and over again in a application ? Here is an example: Say I want to create a composite tag, compositetag1/ When used is equivalent to: tag1/ tag2/ tag3/ One