Re: Currently running page requests

2004-09-15 Thread Lee Howard
sage - From: Joe Gooch <[EMAIL PROTECTED]> Date: Wed, 15 Sep 2004 15:10:22 -0400 Subject: RE: Currently running page requests To: CF-Talk <[EMAIL PROTECTED]> I concur. I've modified the code to show the exception, it seems endPoint.getRequestURI(),endPoint.getRemoteHost(),

RE: Currently running page requests

2004-09-15 Thread Joe Gooch
ECTED] Sent: Tuesday, September 14, 2004 9:14 PM To: CF-Talk Subject: Re: Currently running page requests When this part of the JSP runs for (int i=0;i out.println("i: " + i + ""); try { jrunx.scheduler.WorkerThread t = (jrunx.scheduler.WorkerThread)threads[i]; jrun.servlet.

Re: Currently running page requests

2004-09-14 Thread Douglas Knudsen
that is having issue with the caste jrunx.scheduler.WorkerThread t = (jrunx.scheduler.WorkerThread)threads[i]; Doug - Original Message - From: Lee Howard <[EMAIL PROTECTED]> Date: Tue, 14 Sep 2004 18:26:04 -0400 Subject: Re: Currently running page requests To: CF-Talk <[EMAIL PROTECTED]> If you are us

Re: Currently running page requests

2004-09-14 Thread Lee Howard
Endpoint endPoint = (jrun.servlet.http.WebEndpoint)t.getServletRequest(); maybe there is something missing in my classpath or maybe a differnet JVM Doug - Original Message - From: Lee Howard <[EMAIL PROTECTED]> Date: Tue, 14 Sep 2004 15:24:51 -0400 Subject: Re: Currently running page requests To: CF-Talk

Re: Currently running page requests

2004-09-14 Thread Douglas Knudsen
something missing in my classpath or maybe a differnet JVM Doug - Original Message - From: Lee Howard <[EMAIL PROTECTED]> Date: Tue, 14 Sep 2004 15:24:51 -0400 Subject: Re: Currently running page requests To: CF-Talk <[EMAIL PROTECTED]> I like that.  It worked great for me

Re: Currently running page requests

2004-09-14 Thread Lee Howard
compile and put in the WEB-INF/classes folder. I compiled using javac thread.java -classpath c:\cfusionmx\runtime\lib\jrun.jar call it using http://webserver.com/servlet/thread - Original Message - From: Douglas Knudsen <[EMAIL PROTECTED]> Date: Tue, 14 Sep 2004 11:54:05 -0400 Subject

Re: Currently running page requests

2004-09-14 Thread Douglas Knudsen
-- From: Adrocknaphobia <[EMAIL PROTECTED]> Date: Tue, 14 Sep 2004 09:34:27 -0400 Subject: Re: Currently running page requests To: CF-Talk <[EMAIL PROTECTED]> Well I've found the stack trace invaluable in terms of information. But the fact that you have to have your server running

Re: Currently running page requests

2004-09-14 Thread Adrocknaphobia
4 14:26:01 +0100 Subject: RE: Currently running page requests To: CF-Talk <[EMAIL PROTECTED]> And its nigh on useless in my opinion.    _   From: Tim Blair [mailto:[EMAIL PROTECTED] Sent: 14 September 2004 14:23 To: CF-Talk Subject: RE: Currently running page requests > Is there

RE: Currently running page requests

2004-09-14 Thread Robertson-Ravo, Neil (RX)
And its nigh on useless in my opinion.    _   From: Tim Blair [mailto:[EMAIL PROTECTED] Sent: 14 September 2004 14:23 To: CF-Talk Subject: RE: Currently running page requests > Is there any way to get a list of currently running > page requests on the server so I can keep track o

RE: Currently running page requests

2004-09-14 Thread Tim Blair
> Is there any way to get a list of currently running > page requests on the server so I can keep track or them? You can perform a dump of the current stack trace, which will list (amongst a big pile of other stuff) what's requests are currently being processed by CF.  See the MM technote about i

Re: Currently running page requests

2004-09-14 Thread G
This is a fairly rudimentary idea but you could have each process log its beginning and its termination. A quick check of the log (maybe a DB table) would tell you what is currently running.   - Original Message -   From: James Smith   To: CF-Talk   Sent: Tuesday, September 14, 2004 6:5