Re: Where is orion-application.xml?

2002-01-25 Thread Petr Podsednik
ORION-DIR/application-deployments/your-application/orion-application.xml - Original Message - From: Chris Boz Jennings [EMAIL PROTECTED] To: Orion-Interest [EMAIL PROTECTED] Sent: Friday, January 25, 2002 4:53 AM Subject: Where is orion-application.xml? I've got Orion working fine on

Job Scheduler pattern

2002-01-25 Thread Justin Crosbie
Hi, I'm not sure if I've asked this before, or if I should be asking on a general EJB list. I'd like to implement a job scheduler in J2EE. This would shcedule the execution of EJB methods at a specified time in the future. It would have to be persistent, and jobsd would be rescheduled upon

SV: Generating descriptors

2002-01-25 Thread Fredrik Ålund
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 I use the deploytool that ships with J2EE 1.3. It works great. You can build your jar and ear files in it as well. /Fredrik - -Ursprungligt meddelande- Från: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]För Michal Palicka Skickat: den 24

Re: Job Scheduler pattern

2002-01-25 Thread Joseph B. Ottinger
The www.orionsupport.com site has a sample scheduler that can easily be converted to do something like this. On Fri, 25 Jan 2002, Justin Crosbie wrote: Hi, I'm not sure if I've asked this before, or if I should be asking on a general EJB list. I'd like to implement a job scheduler in

HTTP 1.1 POSTgenerates duplicated response

2002-01-25 Thread ARRIBA, IÑAKI
We are hitting this extrange behaviour: We have a post response calling an entity bean in our Orion server and when the POST HTTP request is logged in HTTP1.1 protocol the function of the Entity Bean is called twice but there is only one request logged!! We get this behaviour when using IE 5.5

Re: Job Scheduler pattern

2002-01-25 Thread Magnus Hoem
I'm using a TImer and TimerTasks in my system, and it works perfectly well (even though one is not supposed to use threads in an EJB). What kind of RemoteException are you getting? Cheers, Magnus On fredag, januari 25, 2002, at 10:02 , Justin Crosbie wrote: Hi, I'm not sure if I've asked

RE: Retrieving stateful session bean

2002-01-25 Thread Marc Rabil
I tried working through this a couple of weeks ago and found no easy solution to accessing the session in the User Manager. For what you are trying to do, it seems you should be able to use the isUserInRole() method once the request actually gets to your application to make the decisions on

Re: HTTP 1.1 POSTgenerates duplicated response

2002-01-25 Thread Lachezar Dobrev
IE uses to call an url twice. I have come upon this behavior. I am not sure of the reason. I have also seen, that the default method for the HEAD request calls the GET method with a dummy HTTPServletResponse. It just returns the headers, that are sent by the servlet. This may be your

SMTP Services for Orion?

2002-01-25 Thread Mark A. Richman
Is there any way to add SMTP services to Orion? I am hosting a site, and I need the ability to route incoming email. For example, for all incoming email to *@mysite.com, forward to [EMAIL PROTECTED]. Thanks, Mark

RE: Job Scheduler pattern

2002-01-25 Thread Justin Crosbie
Yes I have seen that, it is very bare-bones. It doesn't even use the Timer classes. I need to know how to make this robust. Thanks, Justin -Original Message- From: Joseph B. Ottinger [mailto:[EMAIL PROTECTED]] Sent: 25 January 2002 12:04 To: Orion-Interest Subject: Re: Job Scheduler

Where to put JAAS classfiles (loginmodules) when using it from a web app

2002-01-25 Thread Ismael Blesa Part
Hi, I am using JAAS authentication from a web application, the problem is that the login modules that I use, and all the classes that the LoginModule uses are not loaded from the WEB-INF/classes or WEB_INF/lib folder. I have to put them on the jdk/jre/lib/ext. The problem is that the classes I

Re: Where is orion-application.xml?

2002-01-25 Thread Boz
Thanks for the feedback. I now see that orion-application.xml got auto-generated when I ran the client the first time. Duh! I was still unable to connect until I changed the password for my admin in orion-root/demo/ejb/product/jndi.properties -- This should be in the example install

RE: Where is orion-application.xml?

2002-01-25 Thread Daniel Rolnick
However, you should really be placing this file in your EAR's META-INF directory. It will automatically be copied to the application-depoyments directory upon new deployments. Anytime you make changes to this file in the ear you will need to delete the whole

Re: SMTP Services for Orion?

2002-01-25 Thread Mark A. Richman
To answer my own question, and ask yet another I got James (http://jakarta.apache.org/james/) installed and working. Is there any way to host James from within Orion? It would be nice to have all this functionality in a single JVM. - Mark - Original Message - From:

javax.ejb.EJBLocalHome and javax.ejb.EJBLocalObject

2002-01-25 Thread Boz
Can Orion handle local interfaces, i.e., javax.ejb.EJBLocalHome and javax.ejb.EJBLocalObject ? I am going through Ed Roman's Mastering EJB 2nd edition and it uses these (as part of EJB 2.0, I assume.) ,boz

RE: Job Scheduler pattern

2002-01-25 Thread Joseph B. Ottinger
It *can* use the Timer classes; it just doesn't. The danger in using Timer, of course, is resoruce starvation if the event being started restarts before the previous execution finishes. On Fri, 25 Jan 2002, Justin Crosbie wrote: Yes I have seen that, it is very bare-bones. It doesn't even use

Re: javax.ejb.EJBLocalHome and javax.ejb.EJBLocalObject

2002-01-25 Thread Ray Harrison
Orion only has partial ejb 2.0 compliance - local interfaces are not part of what's included. Full compliance is coming - but I personally don't know when. --- Chris Boz Jennings [EMAIL PROTECTED] wrote: Can Orion handle local interfaces, i.e., javax.ejb.EJBLocalHome and

RE: Job Scheduler pattern

2002-01-25 Thread Paul Knepper
Joseph, Very cool. How do you stop a client-module that auto-started and then restart it? Say you deployed the app (which also has ejb and web modules) and later wanted to add another task to the scheduler. Can you start and stop the java client module, so that it would reload the

RE: javax.ejb.EJBLocalHome and javax.ejb.EJBLocalObject

2002-01-25 Thread Trujillo, Kris
Nope..doesn't support EJB Local. -Original Message- From: Chris Boz Jennings [mailto:[EMAIL PROTECTED]] Sent: Friday, January 25, 2002 1:43 PM To: Orion-Interest Subject: javax.ejb.EJBLocalHome and javax.ejb.EJBLocalObject Can Orion handle local interfaces, i.e., javax.ejb.EJBLocalHome

RE: javax.ejb.EJBLocalHome and javax.ejb.EJBLocalObject

2002-01-25 Thread The elephantwalker
If you look at the interfaces in 1.5.3, the local interfaces are there. AFAIK, it doesn't work yet, though. In a previous thread, Magnus Rydin wrote about the re-factoring is happening now so that EJB 2.0 will work. Maybe this will be in 1.5.4, which isn't out yet. Another encouraging sign is

Re: Where is orion-application.xml?

2002-01-25 Thread Scott Farquhar
Chris, You can leave annotations on the Atlassian knowledge base. http://kb.atlassian.com/content/orion/docs/examples/ejb.html Cheers, Scott -- Scott Farquhar :: [EMAIL PROTECTED] Atlassian :: http://www.atlassian.com Supporting YOUR J2EE World Chris Boz Jennings wrote: Thanks for