static server implementation?

2005-10-27 Thread Robert Koberg
Hi, Is there an implementation floating around of org.apache.catalina.Host and org.apache.catalina.Context that is very basic, perhaps only serving static resources? thanks, -Rob - To unsubscribe, e-mail: [EMAIL PROTECTED] F

Re: static server implementation?

2005-10-27 Thread Robert Koberg
Caldarale, Charles R wrote: From: John Laughton [mailto:[EMAIL PROTECTED] Subject: Re: static server implementation? I ended up created a second context in tomcat that allows access to the static content (ie. large jpegs) I'm confused. Why wasn't Tomcat's default servlet sufficient? It's

Re: static server implementation?

2005-10-27 Thread Robert Koberg
Caldarale, Charles R wrote: From: Robert Koberg [mailto:[EMAIL PROTECTED] Subject: Re: static server implementation? If you have a need for many virtual hosts, but do not need or want any ability for dynamic activity it would make sense to have a limited version of a tomcat host/context. I

Re: static server implementation?

2005-10-27 Thread Robert Koberg
Steve Kirk wrote: Have you considered that you can remove much of the dynamic config from conf\web.xml so that there is no default servlet or other dynamic behaviour in any webapp unless you explictly configure it so in the webapp's own web.xml? Right, but say an evil user creates a WEB-INF/web

Re: BOOBIES!

2006-07-23 Thread Robert Koberg
Wow... how do some people make it through the day without exploding from some terrible insult. I can't believe this thread subject has turned into such a big deal. I deleted the first 5 or so because I thought it was spam. Then I saw names responding which I recognized. I really don't unders

the best reason to use tomcat over apache?

2006-09-17 Thread Robert Koberg
http://youtube.com/watch?v=eTKL8MNH95Q - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Problem with XSL stylesheet not being applied when XML served through Tomcat

2007-06-13 Thread Robert Koberg
On Wed, 2007-06-13 at 13:00 +0200, Markus Schönhaber wrote: > > Another comment targeted @ the OP: IMO XSL transformations should be > done on the server side, not on the client side. Doing it on the client > side may be OK if you have a very specific user base and you can be sure > that their cli

RE: i am looking for professional tomcat support for enterprise

2007-07-17 Thread Robert Koberg
is anybody looking in on this thread with incredulity? jeebus help me On Tue, 2007-07-17 at 11:40 -0700, Fargusson.Alan wrote: > That could be fun. I tried to move a couple of small servlets from WAS to > Tomcat. I found that Tomcat does not understand EAR files, so I had to use > WAR files

custom error page and working around a mozilla bug

2006-05-03 Thread Robert Koberg
There is a bug in mozilla when using client side XSLT: https://bugzilla.mozilla.org/show_bug.cgi?id=334179 Basically, the problem is that mozilla ends a response when it sees a redirect or forward. Since I am using client side XSL to transform XML, I get an error when, say, a 404 happens bec

extending Embedded (basically copying Catalina) - Address already in use: JVM_Bind:80

2006-06-15 Thread Robert Koberg
Hi, I want to use a standard startup the same way startup.sh -> catalina.sh -> Bootstrap -> Catalina handles it. I want to make the (standard)server available to a custom manager in the main webapp. I want to be able to start up a Context when a user enters a project in my webapp (i.e. I don

Re: ampersand (&) handling in jspx - any workaround?

2007-02-14 Thread Robert Koberg
On Wed, 14 Feb 2007 12:24:43 -0500, Leon Rosenberg <[EMAIL PROTECTED]> wrote: correct me if i wrong, but isn't & forbidden in xml anyway? you're wrong. Leon On 2/14/07, Stefan <[EMAIL PROTECTED]> wrote: Hello, for sure, the problem is well known. jspx pages turn the "&" in simple "&" wh

Re: ampersand (&) handling in jspx - any workaround?

2007-02-14 Thread Robert Koberg
On Wed, 14 Feb 2007 15:05:02 -0500, Christopher Schultz <[EMAIL PROTECTED]> wrote: Stefan wrote: but where do I need a single "&" in the generated XML. That's forbidden a causes the problems. Can You come up a use case? Oh, I'm not saying that it's a good idea. I actually agree that emittin

TC6: Saxon (actually AElfred) anywhere on classpath causes failure to start

2007-09-15 Thread Robert Koberg
Hi, Even if Saxon (v 6.5.3) is in, e.g. $TC/webapps/webapp/WEB-INF/lib/saxon.jar, tomcat fails to start. It sees AElfred as the XML parser and gives a Digester exception. Does anybody have saxon.jar in tomcat 6 working? If so, how? thanks, -Rob -

jsp hack or better solution ??

2008-03-29 Thread Robert Koberg
Hi, (using 6.0.16) I want to create a jsp that is able to be seen in a browser without using tomcat (a simple HTMLish preview) in addition to using (rendering) it with tomcat. The kicker is I *need* the JSP to be well-formed XML. The problems are elements that contain HTML attributes held over

Re: Cookie-less session tracking - whats are the downsides

2008-04-17 Thread Robert Koberg
On Thu, 2008-04-17 at 09:38 -0400, Christopher Schultz wrote: > The only runtime bottleneck is the time required to add > ";jsessionid=123456789" to your outgoing URLs, which is to say "pretty > much nothing". The engineering bottleneck is that you have to run all > your URLs through HttpServletRe

Re: Bending Jasper to My Will

2008-04-21 Thread Robert Koberg
On Mon, 2008-04-21 at 19:16 -0700, Andy Clark wrote: > Notice that the JSP/tag files that compose the > response are a mixture of the default ones and the > custom ones that the skin overrides. Skin authors > should not have to make complete copies of the > default skin tree in order to edit only

Re: Hot deploy deletes my context file...

2008-05-02 Thread Robert Koberg
On Fri, 2008-05-02 at 12:31 -0400, Mark H. Wood wrote: > On Fri, May 02, 2008 at 05:32:58AM -0700, Michael Burbidge wrote: > > By experimenting from the shell copying files I can see what Tomcat is > > doing. I think that it deletes associated contexts whenever an application > > is undeployed by

logging catalina.out and localhost-##.log - don't append

2008-05-09 Thread Robert Koberg
What do you need to do to get tomcat to create a fresh catalina.out and localhost.log file for every restart? For development, I don't want those log files to append or roll for each new day. thanks, -Rob - To start a new topi

RE: logging catalina.out and localhost-##.log - don't append

2008-05-09 Thread Robert Koberg
On Fri, 2008-05-09 at 13:27 -0500, Caldarale, Charles R wrote: > > From: Robert Koberg [mailto:[EMAIL PROTECTED] > > Subject: logging catalina.out and localhost-##.log - don't append > > > > What do you need to do to get tomcat to create a fresh > > catalina.o

Re: [OT] Parsing xs:dateTime values

2008-05-15 Thread Robert Koberg
Hi, You don't need regexp. Do you mean something like: private static final String ISO8601_DATEFORMAT = "-MM-dd'T'HH:mm:ss"; private static final java.text.SimpleDateFormat ISO8601 = new java.text.SimpleDateFormat( ISO8601_DATEFORMAT, java.util.Locale.US); public static final D

Re: [OT] Parsing xs:dateTime values

2008-05-15 Thread Robert Koberg
whoops and thanks :) On Thu, 2008-05-15 at 12:27 -0400, [EMAIL PROTECTED] wrote: > One cautionary observation about the use of shared SimpleDateFormat > instances: they are not threadsafe. > While it seems like a good idea to create these for various formats and > hold them as class static or

mod_jk not connecting

2008-07-17 Thread Robert Koberg
Hi, I am trying to get httpd and tomcat to work together and not having much luck. Redhat ES 5 jdk1.6.0_07 tomcat 6.0.16 tomcat-connectors-1.2.26-src (built on the machine) tomcat-native-1.1.14-src (built on the machine) If I put mod_jk directives inside a (httpd.conf) virtual host I can't seem

Re: mod_jk not connecting

2008-07-17 Thread Robert Koberg
n't do anything with SetHandler. I should have responded earlier. It turns out I needed: NameVirtualHost *:80 and then adding directives to virtual hosts worked fine. And I could use JkMount and did not need SetHandler, etc. Now on to SSL for one of them... thanks, -Rob > >

mod_jk: docBase and appBase -- 'ROOT' taken out

2008-07-17 Thread Robert Koberg
Hi, Redhat ES 5 jdk1.6.0_07 tomcat 6.0.16 tomcat-connectors-1.2.26-src (built on the machine) tomcat-native-1.1.14-src (built on the machine) After getting the connector working for httpd without SSL I am trying to get it working with SSL. A strange warning occurs followed by the severe error. O

Re: mod_jk: docBase and appBase -- 'ROOT' taken out

2008-07-17 Thread Robert Koberg
On Thu, 2008-07-17 at 22:47 -0500, Charles Caldarale wrote: > On Jul 17, 2008, at 21:56, Robert Koberg <[EMAIL PROTECTED]> wrote: > > > > > The problem: even though I specifiy > > 'docBase="/home/app/wwwapps/ROOT/members"' > > Which is comp

Re: Embedding custom metadata in a jsp page; access generated Class via reflection?

2008-07-29 Thread Robert Koberg
Since you have a well-formed (XML) jsp and well-formed XML metadata, you could run an (pre-runtime) XSL transformation that combines the two however you need. In other words, instead of combining known metadata at runtime, pre-generate the JSPX in some prior stage. With JSP 2.0, EL and the standard

Re: Re: Re: Re: Re: Re: Re: Re: Re: Re: enabling/disabling a servlet filter conditionally

2008-08-01 Thread Robert Koberg
Hola Juan, Have a great vacation! On Fri, 2008-08-01 at 22:54 +0200, [EMAIL PROTECTED] wrote: > Hola, > > Estaré ausente de la oficina por vacaciones hasta el 20 de agosto. > > Para cualquier tema urgente por favor enviar el correo a la dirección [EMAIL > PROTECTED] > > Muchas gracias, > >

Re: Why GlassFish

2008-08-28 Thread Robert Koberg
On Aug 28, 2008, at 9:31 AM, sam wun wrote: Hi, Just a quick question, I found that Tomcat is quite capable with servlet application, but lack of EJB support. Is GlassFish designed to fill the gaps to support EJB application only? As Pythagoras said, just say no to beans. Than

Re: [ANN] Apache Tomcat 5.5.27 released

2008-09-08 Thread Robert Koberg
Hi, Regarding: https://issues.apache.org/bugzilla/show_bug.cgi?id=45015 Have things like the follwoing been tested: < input value="${"boo" foo's}" /> < input value='${"boo"}' /> < input value='${"boo"} "foo"' /> I guess I am more concerned about version 6x. Has this fix been applied to v6x?

Re: [ANN] Apache Tomcat 5.5.27 released

2008-09-08 Thread Robert Koberg
On Sep 8, 2008, at 1:59 PM, Mark Thomas wrote: Robert Koberg wrote: Hi, Regarding: https://issues.apache.org/bugzilla/show_bug.cgi?id=45015 Have things like the follwoing been tested: < input value="${"boo" foo's}" /> < input value='${"boo"