RE: ResultSet chaching

2001-03-03 Thread Juan Lorandi (Chile)
resultset or entity? if entity caching is troubling you, de-activate entity caching by setting the entity-deployment attribute exclusive-write-access to true. HTH JP PS:ResultSet caching is done with RowSet's persistance (serializable RowSet's) -Original Message-From: Luis

How to set orion to perform a timely task..

2001-03-03 Thread orion
Hello, I need to have my EJB perform some DB operation at midnight everyday. How do I do that? In PC, I could create a timer object to do that with VC++, but in Java it does not seem to have such a functionality. And I think it's ideal to handle it in the server side rather than play with Java.

Re: How to set orion to perform a timely task..

2001-03-03 Thread Mike Sick
We use Flux. It was easy to integrate and it's reliable. see: http://www.simscomputing.com/ http://www.simscomputing.com/products/ - Original Message - From: [EMAIL PROTECTED] To: "Orion-Interest" [EMAIL PROTECTED] Sent: Saturday, March 03, 2001 12:43 PM Subject: How to set orion to

RE: Clustering and Multicasting

2001-03-03 Thread Juan Lorandi (Chile)
are you connecting everything to the same switch (hub)??? multicasting in a LAN is usually done by the switches, so hooking into a different hub may be problematic with some switches HTH JP -Original Message- From: Jesse Schoch [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February

classloader does not implement getResourceAsStream ?

2001-03-03 Thread G.L. Grobe
I've just started using orion and ran into a prob using the struts MVC. I mailed the struts user group about this error and they reported back the following. The problem is that the Orion classloader does not implement getResourceAsStream(). It's been logged in Orion's bugzilla. Does anyone

RE: How to set orion to perform a timely task..

2001-03-03 Thread Juan Lorandi (Chile)
Or you could start a daemon thread in a servlet to perform as cron; we do that to initialize services we need. Flux is great too, but it's out of my budget... ;-) -Original Message- From: Mike Sick [mailto:[EMAIL PROTECTED]] Sent: Saturday, March 03, 2001 3:19 PM To: Orion-Interest

Re: How to set orion to perform a timely task..

2001-03-03 Thread Falk Langhammer
I think, the most clean approach would be to have a cron job which starts an EJB client every time. Bye, Falk - Original Message - From: [EMAIL PROTECTED] I need to have my EJB perform some DB operation at midnight everyday. How do I do that?

RE: classloader does not implement getResourceAsStream ?

2001-03-03 Thread Christian Billen
Hi there, I got struts working here, here's the two important things: - Make sure struts.jar is in your WEB-INF/lib and not in Orion/lib which you got - Get a source version of Struts, and modify the ActionServlet.java of Struts: This line (about line 881 in my version): URL url =

Re: Clustering and Multicasting

2001-03-03 Thread Jesse Schoch
they are connected to a hub - Original Message - From: "Juan Lorandi (Chile)" [EMAIL PROTECTED] To: "Orion-Interest" [EMAIL PROTECTED] Sent: Saturday, March 03, 2001 1:59 PM Subject: RE: Clustering and Multicasting are you connecting everything to the same switch (hub)???