RE: cgi question [EXPIRED TRIAL LICENCE]

2002-01-29 Thread The elephantwalker
If you look in the global-web-application.xml, you will see that there is a cgi servlet. If you want to use your own php engine, you will need to do something like this: servlet servlet-namephp/servlet-name servlet-classcom.evermind.server.http.CGIServlet/servlet-class

Servlet reload problem

2002-01-29 Thread Tommi Penttilä
My servlet-classes won't reload. After I recompile changed servlet and http-GET it via orion's (1.5.3) web-interface, orionconsole reports that Servlet was initialized, but I get the same result on browser than before compiling. I did put orion-web-app/@development=true on the web-app-config,

FW: Job Scheduler pattern

2002-01-29 Thread Justin Crosbie
This doesn't look like it got processed, I'll send it again... -Original Message- From: Justin Crosbie Sent: 28 January 2002 12:50 To: 'Orion-Interest' Subject: RE: Job Scheduler pattern Hi again, Thanks for the help on this. What I've done so far is this: 1. Implemented a

Application Client JMS

2002-01-29 Thread Jochen Kressin
Hi, i have some problems writing an application client that uses JMS. I have created a SessionBean which publishes messages and a MDB which receives the messages. This works fine. I now want to write a client application that can participate in messaging. The client connects to the server

RE: TX Was Null

2002-01-29 Thread geoff
Hmm. You potentially have a good point about the transaction retries, I hadn't considered that. I wouldn't have expected the application server to retry with an application-level exception is thrown, though. Do you know that to be the case? I like to keep the validation within the OM for a

Re: FW: Job Scheduler pattern

2002-01-29 Thread Mike Conway
why not just run a crontab and forget about having orion fire anything off? Mike Justin Crosbie wrote: [EMAIL PROTECTED]"> This doesn't look like it got processed, I'll send it again...-Original Message-From: Justin Crosbie Sent: 28 January 2002 12:50To: 'Orion-Interest'Subject: RE:

RE: Servlet reload problem

2002-01-29 Thread Paul van Beukering
restart orion -Original Message- From: Tommi Penttilä [mailto:[EMAIL PROTECTED]] Sent: dinsdag 29 januari 2002 12:20 To: Orion-Interest Subject: Servlet reload problem My servlet-classes won't reload. After I recompile changed servlet and http-GET it via orion's (1.5.3)

Fw: What is a Dirty Connection (using -Djdbc.debug=true)

2002-01-29 Thread Jeff Hubbach
I'm forwarding this on to the list as it was very helpful with regard to my question, just incase anyone else has the same questions. Thanks, Avi. Jeff. Begin forwarded message: Date: Tue, 29 Jan 2002 08:50:25 +0200 From: Avi Abrami [EMAIL PROTECTED] To: '[EMAIL PROTECTED]' [EMAIL PROTECTED]

Container leaving Dirty Connection in CMP with container-managed transactions

2002-01-29 Thread Jeff Hubbach
If an exception is thrown in a CMP entity bean with container-managed transactions, a Dirty Connection is left behind that is never cleaned up (or at least in 15 minutes). We've set inactivity-timeout in the data-sources and tweaked with all the transaction settings, all to no avail. Is anyone

Re: Servlet reload problem

2002-01-29 Thread Jeff Hubbach
touching web.xml works for me, the container reloads the new servlet classes. Jeff. On Tue, 29 Jan 2002 17:00:20 +0100 Paul van Beukering [EMAIL PROTECTED] wrote: restart orion -Original Message- From: Tommi Penttilä [mailto:[EMAIL PROTECTED]] Sent: dinsdag 29 januari 2002 12:20

Re: Application Client JMS

2002-01-29 Thread Manoj Sadangi
Hi Jochen , The MessageMonitor class you have written , is it a servlet? r u using Orion's JMS? thanks, manoj. Jochen Kressin wrote: Hi, i have some problems writing an application client that uses JMS. I have created a SessionBean which publishes messages and a MDB which

Re: What is a Dirty Connection (using -Djdbc.debug=true)

2002-01-29 Thread Patrick Lightbody
I don't see how this helps with your question at all. You were asking about CMP, and he is talking about BMP. I too have the problems you are encoutering with CMP and stale connections being left over. I'd love to hear of solutions to this problem. -Pat - Original Message - From: Jeff

RE: Servlet reload problem

2002-01-29 Thread Nusairat, Joseph F.
Title: RE: Servlet reload problem Are u using code that is calling another servlet? Or is this servlet being called from another one. Cause if the servlet is being called by another one you'd have to move both over both Joseph Faisal Nusairat, Sr. Applications Developer WorldCom tel:

RE: hot redeployment - how to preserve session state?

2002-01-29 Thread Aaron Tavistock
I'm not currently doing hot-deploy, but I've always wonder how it could posibly work given that a serialized class might have the underlying base class changed during hot-deploy (e.g. the classic 'run instance' is different than a 'new instance' problem that java throws a ClassCastException

Re: What is a Dirty Connection (using -Djdbc.debug=true)

2002-01-29 Thread Jeff Hubbach
Patrick, It helped in that noone else responded, and it points to the fact that something, either a statement or result set, isn't getting closed (if container-managed connections are dealt with the same as user-managed connections, which I'm assuming is true). I agree with you that he's

RE: Container leaving Dirty Connection in CMP with container-managed transactions

2002-01-29 Thread Geoff Soutter
You could try using your own wrappers on the JDBC classes ala this article http://www.onjava.com/lpt/a/onjava/2001/12/05/optimization.html Then, you can see exactly what Orion is calling. At least that helps track the bug down a bit. Actually, maybe you could use this method to force Oracle

Re: What is a Dirty Connection (using -Djdbc.debug=true)

2002-01-29 Thread Patrick Lightbody
Yes, sounds like Orion isn't closing the Statements and ResultSets that it uses for CMP, instead it is just closing the Connection. If that is the case, either an update in the Oracle JDBC driver or an update with Orion would fix the bug. Let's hope one of the two comes out soon, because how it

long sessions

2002-01-29 Thread Tim Courtney
I have kind of a general app server question: I have a servlet that puts a user object into session - HttpSession session = req.getSession(true); session.setAttribute(user, user); - We use this object to check if a visitor has logged into the web site or not My boss has

MQSeries as JMS provider?

2002-01-29 Thread Keith Kee
Hi: Has anyone have any sucess integrating MQSeries as the JMS provider for the orion server? Thanks keith

Re: hot redeployment - how to preserve session state?

2002-01-29 Thread Daniel López
Hi Aaron, We preserve session state through hot and cold deploys with no problem, unless you explicitly change the objects involved in keeping the session state, or any object that is stored in the context. However, it is not impossible to modify these objects while preserving your state, as