Hijacking the coyote connector

2005-10-11 Thread Dobbins, Michael G
In tomcat 5.0.28, we were able to replace the coyote connector using a className setting in the connector in server.xml. In tomcat 5.5.9 it looks like className is ignored. Looking at the source, it looks like the Connector is hardcoded in. Is this the case or am I missing something? My next

useBeans problem

2005-10-05 Thread Michael Pope
Why am I getting this error? How do I get a simple javabean example working with JSP under tomcat? -- Michael - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: useBeans problem

2005-10-05 Thread Michael Pope
Ok i found two other installations of JDK on the machine. I'm going to make sure that the only JDK i have installed on here is JDK1.5.0_p2 Michael Caldarale, Charles R wrote: From: Michael Pope [mailto:[EMAIL PROTECTED] Subject: useBeans problem I'm new to JSP and still getting used

VS: isapi_redirector and danish chars

2005-09-27 Thread Michael Salmon
Hi Mark, Tomcat 5.5.9 and redirector 1.2.14 running on Win2000. /Michael -Oprindelig meddelelse- Fra: Mark Thomas [mailto:[EMAIL PROTECTED] Sendt: 26. september 2005 22:42 Til: Tomcat Users List Emne: Re: isapi_redirector and danish chars Michael Salmon wrote: Hi everybody I

isapi_redirector and danish chars

2005-09-26 Thread Michael Salmon
help would be appreciated. Regrads Michael Salmon

Re: Why doesn't my context work?

2005-09-26 Thread Michael Sullivan
On Sun, 2005-09-25 at 23:21 -0700, Mark Eggers wrote: --- Michael Sullivan [EMAIL PROTECTED] wrote: Right now I use symlinks to my individual users' website directories, but now that I've discovered Alias I'll probably switch completely to using Aliases. Good. I created

Re: Why doesn't my context work?

2005-09-25 Thread Michael Sullivan
On Fri, 2005-09-16 at 19:31 -0700, Mark Eggers wrote: --- Michael Sullivan [EMAIL PROTECTED] wrote: OK. For clarification I am running tomcat-5.0.27-r6. I want user's tomcat files to be read from /home/*/webspace/webapps. My personal account is michael so my personal tomcat

Re: Resizing JPEG Images

2005-09-20 Thread Michael Wirz
Hello, This is what I use for the given problem. I found it on the web and it fits my needs, so perhaps you'd like to use it as well Best wishes from near Munich, Germany, Michael Wirz import com.sun.image.codec.jpeg.*; import java.awt.*; import java.awt.image.*; import java.io.*; public

Cannot forward after response has been committed

2005-09-19 Thread Michael Lai
I have a jsp page that processes a login. The (simplified) code is something like this: %@ page language=java% % String userid = request.getParameter(userid); String pw = request.getParameter(pw); /* code to check user id and password */ if (user not found) pageContext.forward(login.jsp);

Re: Cannot forward after response has been committed

2005-09-19 Thread Michael Lai
is in java not in html Yep, looks ugly. What is even worse is code that sends a redirect and does NOT do a return. -Original Message- From: Michael Lai [mailto:[EMAIL PROTECTED] Sent: Monday, September 19, 2005 10:17 PM To: Tomcat Users List Subject: Cannot forward after response has been

Re: Cannot forward after response has been committed

2005-09-19 Thread Michael Lai
I put a 'return' statement after every 'forward' statement in all my jsp pages and now it seems to be working. Thanks for your feedback. Actually, my linebreak occurs in the % % tags. I think my email client might have reformatted my output before sending. [EMAIL PROTECTED] wrote: You

RE: Please take my address out of your mailing list !

2005-09-16 Thread Michael Sullivan
On Fri, 2005-09-16 at 09:00 +0200, Jan Fredrik Fallsen wrote: place the url below in the to field and send it [EMAIL PROTECTED] -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: 16. september 2005 08:40 To: Tomcat Users List Subject: Please take my

Why doesn't my context work?

2005-09-16 Thread Michael Sullivan
/localhost. I made home.xml by copying admin.xml and altering it. Here are the contents of home.xml: Context path=/user appBase=/home docBase=michael/webspace/webapps debug=0 privileged=true /Context If I understand this correctly, when I ask for www.espersunited.com/user/index.jsp

Re: Why doesn't my context work?

2005-09-16 Thread Michael Sullivan
and docBase in your context file (and I don't think appBase is appropriate in a context node - at least in 5.5.9), you could use an absolute path for docBase: /home/michael/webspace/webapps/user This means that the following URL would potentially work. www.espersunited.com/user

How to define paths to inidividual user directories

2005-09-15 Thread Michael Sullivan
to map this with Tomcat. I find Tomcat mapping very confusing. Can anyone help me with this? -Michael Sullivan- - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Cannot connect to database using DataSource

2005-09-14 Thread Michael Lai
with the DataSource alternative. Michael. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: How to serve just JSP (was: Re: JSP on RHEL4 with Apache httpd RPM?

2005-09-14 Thread Michael Lai
Peter Flynn wrote: If you have a tomcat webapp that serves jsp's such as http://localhost:8080/mywebapp, then you can map jsp requests to that webapp using JkMount /mywebapp/*.jsp Ah...this exposes the gap in my understanding. Where do I get a tomcat webapp that serves jsp's? This is

Re: How to serve just JSP (was: Re: JSP on RHEL4 with Apache httpd RPM?

2005-09-14 Thread Michael Lai
KEREM ERKAN wrote: OK, start with downloading and installing a binary version of Tomcat for your OS and also download the 1.2.10 version of mod_jk. I think we should handle the rest off list not to bother the list anymore. Just to give you another option if you like. I don't even use

Where to put context.xml?

2005-09-13 Thread Michael Lai
This is probably an obvious question to most but I am new with tomcat 5.5 so I am still trying to figure things out. I want to create a web project with the document base in /home/tomcat/applications as opposed to the normal webapps folder. This is what I have in my server.xml: Server

Re: Where to put context.xml?

2005-09-13 Thread Michael Lai
to inform tomcat that I have a project in this folder? Michael. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Where to put context.xml?

2005-09-13 Thread Michael Lai
Allistair Crossley wrote: Hi, The docBase is just the folder where your web applications are located. You need to have a folder in applications for your web application. For the empty path application this is /ROOT. Thus Context path=/ROOT docBase=/home/tomcat/applications/ debug=0

Re: Where to put context.xml?

2005-09-13 Thread Michael Lai
Caldarale, Charles R wrote: To again quote from the Tomcat doc for the path attribute of the Context element: The value of this field must not be set except when statically defining a Context in server.xml, as it will be infered [sic] from the filenames used for either the .xml context file or

RE: Memory leak in Tomcat

2005-09-12 Thread Michael Oliver
to avoid out of memory exceptions. I added physical memory and the problems all but went away, however it still occurs just less frequently. I am using j2sdk1.4.2_09 Tomcat-5.0.28 On Windows XP Pro sp1 Michael Oliver CTO Alarius Systems LLC 6800 E. Lake Mead Blvd, #1096 Las Vegas, NV 89156 Phone

RE: putting files with webdav

2005-09-05 Thread Michael Oliver
Look in the /webapps/webdav/WEB-INF/web.xml You should see where you need to uncomment things to enable writing. Michael Oliver CTO Alarius Systems LLC 6800 E. Lake Mead Blvd, #1096 Las Vegas, NV 89156 Phone:(702)643-7425 Fax:(702)974-0341 *Note new email changed from [EMAIL PROTECTED

Installing JavaServer Faces

2005-09-02 Thread Michael Thomsen
Hi, could someone tell me if there is any difference between installing any of the implementaitons of JavaServer Faces in Tomcat and doing it in Sun's Application Server? I remember reading somewhere that their server is based on Tomcat, so I was unsure. Any help would be appreciated.

Re: errors building tomcat5 from source

2005-09-01 Thread Michael P. Soulier
surprise. Mike -- Michael P. Soulier [EMAIL PROTECTED], 613-592-2122 x2522 Linux applications development ...the word HACK is used as a verb to indicate a massive amount of nerd-like effort. -Harley Hahn, A Student's Guide to Unix smime.p7s Description: S/MIME Cryptographic Signature

Re: errors building tomcat5 from source

2005-09-01 Thread Michael P. Soulier
, but normally when you download a source tarball, it's full of code that does not need additional downloading. This build scheme seems very odd to me, and would seem to play havoc with load reproduceability. Mike -- Michael P. Soulier [EMAIL PROTECTED], 613-592-2122 x2522 Linux applications

errors building tomcat5 from source

2005-08-31 Thread Michael P. Soulier
: The following error occurred while executing this line: /home/msoulier/temp/jakarta-tomcat-5.5.9-src/jakarta-tomcat-5/build.xml:1911: Error while expanding /home/msoulier/tomcat/file.zip It fails here, as apparently this zip file is not a zip file. Any suggestions? Thanks, Mike -- Michael P

IIS connector problem

2005-08-30 Thread Michael Dillon
I'm using Tomcat 5.5.9 and IIS 6 on a Windows 2003 machine. Isapi_redirect.dll (version 1.2.14) seems to work if use a full url such as this: http://localhost/jsp-examples/index.html All the various jsp examples work. However, if I don't fully specify a document, such as

Re: Does Tomcat run better on Linux or Windows?

2005-08-30 Thread Michael Kleinhenz
is listed as a common error that occurs in many different situations. Great. -- Michael -- Michael Kleinhenz tarent GmbH . Bahnhofstr. 13 . 53123 Bonn fon +49 (228) / 52 67 5-0 . fax +49 (228) / 52 67 5-25 - To unsubscribe, e

Re: session problems: www.blahblah.com versus blahblah.com

2005-08-16 Thread Michael Teter
, Peter Rossbach [EMAIL PROTECTED] wrote: Hey Michael, I look inside the tomcat source and find that we don't set the cookie hostname attribute. That means that the calling client/browser must made the hostname handling. I also thing the redirect way is currently right direction. Peter Paul

SV: Virtual Hosting with WAR files

2005-08-16 Thread Michael Salmon
Hi I am having the same problem. I tried to use Pete's recipe, but all I get is the default Tomcat page. I am setting up on win2003. Thanks Michael -Oprindelig meddelelse- Fra: Pete Stevens [mailto:[EMAIL PROTECTED] På vegne af Pete Stevens Sendt: 16. august 2005 17:07 Til: Tomcat

Re: jboss-tomcat bind issue

2005-08-15 Thread Michael Tria
of the localhost IP address (see netstat output below)? --- Wade Chandler wrote: Got a firewall turned on? Wade --- Michael Tria [EMAIL PROTECTED] wrote: Please let me know if you think this e-mail belongs on a JBoss list instead of this one... Problem === JBoss 4.0 bundled with Tomcat 5.5

session problems: www.blahblah.com versus blahblah.com

2005-08-15 Thread Michael Teter
Howdy. I'm having some problems with sessions. If my users come to blahblah.com, then go away, then return, they get a new session id (for www.blahblah.com). But if they come to www.blahblah.com, leave, and return (via link from external site), they keep the same session. I finally discovered

Re: session problems: www.blahblah.com versus blahblah.com

2005-08-15 Thread Michael Teter
Peter Michael Teter schrieb: Howdy. I'm having some problems with sessions. If my users come to blahblah.com, then go away, then return, they get a new session id (for www.blahblah.com). But if they come to www.blahblah.com, leave, and return (via link from external site

Re: session problems: www.blahblah.com versus blahblah.com

2005-08-15 Thread Michael Teter
they are interacting with the webapp. Ta Matt -Original Message- From: Michael Teter [mailto:[EMAIL PROTECTED] Sent: 15 August 2005 21:05 To: Tomcat Users List Cc: [EMAIL PROTECTED] Subject: Re: session problems: www.blahblah.com versus blahblah.com I tried that, but it's

jboss-tomcat bind issue

2005-08-14 Thread Michael Tria
Please let me know if you think this e-mail belongs on a JBoss list instead of this one... Problem === JBoss 4.0 bundled with Tomcat 5.5, out of the box, will not bind to port 8080 for all interfaces. i.e. I can telnet to the port from the localhost, but not from outside. Please let me

Re: Max thread/session timeouts

2005-08-11 Thread Michael Kleinhenz
by a slower thread handling. An engineer from Red Hat will try to optimize that tomorrow.. -- Michael On Fri, Jul 22, 2005 at 11:23:24AM +0200, Michael Kleinhenz wrote: Peddireddy, your mail is very informative. we have a very similar set up (4 Xeon processors 3.5 GB Ram and WIn2003 Standard

Strange mrf files generated in tomat temp directory

2005-07-29 Thread Holly, Michael
. They seem to be using the same File.createTempFile() facility because they all have a prefix followed by a 3 to 5 digit number and then .tmp ( mrf2393.tmp or mrf40389.tmp) Where do these files come from? Thanks Michael

Re: Max thread/session timeouts

2005-07-22 Thread Michael Kleinhenz
15000 concurrent connections for my project. I also have 3 2xXeon servers here, but windows (or anything else) doesn't allow more than ~8000 connections until it dies. -- Michael -- Dipl.-Technoinform. Michael Kleinhenz tarent GmbH . Bahnhofstr. 13 . 53123 Bonn fon +49 (228) / 52 67 5-0 . fax +49

Re: Max thread/session timeouts

2005-07-21 Thread Michael Kleinhenz
-by-clicking ;-) -- Michael -- Dipl.-Technoinform Michael Kleinhenz tarent GmbH . Bahnhofstraße 13 . 53123 Bonn fon: +49 (228) / 52 67 5-0 fax: +49 (228) / 52 67 5-25 - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: java.library.path when running as a service

2005-07-13 Thread Michael Ivanov
that the PATH for the service is, indeed, including that dir? PATH management for services is a pain. Look up -delayload in the Win32 link.exe doc, and follow from there into the hooks. -Original Message- From: Michael Ivanov [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 12, 2005

Re: java.library.path when running as a service

2005-07-13 Thread Michael Ivanov
services as once. The tomcat service integration does not include any help in this area. -Original Message- From: Michael Ivanov [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 13, 2005 12:51 PM To: Benson Margulies; tomcat-user@jakarta.apache.org Subject: Re: java.library.path when

java.library.path when running as a service

2005-07-12 Thread Michael Ivanov
for the DLL. Thanks in advance for any suggestions. Michael Ivanov Tomcat 5.5.7 Windows XP - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: java.library.path when running as a service

2005-07-12 Thread Michael Ivanov
/05, Benson Margulies [EMAIL PROTECTED] wrote: Due to a bug in the JRE/JVM, your dependent DLLs have to either be in PATH or in the directory containing java.exe. My personal favorite solution to this is to use the delay loader hook to get around it. -Original Message- From: Michael

Re: Problem when a click a button that it execute a servlet n times

2005-07-11 Thread Michael Jouravlev
=submit onclick=SubmitForm(); name=param_submit value=Submit This Form / /form Michael. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Tomcat login logout hook ?

2005-07-08 Thread Michael Echerer
Cheers, Michael Dongsheng Song - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] - To unsubscribe, e

Re: generate image by servlet for large amount of requests

2005-07-08 Thread Michael Jouravlev
On 7/7/05, Tony Smith [EMAIL PROTECTED] wrote: Let's think about maps.yahoo.com. I do not know how they handle millions of request and generate the map pictures quickly. For simpler and more formal images like bar charts you can return javascript and render image in browser. Michael

Re: Turning off jsessionid on URL?

2005-07-07 Thread Michael Jouravlev
will come clean. Michael. On 7/7/05, William Stranathan [EMAIL PROTECTED] wrote: Is there a configuration parameter to ONLY send the jsessionid by cookie, not on the URL bar? Picture this, user goes to your site http://www.yoursite.com/yourapp yoursite redirects to the menu page, which gives

Re: No more than 500 threads on Windows 2003?

2005-07-01 Thread Michael Kleinhenz
with Debian and 5.0.28+1.4.2 without problems. Seems to me like a Windows problem, but I can't find anything in the docs nor via Google.. ;-( Windows sucks.. -- Michael delbd schrieb: Just by curiosity, does it have something like '511 Threads is ok but 512 fails?' :D Le Jeudi 30 Juin 2005 15:09

Re: No more than 500 threads on Windows 2003?

2005-07-01 Thread Michael Kleinhenz
as far as I know, the concept of green and native threads only applies to Unix systems...? -- Michael On Fri, Jul 01, 2005 at 10:44:38AM +0200, delbd wrote: Maybe you could switch the jvm to green threads ? Le Vendredi 1 Juillet 2005 09:57, Michael Kleinhenz a écrit : maybe. I can't

No more than 500 threads on Windows 2003?

2005-06-30 Thread Michael Kleinhenz
?? Hardware is not an issue, I think.. (dual Xeon 3,4GHz, 4GB).. Thanks, Michael -- Michael Kleinhenz tarent GmbH . Bahnhofstr. 13 . 53123 Bonn fon +49 (228) / 52 67 5-0 . fax +49 (228) / 52 67 5-25 - To unsubscribe, e-mail: [EMAIL

Re: how to replace j_security_check

2005-06-26 Thread Michael Echerer
Michael - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

pooling for java.net.SocketException: Broken pipe connections?

2005-06-23 Thread Michael Zurke
hi, i wonder what tomcats connection pool does when an org.postgresql.util.PSQLException: An IO erro occured while sending to the backend - Exception: java.net.SocketException: Broken pipe exception occurs. will the pool recognize this and get rid of the broken connection? thanx, mischa

Re: http session lost between struts action

2005-06-23 Thread Michael Jouravlev
of page directive Session is created in action class, if you access session object and set it to auto-create, if session is not there yet. Session is created in JSP, if you do not explicitly clear session attribute of page directive; by default session attribute is set. Michael

Re: Is Tomcat is an application server ?

2005-06-22 Thread Michael Echerer
application server as all parts of the spec are implemented, Tomcat is not as only parts are covered. Cheers, Michael - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

jsp:include and in-server forward from included resource

2005-06-21 Thread Michael Jouravlev
. It would be great if Tomcat could do this too. Maybe with some kind of switch or setting. If anyone from this group has a chance to influence JSP spec, or can point me the direction where I can address my concerns, I would be grateful for help. Thanks, Michael

Re: isRequestedSessionIdFromURL() returns false

2005-06-17 Thread Michael Jouravlev
I already tried it, and it did not work. Session ID is separated by semicolon, not by question mark or ampersand. It is treated differently and is not shown as URL parameter. Thanks anyway. On 6/16/05, Jon Wingfield [EMAIL PROTECTED] wrote: Something like this maybe: String url =

isRequestedSessionIdFromURL() returns false

2005-06-16 Thread Michael Jouravlev
() return true, but isRequestedSessionIdFromURL() returns false. It seems that isRequestedSessionIdFromURL() should return true. Is this a bug? I am using Tomcat 4.1.31. Michael. - To unsubscribe, e-mail: [EMAIL PROTECTED

Re: isRequestedSessionIdFromURL() returns false

2005-06-16 Thread Michael Jouravlev
location to clean URL up. After redirection URL will be clean, because session ID will be contained in cookie only. I need to do this only once. With isRequestedSessionIdFromURL() returning false I cannot do what I need :-( Any ideas? Michael. Interesting question. The Servlet 2.3 spec says

Concurrent login detection - how?

2005-06-14 Thread Michael Mehrle
! Michael - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Concurrent login detection - how?

2005-06-14 Thread Michael Mehrle
That actually goes to the heart of my question: HOW do I detect when their session times out? ;-) I know the 'strategy' of doing this, but I don't know how to capture a timed-out session - technically. Any input would be welcome. TIA, Michael - Original Message - From: David Rickard

RE: Servlet Concurrency Issues

2005-06-08 Thread Michael Pasko
[mailto:[EMAIL PROTECTED] Sent: Tuesday, June 07, 2005 1:15 PM To: Tomcat Users List Subject: RE: Servlet Concurrency Issues From: Michael Pasko [mailto:[EMAIL PROTECTED] Subject: Servlet Concurrency Issues I started allowing other users on it, I stumbled on some problems. Basically what

tomcat causes servlet malfunction???

2005-06-08 Thread Michael Echavez
you and Good day! Regards, michael

Re: tomcat causes servlet malfunction???

2005-06-08 Thread Michael Echavez
it is located in the \web\WEB-INF\classes\chapter2 directory. On 6/9/05, Ben Souther [EMAIL PROTECTED] wrote: Where is the servlet's class file? On Wed, 2005-06-08 at 11:35, Michael Echavez wrote: i didnt use the invoker here. ive explicitly mapped my servlet with that url. below

Servlet Concurrency Issues

2005-06-07 Thread Michael Pasko
I've recently developed a servlet that connects to an AS/400, and returns results off an sql query based off criteria submitted by a form. I've had pretty much exclusive use of the Tomcat server during development, but when I started allowing other users on it, I stumbled on some problems.

Re: ssl traffic between apache and tomcat via mod_jk

2005-06-05 Thread Michael Echerer
Apache and Tomcat an issue at all? Usually/Hopefully you're already in a secure environment with your Apache behind a firewall etc. Cheers, Michael Thank You in advance, Liz - To unsubscribe, e-mail: [EMAIL PROTECTED

tomcat newbie : cant make a simple servlet work

2005-06-04 Thread Michael Echavez
Greetings everyone! I'm a newbie with Tomcat and i've already been trying out a simple server example for about 2 days now and still it wouldnt work. I really hope someone would help me out. Specifications: 1. operating system : windows xp sp2 2. java : jdk 1.5 3. tomcat : version 5.5 *i'm

Could not find a worker error

2005-06-03 Thread Michael Thompson
you very much for any help you can give. Michael Thompson - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: [Tomcat] Web Traffic Analisys Tool

2005-05-21 Thread Michael Echerer
://awstats.sourceforge.net/docs/awstats_compare.html Cheers Michael - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: {Problems getting Tomcat running on OS 10.3.9)

2005-05-19 Thread Michael Mehrle
Have you installed that extra lib that allows one to run tomcat 5.5.x on jdk 1.4.x? Otherwise you'll need to update to jdk 1.5... Michael - Original Message - From: Christopher Barbee [EMAIL PROTECTED] To: tomcat-user@jakarta.apache.org Sent: Thursday, May 19, 2005 6:11 PM Subject

Re: Tomcat vs Apache

2005-05-18 Thread Michael Mehrle
Apache is not a J2EE container - you are off-roading on this one ;-) Michael - Original Message - From: Chris [EMAIL PROTECTED] To: Tomcat Users List tomcat-user@jakarta.apache.org Sent: Wednesday, May 18, 2005 7:37 AM Subject: Tomcat vs Apache I've been working with Tomcat for a while

Can a servlet receive its own request?

2005-05-18 Thread Michael Mehrle
data to the database. Notes: - The servlet is not the default servlet on that tomcat instance. - Everything happens via https and I expect the outside server will listen on 443 and tomcat on 8443 ANY suggestions would be very helpful - this seems to be a tricky one. TIA, Michael

CORRECTION: Can a servlet receive a response to its own request?

2005-05-18 Thread Michael Mehrle
data to the database. Notes: - The servlet is not the default servlet on that tomcat instance. - Everything happens via https and I expect the outside server will listen on 443 and tomcat on 8443 ANY suggestions would be very helpful - this seems to be a tricky one. TIA, Michael

Re: Can a servlet receive its own request?

2005-05-18 Thread Michael Mehrle
to receive the response to its own request, and it appears that HTTPClient might enable the servlet to do this. Michael - Original Message - From: Frank W. Zammetti [EMAIL PROTECTED] To: Tomcat Users List tomcat-user@jakarta.apache.org Cc: Tomcat Users List tomcat-user@jakarta.apache.org Sent

Re: Can a servlet receive its own request?

2005-05-18 Thread Michael Mehrle
on the right track now. Many thanks to everyone who replied to my post - every input was very valuable. Michael - Original Message - From: Robert r. Sanders [EMAIL PROTECTED] To: Tomcat Users List tomcat-user@jakarta.apache.org Sent: Wednesday, May 18, 2005 1:08 PM Subject: Re: Can a servlet

shutdown script error

2005-05-17 Thread Fay, Michael
Getting the following error on the shutdown script with tomcat 5.5.7: soyuz-test 16 15:14:11 /usr/local/tomcat/jakarta-tomcat-5/build/bin % sudo ./shutdown.sh Using CATALINA_BASE: /usr/local/tomcat/jakarta-tomcat-5/build Using CATALINA_HOME: /usr/local/tomcat/jakarta-tomcat-5/build

Re: Illegal IMail List Server Command!

2005-05-17 Thread Michael McQuade
Anyway to BLOCK THIS, its really peeing me off here... - Original Message - From: List Server [EMAIL PROTECTED] To: tomcat-user@jakarta.apache.org Sent: Monday, May 16, 2005 6:13 PM Subject: Illegal IMail List Server Command! New Atlanta List Server General Help File

Re: No such list! s (AM I THE ONLY ONE GETTING THIS SPAM)?

2005-05-17 Thread Michael Mehrle
No, you're not the only one - and if they don't clean up their act soon, I'll simply unsubscribe. Fu.ing annoying! Michael - Original Message - From: Guy Katz [EMAIL PROTECTED] To: Tomcat Users List tomcat-user@jakarta.apache.org Sent: Monday, May 16, 2005 10:46 PM Subject: RE

Scheduled task in tomcat - how?

2005-05-17 Thread Michael Mehrle
input on one or more of these questions would be appreciated. Michael - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Scheduled task in tomcat - how? 2

2005-05-17 Thread Michael Mehrle
would be my very last resort... Michael - Original Message - From: Michael Mehrle [EMAIL PROTECTED] To: Tomcat Users List tomcat-user@jakarta.apache.org Sent: Tuesday, May 17, 2005 3:32 PM Subject: Scheduled task in tomcat - how? I need to create an automated task in tomcat that gets

Scheduled task in tomcat - how?

2005-05-17 Thread Michael Mehrle
or more of these questions would be appreciated. Michael - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: question about load-on-startup in web.xml

2005-05-12 Thread Michael Oliver
webappX get the singleton and look for webappY/loading. If it is still there sleep and check again later. When webappY is finished starting it removes the 'loading' from the Hashtable of the singleton and when webappX sees it is gone, it continues. Michael Oliver CTO Alarius Systems LLC 6800 E

error trying to run a jsp

2005-05-10 Thread Fay, Michael
We are getting the following error when trying use a jsp, either directly through tomcat, or through apache with the tomcat connector: type Exception report message description The server encountered an internal error () that prevented it from fulfilling this request. exception

RE: error trying to run a jsp

2005-05-10 Thread Fay, Michael
a jsp Please check If the directory /usr/local/tomcat/jakarta-tomcat-5/build/work/Catalina/localhost/ has write permission for wwwrun user ? Guru -Original Message- From: Fay, Michael [mailto:[EMAIL PROTECTED] Sent: 10 May 2005 17:17 To: 'Tomcat Users List' Subject: error trying to run

RE: error trying to run a jsp

2005-05-10 Thread Fay, Michael
I just realized that root owned everything under work. When I changed it to tomcat, it works now. Thanks. -Original Message- From: Fay, Michael Sent: Tuesday, May 10, 2005 9:36 AM To: 'Tomcat Users List' Subject: RE: error trying to run a jsp Both tomcat and httpd have write

Re: Simple JavaBeans applications not working (newbie question)

2005-05-09 Thread Michael Strorm
--- Wendy Smoak [EMAIL PROTECTED] wrote: Before you continue, you might shut down Tomcat and delete the 'work' directory associated with this webapp to make sure you're starting fresh. (I assume such a thing exists in version 5, I'm still using 4.1.) The work directory still exists in

Re: Simple JavaBeans applications not working (newbie question); FIXED!

2005-05-08 Thread Michael Strorm
--- Anoop kumar V [EMAIL PROTECTED] wrote: Everything works perfectly fine in your jsp and bean except that the package mentioned in your bean (Beany.java) file seems incorrect Aaawwrrgh! (Bangs head against wall several dozen times) Thank you. That was such a stupid mistake; I

Re: Pass parameter to the JVM at startup

2005-05-07 Thread Michael Echerer
Looking back I was starting Tomcat from inside Eclipse with the Sysdeo Tomcat Plugin which apparently doesn't use the tomcat startup scripts, i.e., it bypasses startup.sh so it never sees -server. When I started tomcat manually via the cli with startup.sh with the JAVA_OPTS in catalina.sh it

Re: Tomcat 5 slow, it's in production, please help!

2005-05-07 Thread Michael Echerer
Oto Bossert wrote: Yoo, Yes switch to jk2 is faster! But unsupported! Development of mod_jk1.x is going on, but not jk2. I wouldn't advise anyone to select something uncontinued. I set the session timeout time to 5 minutes, but in the session view of tomcat manager, I see message 30 - 40

Simple JavaBeans applications not working (newbie question)

2005-05-07 Thread Michael Strorm
Hi, First off, let me apologise for the level of detail in this message; if possible, I'd have made it shorter. Anyway, I'm trying to learn J2EE; Tomcat seemed like a good choice to learn the underlying technology, rather than a particular JSP/Servlet container's deployment tool. I can get

InvocationTargetException

2005-05-06 Thread Michael Oliver
I am running Tomcat 5 on XP and after deploying a new war file, which worked, and was the only change I made, the next time I rebooted the machine (after all it is XP) this is what I get: 156593 INFO [main] core.StandardHostDeployer - Processing Context configuration file URL

Re: Pass parameter to the JVM at startup

2005-05-06 Thread Michael Echerer
Michael Echerer wrote: Shouldn't it have the -server in there if it is running in server mode? How can I tell that the JVM is actually running in server mode? well, not sure if you can. I'd try java.lang.System.getProperties() or something... Yupp... works... Just run my junitreport via

Re: Common vs. Shared

2005-05-06 Thread Michael Echerer
specific data types you could face problems like instanceof returning false although using the same class because objects might be loaded by different classloaders (and instanceof and casting only works within the same classloader). Cheers, Michael

Re: Pass parameter to the JVM at startup

2005-05-05 Thread Michael Echerer
You can also increase the memory settings here, e.g. -server -Xms512m -Xmx1024m or whatever other jvm options you need. Thanks Cheers, Michael Acacio Furtado Costa Pesquisa e Tecnologia GIA - Magnesita S/A * [EMAIL PROTECTED

Re: upgrading a servlet

2005-05-05 Thread Michael Echerer
Zohar Amir wrote: Hello, I'm using Tomcat 5.0.28 on Red Hat linux. What is the correct procedure to deploy a new version of the same servlet? Just build redeploy the webapp containing the new servlet, if you don't need the new and old version at the same time. servlet-mapping in your web.xml

Re: Loading JAR changes without redeploy.

2005-05-05 Thread Michael Echerer
Eduardo Lobo wrote: Hi, I have this problem: I need to make a web application that read some resources(xml files) from JAR files (located in the shared/lib folder), but I need to update constantly the JARs content, then I need that the web application always gets the last JAR files

Common vs. Shared

2005-05-05 Thread Michael Oliver
I am quite sure this has been asked and answered but I googled a bunch of combinations and didnt find the answer, so I am sure someone here will know and share. What is the difference between the /common/ and /shared/ I understand this is a class loader issue, and I have read the

RE: Common vs. Shared

2005-05-05 Thread Michael Oliver
Oh I completely agree it is bad practice, but alas I must deal with applications that are not my design and dealing with these conflicts is a royal pain in my non-royal ass. Michael Oliver CTO Alarius Systems LLC 6800 E. Lake Mead Blvd, #1096 Las Vegas, NV 89156 Phone:(702)643-7425 Fax:(702)974

Re: Pass parameter to the JVM at startup

2005-05-05 Thread Michael Echerer
this changing with the Tomcat manager app. Cheers, Michael - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

  1   2   3   4   5   6   7   8   9   10   >