RE: Accessing environment variables

2001-05-15 Thread Courtney, James
Java system properties are different from environment variables as you probably know. If you look at your start up script (tomcat.sh) you will see that the command is executed with a -Dtomcat.home=${TOMCAT_HOME}. The -D parameter is how you set environment properties for Java at run time. If yo

RE: Configuring uriworkermap.properties (ISAPI REDIRECTOR for Tomcat /IIS 5.0)

2001-05-09 Thread Courtney, James
I believe you've answered your own question:) -Jamey -Original Message- From: test test [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 09, 2001 6:46 PM To: '[EMAIL PROTECTED]' Cc: Daniel Kang Subject: Configuring uriworkermap.properties (ISAPI REDIRECTOR for Tomcat /IIS 5.0) Hello I h

Does anyone know of a release date set for Tomcat 4?

2001-05-07 Thread James Goodwill
Hello, Does anyone know of a release date set for Tomcat 4? Thanks, James

Re: JAVA vs. PERL startup time + memory

2001-05-06 Thread James Klicman
Choose whichever language you want and don't worry. Apache will spawn only one CustomLog process for all log records. It will only start a new process if the pipe hangs or the log process dies. It would be ridiculously inefficient if Apache spawned a new process to log each record. -James

RE: Memory usage

2001-05-03 Thread Courtney, James
Actually, setting a Java object to null (assuming that there are no other references to that object) is the normal way of telling the VM that the object may be garbage collected. The garbage collection takes place asynchronously however and at the discretion of the VM in a background thread. The

RE: virtualHosting of apache

2001-05-03 Thread Williamson, James
Guninder,   That's certainly the correct directive syntax, you might like to check this (because this is off topic): http://httpd.apache.org/docs/vhosts/   James -Original Message-From: Guninder [mailto:[EMAIL PROTECTED]]Sent: 03 May 2001 13:46To: [EMAIL PROTECTED]Su

RE: virtualHosting of apache

2001-05-03 Thread Williamson, James
Haven't you forgotten to change the VirtualHost directive too?   i.e. VirtualHost should now be   James -Original Message-From: Sam Newman [mailto:[EMAIL PROTECTED]]Sent: 03 May 2001 12:40To: [EMAIL PROTECTED]Subject: Re: virtualHosting of apache err..I'm not

Tomcat and access control

2001-05-02 Thread James R. Hendrick
Hi, I need to understand how tomcat handles access control. First, let me say I am new to both the list and Java/servlet technology, but have used Apache servers and other languages for some time. My question (in general) is this: How is tomcat configurable to control what machines can connect

PLEASE - DON"T Attach FILE's to E-MAILS

2001-04-27 Thread James Schuneman
FOLKS, Please DON"T Attach Files to E-mails, Are people just stupid or what. Dang. If you don't know what you are doing with E-mail let alone JSP then find another Job. James At 04:25 PM 4/27/01 -0400, Edward Muller wrote: >I'm using Tomcat with Apache and have a

RE: Adding modules

2001-04-25 Thread Williamson, James
r jsp/tomcat, we tell apache that mod_jk or mod_jserv will handle the request, they then talk to the Tomcat server via sockets. So theoretically Tomcat from Apache's perspective can be thought of as nothing more than a module. Hope this helps, James -Original Message- From: Arn

RE: ServletOutputStream

2001-04-17 Thread Courtney, James
For any given HTTP request the server returns a single response of a single type. If you want to return test/html then that is what the server will tell the browser it is returning and in turn, the browser will try to display the data that way. If you want to return a byte stream like image/jpeg

RE: Tomcat Production References

2001-04-11 Thread James Goodwill
can try the e-Test suite at www.empirix.com.   Thanks, James   P.S. I am affiliated in no way with this product or company. -Original Message-From: Dan Turner [mailto:[EMAIL PROTECTED]]Sent: Wednesday, April 11, 2001 1:53 PMTo: '[EMAIL PROTECTED]'Subject: Tomcat

RE: Fed up to the back teeth with tomcat !!!

2001-04-11 Thread James Goodwill
Which version of Tomcat are you using? -Original Message- From: Andy C [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 11, 2001 1:12 PM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: Fed up to the back teeth with tomcat !!! I am fed up to the back teeth with Tomcat under Apache.

Can Tomcat 4.0 be configured to run with Apache 1.3 on Windows NT/2000?

2001-04-10 Thread James Goodwill
I am trying to configure Tomcat 4 beta 3 with Apache 1.3. I have seen the documentation for building mod_webapp.so, but this will not work on a Windows box. Is there a mod_webapp.lib for windows or another method for using the Apache Connector? Thanks, Jim

What happens executing request thread when browser terminates connection?

2001-04-10 Thread James Wiltshire
uting threads if the user clicks stop on the browser before the servlet has sent any response, or the user gets impatient waiting, and clicks on the same (or another) link, thereby cancelling the original request??   Any help would be greatly appreciated. Thanks.   James Wiltshire      

RE: Delay (40 seconds) on first jsp access

2001-03-22 Thread James Carroll
Thank you Mark!!! I thought you were talking about the kind of sessions that you instantiate when you want to use cookies or URL rewriting to give a user a persistant experience I got rid of the delay by adding: <%@ page session="false"%> before the body of my .jsp pages!

RE: Delay (40 seconds) on first jsp access

2001-03-22 Thread James Carroll
statement.getResultSet(); while (result.next()) { ids.addElement(new Long(result.getLong("slideID"))); } - then prints results. -James Carroll MicroBrightField Inc. > -Original Message- > From: Al

RE: Delay (40 seconds) on first jsp access

2001-03-22 Thread James Carroll
tialization is now > *much* faster and > is also done when Tomcat starts instead of when the first session is > created. Has this change happened in 3.3M2 'cause my delay happens there too. Best Regards, -James Carroll MicroBrightField Inc. > -Original

Delay (40 seconds) on first jsp access

2001-03-22 Thread James Carroll
his point??? Thanks!!! -James Carroll MicroBrightField Inc.

RE: Class loader behavior with resource bundles...

2001-03-21 Thread James Lehmer
> Does it work in the command line tests under both Linux and > Win2K? I just want to make sure the JDK itself is ruled out. > > Personally, we've run into instances where regular .properties > files aren't found under Tomcat if they're in WEB-INF/classes; > but if we put them in a package directo

RE: Class loader behavior with resource bundles...

2001-03-21 Thread James Lehmer
> It is also standard behavior of Java with respect to class paths, and is > not specific to Tomcat. Resource bundles have to follow the same > directory structure rules as a class named org.foo.bar would. It WAS in the same directory structure, as my post pointed out. The resource bundle IS in

RE: Class loader behavior with resource bundles...

2001-03-21 Thread James Lehmer
> I've had my fair share of fun trying to use getResourceBundle > to load a > properties file and made basically the same discoveries you have. The > properties file say bar.properties gets loaded as > ResourceBundle.getBundle("org.foo.bar") and must be in > WEB-INF/classes/org/foo/bar.propert

RE: Class loader behavior with resource bundles...

2001-03-20 Thread James Lehmer
> I have only one guess: you've got the wrong package (or no > package) in your > ListResourceBundle implementation,... No - I just double-checked that, and it's the same package (correctly spelled :-). Remember: 1) It works when the class unit tests are exercised on the command line. 2) It wo

Class loader behavior with resource bundles...

2001-03-20 Thread James Lehmer
First off, if the following has an answer that's been posted before, my apologies. I searched the archives (and the Web in general) and didn't get any hits. Really. I swear! :-) I am going to try and be as detailed as possible, because it appears that it COULD be a Tomcat bug, since the behavior

[Tomcat-user] Servlet Context Parameter... illegal characters...

2001-03-18 Thread James Carroll
Hi, in my web.xml in the part that specifies: databaseURL this works: jdbc:mysql://localhost/db but this doesn't: jdbc:mysql://localhost/db?user=name&password=pw Either the ? or the & is messing up the parser... Is this a bug? or is there a way of escaping the special

RE: web.xml

2001-03-16 Thread James Carroll
I -think- that you don't have to create all of the > > > Test1 > > > Test1 > > There is an Invoker servlet that you associate with the path for the servlets... and the invoker looks for the class file, and runs it. in the

RE: Using JAR files

2001-03-15 Thread James Carroll
The only two things I have found that work are putting the jar directly in a classpath, and putting the jar in jre1.2\lib\ext. I've started really liking the lib\ext, because I don't have to create huge CLASSPATHs. -Jim --- I have a servlet that requires classes from xalan.jar. I've trie

RE: MYSQL CONNECTION CLASS

2001-03-14 Thread James Carroll
What you need is connection pooling Let me know what you think of this class (I'm pretty happy with it) All it needs is the URL that represents your connection to the database... make the following calls in your init() itsConnectionPool = new VSDBPool("jdbc:mysql://localhost/database?use

RE: Cache problem with IE

2001-03-13 Thread James Carroll
I've had success with the following: Which looks like this in a servlet: response.setHeader("Expires", "Tues, 01 Jan 1980 00:00:00 GMT"); Best Regards, -James Carroll MicroBrightField Inc. > -Original Message- > Fro

RE: set CLASSPATH DOS 8.3 names maybe used in TOMCAT_HOME

2001-03-12 Thread James Carroll
27;t believe in setting CLASSPATH during start-up. This is what the startup.bat is (correctly) doing for you. Any classes that I want available on the machine go in C:\jdk1.3\jre\lib\ext And I set the classpath on the command line via -cp whenever possible. Best Regards,

Advise needed...

2001-03-12 Thread James Carroll
g heavy use of style JSSI. I think I can replace these with statements. Anyone been there done that Thanks!!!!!! -James Carroll MicroBrightField Inc. - To unsubscribe, e-mail: [EMAIL PROTECTED]

RE: set CLASSPATH DOS 8.3 names maybe used in TOMCAT_HOME

2001-03-12 Thread James Carroll
results similar to what you are seing. Best Regards, -James Carroll MicroBrightField Inc. -Original Message- From: Darrell Porter [mailto:[EMAIL PROTECTED]] Sent: Monday, March 12, 2001 3:16 PM To: '[EMAIL PROTECTED]' Subject: RE: set CLASSPATH DOS 8.3 names may

SingleThread

2001-02-27 Thread James MailingList
If a Servlet implements SinglThreadModel interface then how does the Tomcat v3.2.1 handle it ? a. Creates multiple threads as and when the request comes and kicks off the multiple instances of the servlet. If YES, then can we configure how the Min/Max threads to be created ? b. Creates a single t

extending servlets

2001-02-21 Thread James Holmes
"A" works and "B" does not. Ideas? Suggestions? Thanks, -james case A: -- public TestServlet extends HttpServlet { public void doGet(HttpServletRequest request, HttpServletResponse respons

XML string parsing

2001-02-20 Thread James Richards
wn classes. However, is there an inbuilt functionality within Tomcat to parse XML strings without having to write code utilising these base classes? James - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, ema

RE: Newbie Question, this should be easy

2001-02-16 Thread James Goodwill
It is jsp:useBean and jsp:setProperty. The JSP standard actions are camel case and follow the bean spec. Thanks, James -Original Message- From: CPC Livelink Admin [mailto:[EMAIL PROTECTED]] Sent: Friday, February 16, 2001 7:37 PM To: [EMAIL PROTECTED] Subject: RE: Newbie Question, this

Macromedia Generator in Tomcat?

2001-02-12 Thread James Bromberger
o "libflash.so" that I can see - there is "libjflashgen.so". Are these the same? Has anyone had any success in getting Generator under Tomcat? James -- James Bromberger, Senior Web/Systems Administrator, JDV +61 8 9268 2909, +61 417 322 500 Fax: +61 8 9268 02

uriworkermap

2001-02-11 Thread James Leone
I'm using the isapi_redirect with IIS on w2k and it's not regocnizing the patterns to forward to tomcat server. log says this [jk_uri_worker_map.c (434)]: jk_uri_worker_map_t::map_uri_to_worker, done without a match [jk_isapi_plugin.c (452)]: HttpFilterProc [/examples/jsp/dates/date.jsp] is not a

RE: **** How do I configure Tomcat for use with j2ee ****

2001-02-10 Thread James Leone
What have you tried? Tomcat relies on many of the libraries that come with SE. For instance when I start up Tomcat it loads /jdk1.3/lib/tool.jar but it looks like thats about if from the java directory. I would give it a shot by just swapping out the JAVA_HOME defined when you run bin/startup.

RE: W2k not processing JSP

2001-02-10 Thread James Leone
.jsp=ajp12 and the registry entry for the dll is correct I'm positive. So is something wrong with my uriworkermap? -Original Message----- From: James Leone [mailto:[EMAIL PROTECTED]] Sent: Saturday, February 10, 2001 12:08 PM To: [EMAIL PROTECTED] Subject: W2k not processing JSP Searc

W2k not processing JSP

2001-02-10 Thread James Leone
Searched through the mail archives and was having no luck getting an answer. I'm tyring to get tomcat working on Win2000 with IIS using the isapi_redirect.dll. I setup the redirect, following the documents step by step, and it seems to be configured fine. For some reason the embedded jsp is not

JVM_recv error

2001-02-07 Thread James Masterman
while to get it at the client end.   Can anyone shed any light on what might be causing this problem??   Thanks   James.

Automatic reloading of modified .jar/.class files

2001-02-03 Thread James Bucanek
ser, and not one that requires root/admin privileges? Thanks in advance, James __ James Bucanek <mailto:[EMAIL PROTECTED]> - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, email: [EMAIL PROTECTED]

RE: Wanted help for Linux Platform.......

2001-01-31 Thread James Diggans
should be pretty straight-forward. - jc ------ -- James C. Diggans Excelsior Technologies, Inc. At what point did we stop [EMAIL PROTECTED] being citizens and start http://www.excel

46 java threads???

2001-01-31 Thread James Diggans
e (since I dont HAVE 460MB of RAM or swap) but is there a reason it's starting 46 threads? And can anyone tell me where I can configure this? It seems .. high. Regards, - j -- -- James C. Diggans Excelsior Techno

Re: Do I need apache for servlet-only use?

2001-01-30 Thread James Jouett
with Tomcat. Thanks "Morris, Cavan" wrote: > Think about how many images your pages will have. They will always be > static (Unless you're actually generating them on the fly), so if you have > more than a few you'll probably want to use apache. > > -Cavan >

Re: Do I need apache for servlet-only use?

2001-01-30 Thread James Jouett
ensure that you are testing in an >environment > that is as close as possible to the production deployment environment. > > Cor > > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On > Behalf Of James Jouett > Sent: Tuesday, January 30, 2001 2:2

Do I need apache for servlet-only use?

2001-01-30 Thread James Jouett
at in standalone mode to service the requests? Any comments would be appreciated. Thanks in advance, James - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, email: [EMAIL PROTECTED]

Working with docBase under Windows 9x

2001-01-21 Thread James Arendt
App's structure... E:\Work\myApp E:\Work\myApp\web-inf E:\Work\myApp\web-inf\web.xml E:\Work\myApp\web-inf\classes Any help would be greatly appreciated. James __ Do You Yahoo!? Yahoo! Auctions - Buy the things you want at

Re: NNTP?

2001-01-20 Thread James Duncan Davidson
On 1/19/01 1:16 PM, "Matt B" <[EMAIL PROTECTED]> wrote: > does Jakarta have an official NNTP site and if not, why not? No. Primarily because we haven't put in the time to make a mail/nntp bridge. -- James Duncan Davidson

RE: Default Apache-Tomcat homepage to a JSP file....

2001-01-17 Thread James Morgenstein
That may work with Tomcat alone, but I cannot seem to get Apache to take a URL such as http://192.168.1.24/ and pass this to Tomcat at rec/HomePage.jsp Any other ideas? Thanks. James -Original Message- From: Damian Penney [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 17, 2001 6

Default Apache-Tomcat homepage to a JSP file....

2001-01-17 Thread James Morgenstein
DirectoryIndex rec/HomePage.jsp As you can see I've even tried doing this with a Redirect with no luck. I've also tried /rec/HomePage.jsp to no avail. FYI, I'm running Apache 1.3.14, Tomcat 3.2, and mod_jk using ajp12. Anyone had any experience with this problem?

Tomcat 4 beta

2001-01-17 Thread James McGinty
I am using tomcat 4 beta on windows NT, and everything seems to work quite well. Is anybody else using Tomcat 4 beta, are there some big problems I haven't hit yet ? james - To unsubscribe, e-mail: [EMAIL PROTECTED

RE: Runaway Apache daemon

2001-01-17 Thread James Morgenstein
12 or AJP13, mod_jk or mod_jserv? Thanks. James -Original Message- From: Cato, Christopher [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 17, 2001 4:29 AM To: '[EMAIL PROTECTED]' Subject: RE: Runaway Apache daemon This happened to me too, when I'd set the v

Runaway Apache daemon

2001-01-16 Thread James Morgenstein
rs to be load related as the higher the load, the more often this occurs. I have tried recompiling mod_jk numerous times. Anyone have any other ideas or experiences? Thanks. James BEGIN:VCARD VERSION:2.1 N:Morgenstein;James;Michael;Mr. FN:James Michael Morgenstein NICKNAME:James ORG:Reco

Re: Pl clear this

2000-12-31 Thread James Duncan Davidson
Well, the ASF isn't trying to make money. There's actually nothing stopping somebody from selling it (as long as they didn't call it Apache Tomcat or some such), but it would make much more sense to simply sell support or some other value add. :) -- James Duncan Davidson

Re: unsubscribe me please

2000-12-28 Thread James Duncan Davidson
On 12/28/00 9:26 PM, "andyjee" <[EMAIL PROTECTED]> wrote: > wrong email address sent! Huh? -- James Duncan Davidson[EMAIL PROTECTED]

Re: unsubscribe me please

2000-12-28 Thread James Duncan Davidson
On 12/28/00 7:08 PM, "Kunal Mehta" <[EMAIL PROTECTED]> wrote: > unsubscribe Send email to [EMAIL PROTECTED] -- James Duncan Davidson[EMAIL PROTECTED]

Re: PleaseUnsubscribe

2000-12-28 Thread James Duncan Davidson
On 12/28/00 3:15 AM, "Ravindran Venkatapathy" <[EMAIL PROTECTED]> wrote: > Please unsubscribe me Please follow the advice I just gave to Mark. -- James Duncan Davidson

Re: unsubscribe me please

2000-12-28 Thread James Duncan Davidson
On 12/28/00 3:10 AM, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > unsubscribe Send email to [EMAIL PROTECTED] -- James Duncan Davidson[EMAIL PROTECTED] !try; do()

Re: Building mod_jk on Mac OS X

2000-12-27 Thread James Duncan Davidson
evelopers hangs out on the httpd list. If you are serious about hacking Apache based C code on Darwin (a *good* thing -- I *love* my MacOS X installation), I'd go check there. -- James Duncan Davidson[EMAIL PROTECTED] !try; do()

RE: SOLVED: apache 1.3.14, tomcat 3.2.1, Linux

2000-12-20 Thread James McGinty
local/apache_1.3.14_bin/libexec/mod_jk.so into server: /usr/local/apache_1.3.14_bin/libexec/mod_jk.so: undefined symbol: map_name_at /usr/local/apache_1.3.14_bin/bin/apachectl start: httpd could not be started " Help! James -Original Message- From: Neil Aggarwal [mailto:[EMAIL PROTECTED]] Sent:

RE: multiple JVMs: how to manage tomcat-apache.conf?

2000-12-18 Thread James Morgenstein
files in the httpd.conf. James -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of George Armhold Sent: Monday, December 18, 2000 1:03 PM To: [EMAIL PROTECTED] Subject: multiple JVMs: how to manage tomcat-apache.conf? With Tomcat 3.1: I'm trying t

Intermittent shutdown failures.

2000-12-17 Thread James Bromberger
"AddressInUse" exception. Do you know what it is? Ta, James -- James Bromberger, Senior Web/Systems Administrator, JDV +61 8 9268 2909, +61 417 322 500 Fax: +61 8 9268 0200 JDV - e-Commerce and Outsourcing Solutions for Financial Services http://www.jdv.com/ Any

Disable directory indexes

2000-12-17 Thread James Bromberger
3.2.1). Ta, James -- James Bromberger, Senior Web/Systems Administrator, JDV +61 8 9268 2909, +61 417 322 500 Fax: +61 8 9268 0200 JDV - e-Commerce and Outsourcing Solutions for Financial Services http://www.jdv.com/ Any securities recommendation contained in this document is

Jakarta-servletapi-3-2-src build.sh

2000-12-12 Thread James Bromberger
karta-servletapi-3.2-src.tar.gz, on Solaris 2.6. Yours, James (Mirror of 3.2.1 at http://www.rcpt.to/~james/2000/tomcat/) -- James Bromberger, Senior Web/Systems Administrator, JDV +61 8 9268 2909, +61 417 322 500 Fax: +61 8 9268 0200 JDV - e-Commerce and Outsourcing Solu

RE: JSP bodycontent?

2000-12-09 Thread James Carman
nyone else seen this? -Original Message- From: Jeff Turner [mailto:[EMAIL PROTECTED]] Sent: Saturday, December 09, 2000 10:43 PM To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: Re: JSP bodycontent? On Sat, 9 Dec 2000, James Carman wrote: > Does Tomcat su

JSP bodycontent?

2000-12-09 Thread James Carman
Does Tomcat support the JSP body content for a BodyTag? In my doAfterBody method (inherited from BodyTagSupport), I return EVAL_BODY_TAG. I have some debug statements in my code, so I can see that the doAfterBody method is called multiple times, but I'm not seeing the html that should be generat

Re: Can't find apxs command

2000-12-07 Thread James Devenish
On Wed, Dec 06, 2000 at 10:40:21AM -0800, Matt Becker wrote: > Hi, I'm trying to compile mod_jk on a Red Hat 7.0 system with the > latest Apache rpm, Tomcat 3.2, etc. but can't find the "apxs" command > anywhere. I'm beginning to wonder if the problems I've had trying to > get Tomcat and Apache wo

Re: Tomcat version

2000-12-06 Thread James Bromberger
When I see a directory index from Tomcat 3.2 final (via HTTP), the last line says: Tomcat Web Server v3.2 (final) There is probably far better ways, but this is one I just noticed... HTH, James jamesATrcpt.to, http://www.rcpt.to/~james/ >>> [EMAIL PROTECTED]

Upgraded to Tomcat 3.2: can't run JSPs

2000-12-06 Thread James Devenish
I upgraded to from Tomcat 3.1 to 3.2 last night (using the binary dist) and now I cannot use my JSPs. I think it might even be worse than that. I have two problems: - only files ending in .jsp are processed as JSPs - when accessing Tomcat and Cocoon pages via an Apache server, pages are outp

Logging Servlet.init() Exceptions on Start-up

2000-12-02 Thread James Klicman
immediately log servlet.init() exceptions? I have tried setting verbosityLevel="DEBUG" and debug="9". I know I could log these exceptions myself using servletContext.log(), it just seems there should be a way to configure Tomcat to do this. Thanks, -James

ServerAlias'

2000-11-30 Thread James Maggs
file? Currently, my Tomcat installation only serves content when requests come in using the host specified in the block whereas requests using the various server aliases generate a 404 error. Any ideas? My system: RedHat 6.2, Apache 1.3.12, Tomcat 3.2 Beta 8. Many thanks, -James

RE: Problem retrieving bean from session....

2000-11-29 Thread James Morgenstein
thoughts on why Tomcat cannot find the session? Any thoughts on why even if I have cookies disabled, Tomcat is trying to set a cookie? Could this have something do with client side caching and/or proxy caches? Thanks. James -Original Message- From: James Morgenstein [mailto:[EMAIL

Problem retrieving bean from session....

2000-11-29 Thread James Morgenstein
session. I have started logging the session ids and cookies to a log file and there may be some mismatch here. Thoughts? Thanks for the help. James M. Morgenstein BEGIN:VCARD VERSION:2.1 N:Morgenstein;James;Michael;Mr. FN:James Michael Morgenstein NICKNAME:James ORG:Recommend-It;Technology

mod_jk Garbled?

2000-11-28 Thread James Maggs
e DSO. Can anyone help me out with this?   Many thanks,   -James

RE: Strange Session Behavior....

2000-11-24 Thread James Morgenstein
most users, but in a few cases, I am getting this bean instantiation error Thanks for the help. James -Original Message- From: Ralph Einfeldt [mailto:[EMAIL PROTECTED]] Sent: Thursday, November 23, 2000 2:48 AM To: '[EMAIL PROTECTED]' Subject: AW: Strange Sessio

RE: URL Rewriting status

2000-11-24 Thread James Morgenstein
I have had success in using URL rewriting in 3.2b8. -Original Message- From: Milan Adamovic [mailto:[EMAIL PROTECTED]] Sent: Wednesday, November 22, 2000 3:15 PM To: [EMAIL PROTECTED] Subject: FW: URL Rewriting status What is the latest status of URL Rewriting on port 80? Has this bug

Strange Session Behavior....

2000-11-22 Thread James Morgenstein
y (however, it works fine for the vast majority of my users) 2) Can the session be getting destroyed by some other outside influence? 3) Thanks for the help. James

Re: tomcat 4.0 m4: ParseException: Cannot read file: ze file

2000-11-13 Thread James Cook
It appears to be an error that occurs while parsing jar files. ze probably refers to a ZipEntry object. Perhaps, one or more of your jar files are corrupt? jim - Original Message - From: "Christian Mallwitz" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, November 13, 2000 8:36

Re: Setting JAVA_HOME path on Linux 7.0

2000-11-10 Thread James Harman
rver, it requires /sbin/./shutdown -h now > > The only difference I can tell between the two Linux version is the ENV(6.2) > vs BASH_ENV(7.0) > > Can someone help? > Thanks. > > > > James Harman Requisite Technology [EMAIL PROTECTED] -- For Technical Support, email: [EMAIL PROTECTED] phone: 303-474-2288

Re: archive on the web ????

2000-11-09 Thread James Harman
http://mikal.org/interests/java/tomcat/index.html (this is the link on the jakarta page) James On Thu, 9 Nov 2000, Yin Tse wrote: > Hi all, > Is there an archive of this mail discussion somewhere on the web ? Thanks > all. >

RE: jars in WEB-INF/lib

2000-11-06 Thread James Cribb
| From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] | To: [EMAIL PROTECTED] | Subject: jars in WEB-INF/lib | | | For JASPER to compile JSPs is it enough to simply have my | jars in the lib directory. These are implicitly known to the | classloader right? | | ie. I do not have to have these ja

RE: using postgres jdbc driver in tomcat

2000-11-02 Thread James Cribb
| From: Joakim Verona [mailto:[EMAIL PROTECTED]] | Subject: using postgres jdbc driver in tomcat | | im using the postgress jdbc driver in tomcat, with the poolman | connection pooling package. | | it works well, but there is a strange limit on the lengths of texts | that are possible to insert,

Tomcat NT headaches...

2000-11-02 Thread Iuliano, James
JDK on the box. I don't understand why it wants 1.2 on NT, but its OK with 1.3 on Windows2000. Thanks. James Iuliano Technical Lead 425-893-7242 mailto:[EMAIL PROTECTED]

RE: clarification of my understanding of tomcat

2000-10-27 Thread James House
Yes, if your jvm running tomcat is 1.2 then your code runs in a 1.2 jvm ... in fact, it's the same jvm. I don't know what 1.2 dependencies that tomcat may or may not have. Though I gather that some people do run it on 1.1.8 James -Original Message- From: Mike Haberman [mai

RE: clarification of my understanding of tomcat

2000-10-27 Thread James House
with tomcat. James -Original Message- From: Mike Haberman [mailto:[EMAIL PROTECTED]] Sent: Friday, October 27, 2000 3:08 PM To: [EMAIL PROTECTED] Subject: clarification of my understanding of tomcat Can someone tell me if it's possible to mix web applications that have been build

RE: How do I add another webapp?

2000-10-25 Thread James Cribb
Are you sure about this?? This is the first mention I've ever heard of uriworkermap.properties in all the mailing list discussions about adding new contexts and servlets. Where is this documented?? -Original Message- From: Steve Haines [mailto:[EMAIL PROTECTED]] Sent: Thursday, 26 Octo

RE: Queries about viability on using Tomcat

2000-10-23 Thread James Cribb
The emphasis with Tomcat is more about faithfully implementing the latest servlet and JSP specifications than beating its commercial competition. JServ implements an older version of the servlet spec, but otherwise is a better product, IMHO. -Original Message- From: John Bateman [mailto:[

RE: jdbc/Class not found exeption

2000-10-23 Thread James Cribb
The driver class is "org.postgresql.Driver". WARNING: The Postgresql 7.0.2 documentation is out of step with the current JDBC driver in many other aspects too, e.g., which PreparedStatement and ResultSet methods are implemented. I couldn't get the Postgresql JDBC driver registered with the JDBC

<    4   5   6   7   8   9