Is jsp:directive.taglib inside JSP allowed ?

2007-08-15 Thread Darryl L. Miles
Are these lines not equivalent (from my WEB-INF/jsp/another.jsp) ? uri="http://domain.co.uk/taglibs/foo-0.1"/> <%@ taglib prefix="foo" uri="http://domain.co.uk/taglibs/foo-0.1"%> <%@ include file="/WEB-INF/jspf/somefile.jspf"%> I am getting a Jasper (from 5.5.23) error with the first set o

Re: Tomcat send ThreadDeath to one of it's own Threads

2006-04-06 Thread Darryl L. Miles
and improvements could be made to allow more seamless development in this way (even with major performance loss or complexity to achieve) such a solution would result in even greater web-app development speeds and much less headache. -- Darryl L. Miles

Re: Diagnosing DBCP JDBC connection leak using removeAbandoned parm

2006-04-06 Thread Darryl L. Miles
ot to the bottom of the problem, I just upgraded everything and added some utility functions to my contextDestroyed() web-app lifecycle method. Maybe useful links for this: http://forum.hibernate.org/viewtopic.php?t=935948&start=150 HTH -- Darryl

Re: Tomcat Clusters, private network for replication, and Oracle 8i JDBC driver

2006-04-04 Thread Darryl L. Miles
ng the 172.25.x.y: <--> 172.25.x.z :1521 as you expect ? -- Darryl L. Miles - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Tomcat tag question

2006-04-03 Thread Darryl L. Miles
nge: Best of luck, -- Darryl L. Miles - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

JSP 2.x *.tag files problem

2006-04-03 Thread Darryl L. Miles
fGhi" required="false" rtexprvalue="true" %> <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"; %> ...SNIP... My HTML is here ${vvAbcDefGhi} ...SNIP... test.jsp: <%@ page language="java" contentType="text/html; c

Re: Rephrased: Maximum number of simultaneous HTTP connections

2006-04-03 Thread Darryl L. Miles
ients perspective (you may loose a fragment of a conversation during server migration), but the server implementations have stood the test of time and are on the whole quite stable. Maybe you are trying to use a jumbo jet to fly to the moon with HTTP. -- Darryl L.

Re: log4j not logging 3rd-party-tool-messages in a webapp under tomcat 5.5

2006-03-21 Thread Darryl L. Miles
r.stdout.layout=org.apache.log4j.PatternLayout log4j.appender.stdout.layout.ConversionPattern=%-5p %d{HH:mm:ss,SSS} (%F:%M:%L) -%m%n Try adding: log4j.debug=true -- Darryl L. Miles - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional c

Re: [OT] Performance tricks with multiple tomcat instances

2006-03-14 Thread Darryl L. Miles
Caldarale, Charles R wrote: From: Darryl L. Miles [mailto:[EMAIL PROTECTED] Subject: Re: Performance tricks with multiple tomcat instances I would hope that JIT compiler engineers would as a minimum implicitly add the "lock" instruction before all operations on primitive type

Re: Performance tricks with multiple tomcat instances

2006-03-14 Thread Darryl L. Miles
in java would be a with class/method that the JIT would replace with optimized versions, this would keep keyword pollution down that my naive example above incites. This would be the same sort of optimization and trick the JIT can do with common classes like String. An

Re: request.getSession(false) incorrectly creates a session

2005-11-14 Thread Darryl L. Miles
rst request from a client, but when the servlet forwards the request to a JSP page (via RequestDispatcher.forward) the session gets created. The session is not explicitly created by anything in the JSP page but something is doing it. That's as far as I've got - I haven't dug into t

Re: advice on auto logout servlet

2005-11-14 Thread Darryl L. Miles
logged out? The user notification aspect of this is possible with JavaScript. That is setup a timed event that causes a page reload to a URL of your choosing. -- Darryl L. Miles - To unsubscribe, e-mail: [EMAIL PROTECTED

Holding page when web-app not deployed ?

2005-11-14 Thread Darryl L. Miles
effect that apache now services this request as-if JkMount options has not been specified. I can then setup Redirect and static holding page content in apache. My httpd.conf globally sents requests to tomcat: JkMount /* ajp13 -- Darryl L. Miles

Re: WatchedResource not watched

2005-11-13 Thread Darryl L. Miles
it works. That doesn't make much sense inside the and the description implies the file has to be inside the web-app so relative paths would have an obvious meaning. -- Darryl L. Miles - To unsubscribe, e-mail: [EMAIL PR

Re: Can a "return" statement cause a problem?

2005-11-05 Thread Darryl L. Miles
a HTTP redirect to force the browser to goto another URL. My thoughts. I'm not sure if return is right or wrong here from a specification standpoint. -- Darryl L. Miles - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: finalize question

2005-11-03 Thread Darryl L. Miles
cal.set(long threadId, Object null); I'm looking at some open source profiler tools, to see if they can be altered to give a report specifically on ClassLoader ownership of object graphs. -- Darryl L. Miles - To uns

Re: Why tomcat has a wrapped dbcp?

2005-10-25 Thread Darryl L. Miles
gt; >--David > >Sam Lee wrote: > > > >>Why tomcat has a wrapped dbcp? Is there any difference? >> >> >> >> -- Darryl L. Miles - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Can you intercept the default Servlet ? stack servlets ? forward to specific class ?

2005-10-24 Thread Darryl L. Miles
c, so I've implemented a hard coded exclusion list in the filter. SecurityContextFilter /subdir/* Tim Funk wrote: There called ServletFilters. -Tim Darryl L. Miles wrote: I would like to change a sub-tree (/subdir) of my web-app so that I run every request runs through my own default

Can you intercept the default Servlet ? stack servlets ? forward to specific class ?

2005-10-20 Thread Darryl L. Miles
i just create my new servlet and declare a servlet mapping of the containing directory tree "/subdir/". Do you have any advise about the situation that I might find useful? Many Thanks Darryl -- Darryl L. Miles ---