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...
15941
Sean Williams
sean@...
May 7, 2004 7:20 pm
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...
15942
Gavin Werner
wernerg@...
May 12, 2004 12:03 pm
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. ... ...
15946
Jeffrey Anderson
jeffa@...
May 13, 2004 8:41 pm
session.invalidate(); only invalidates the client session. The container assumes the sessionid is the same for that client only and the server will invalidate...
15947
Ben Groeneveld
bjgroeneveld@...
May 13, 2004 9:05 pm
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...
15948
Gavin Werner
wernerg@...
May 14, 2004 1:04 pm
... Ben, Jeff, Thanks for the responses. I will try the approach of registering the sessions with an object acessible by the admin. ...
15949
Gavin Werner
wernerg@...
May 18, 2004 8:55 pm
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...
15950
Gavin Werner
wernerg@...
May 18, 2004 9:42 pm
... 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...
15951
Ben Groeneveld
bjgroeneveld@...
May 18, 2004 10:45 pm
Nice when it works :) BenG. ... ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Get the mailserver that powers this list at ...
15952
Dave Watts
dwatts@...
May 18, 2004 11:24 pm
... 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...
15953
Chris Bell
dixie@...
Jun 1, 2004 2:14 pm
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,...
15954
Chris Bell
dixie@...
Jun 1, 2004 2:17 pm
... . ... ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Sams Teach Yourself Regular Expressions in 10 Minutes by Ben Forta ...
15955
Gavin Werner
wernerg@...
Jun 3, 2004 9:22 am
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...
15956
Blais, Jason J
jason.blais@...
Jun 3, 2004 12:55 pm
Gavin, Check out the jrun sdk documentation located at http://livedocs.macromedia.com/jrun/4/JRun_SDK_Guide/contents.htm ...
15957
Kathy Vance
kathy5592@...
Jun 3, 2004 1:20 pm
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 ... ...
15958
Jeffrey Anderson
jeffa@...
Jun 3, 2004 1:29 pm
Hi, Perhaps this might help??? http://www.macromedia.com/devnet/tip/029.html ... ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| ...
15959
Gavin Werner
wernerg@...
Jun 3, 2004 8:05 pm
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 ...
15960
Gavin Werner
wernerg@...
Jun 3, 2004 9:06 pm
Thanks Kathy ... that worked. ... ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Purchase from House of Fusion, a Macromedia Authorized...
Hi, In Jrun 3.1 you could set a parameter 'maxUse39; 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...
15969
Ben Groeneveld
bjgroeneveld@...
Jun 7, 2004 8:26 am
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...