Hi, Did you get this resolved? I've just moved from Tomcat to JRun and the working apps don't seem to run properly under CFMX + JRun at all! (They also run...
Anthony Cooper
anthony.cooper@...
May 6, 2004 1:57 pm
15941
ant the solution was to locate the httpd.config file after running the wsconfig (as described in JRun documentation) open the httpd.config file and look at the...
Sean Williams
sean@...
May 7, 2004 7:20 pm
15942
I am trying to write a servlet that enables an administrator to invalidate a user's session. I am using the SessionService class to access the user's session....
Gavin, I am not familiar with that approach. As an alternative, you may try session.invalidate() - I use it frequently. Hope that helps, BenG. ... ...
Ben Groeneveld
bjgroeneveld@...
May 13, 2004 8:33 pm
15946
session.invalidate(); only invalidates the client session. The container assumes the sessionid is the same for that client only and the server will invalidate...
Jeffrey Anderson
jeffa@...
May 13, 2004 8:41 pm
15947
Gavin, you might try "registering" each user's session reference in an object accessible to the admin so that he/she can peruse and act on them using...
Ben Groeneveld
bjgroeneveld@...
May 13, 2004 9:05 pm
15948
... Ben, Jeff, Thanks for the responses. I will try the approach of registering the sessions with an object acessible by the admin. ...
Gavin Werner
wernerg@...
May 14, 2004 1:04 pm
15949
I have a question regarding terminating sessions in a clustered environment. My session replication is working fine except when I invalidate a session. If I...
Gavin Werner
wernerg@...
May 18, 2004 8:55 pm
15950
... Ben, Jeff, Just FYI ...That worked. Thanks for the help. I'm still ironing out a couple of issues clustering issues with it. For some reason if you update...
Gavin Werner
wernerg@...
May 18, 2004 9:42 pm
15951
Nice when it works :) BenG. ... ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Get the mailserver that powers this list at ...
Ben Groeneveld
bjgroeneveld@...
May 18, 2004 10:45 pm
15952
... I haven't got a clue about session termination through Java, but if you can't find an answer, you might consider just deleting the client token (usually...
Dave Watts
dwatts@...
May 18, 2004 11:24 pm
15953
Spent a few hours on this already. This is a copy of the post I put on MM. Hi, I knew I was getting into something when I discovered that NLB is not supported,...
Chris Bell
dixie@...
Jun 1, 2004 2:14 pm
15954
... . ... ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Sams Teach Yourself Regular Expressions in 10 Minutes by Ben Forta ...
Chris Bell
dixie@...
Jun 1, 2004 2:17 pm
15955
Hi, I need to initalize a class when jrun starts up (before any users start using the web application). I'm gussing that the way to do this is to create a new...
Gavin Werner
wernerg@...
Jun 3, 2004 9:22 am
15956
Gavin, Check out the jrun sdk documentation located at http://livedocs.macromedia.com/jrun/4/JRun_SDK_Guide/contents.htm ...
Blais, Jason J
jason.blais@...
Jun 3, 2004 12:55 pm
15957
Yes. You could set this up on <load-on-startup/> tag in web.xml as I know. Kathy ... http://livedocs.macromedia.com/jrun/4/JRun_SDK_Guide/contents.htm ... ...
Kathy Vance
kathy5592@...
Jun 3, 2004 1:20 pm
15958
Hi, Perhaps this might help??? http://www.macromedia.com/devnet/tip/029.html ... ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| ...
Jeffrey Anderson
jeffa@...
Jun 3, 2004 1:29 pm
15959
I ended up implementing this in a servlet and using the <load-on-startup/> tag which worked well. Thanks for all the replies everyone. Gavin ...
Gavin Werner
wernerg@...
Jun 3, 2004 8:05 pm
15960
Thanks Kathy ... that worked. ... ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Purchase from House of Fusion, a Macromedia Authorized...
Hi, In Jrun 3.1 you could set a parameter 'maxUse' on the JDBC connection pool the defined how many times a connection would be assigned before being...
I'm using JRun to access a secure URL (through https). The url is on a remote system and that system's SSL cert was recently updated. I now get an exception...
Cord Awtry
kipsta@...
Jun 7, 2004 3:12 am
15969
In response to an HTTP POST I am performing a response.setHeader("Connection", "close"); My JRun4 is configured with IIS. I think this used to work, but...