Using Apache with Orion Server

2001-12-18 Thread VENKATACHALAPATHY Duraiswamy
Can anybody explain how can I configure Apache to use with Orion Application server? The documentation available in orionsupport.com for the above was not elaborate. Thanks Venkat

ejb can't invoke another ejb on a different orion (orion-orion ejbinvoking)

2001-12-18 Thread MRist
Hi there, we have two j2ee applications running on different orion servers (say orion1 and orion2). Both 1.5.2 orions run under JDK1.3.0 on winnt 4.0 Now we want 'cross' functionality... We build a sessionBean 'myGreatBean', deploy it on orion1, create an test-application client Everything

Standalone applications

2001-12-18 Thread Daniel López
Hi, In the System.exit(1) thread, I've read that some people was using some auto-executable files to start up some standalone applications, but I haven't been able to find some clear documentation about it. I've tried with the Sun J2EE tutorials and the J2EE spec but it does not get to the

Re: Using Apache with Orion Server

2001-12-18 Thread Lachezar Dobrev
smime.p7m Description: application/pkcs7-mime

Re: [ORION] Using Apache with Orion Server

2001-12-18 Thread Ana Susanj
* VENKATACHALAPATHY Duraiswamy ([EMAIL PROTECTED]) [011218 13:11]: Can anybody explain how can I configure Apache to use with Orion Application server? The documentation available in orionsupport.com for the above was not elaborate. Are you referring to apachefrontend.html ? If so, which part of

Re: Unsubscribe

2001-12-18 Thread Alexandru Balut
They can build an application server and they can't maintain a mailing list? :-) There is something strange here.. On Monday 17 December 2001 22:07, Dan Hoyal wrote: Please remove me as well. I've also tried several times. Thank you, Dan -Original Message- From: [EMAIL

Re: Using Apache with Orion Server

2001-12-18 Thread remy menetrieux
Try to use proxypass and proxypassreverse function of apache's mod_proxy Fo me i use this : IfModule mod_proxy.c ProxyRequestOn ProxyPass /app1 http://localhost:8080/app1 ProxyPassReverse /app1 http://localhost:8080/app1 /IfModule Good luck ... VENKATACHALAPATHY Duraiswamy wrote: Can

Re: How do you shut down orion after it's initialized

2001-12-18 Thread James Beeson
I did not have the admin user deactivated (althought that was a good tip- thanks!) When I use the command: java -jar admin.jar ormi://localhost:8080/ admin pswd -shutdown I get: Exception in thread main java.util.zip.ZipException: The system cannot find the file specified at

Re: Unsubscribe

2001-12-18 Thread John Hogan
esad -Original Message- From: Alexandru Balut [EMAIL PROTECTED] Date: Tue, 18 Dec 2001 16:00:38 +0200 To: Orion-Interest [EMAIL PROTECTED] Subject: Re: Unsubscribe They can build an application server and they can't maintain a mailing list? :-) There is something strange here..

Re: [ORION] Using Apache with Orion Server

2001-12-18 Thread remy menetrieux
try this in httpd.conf IfModule mod_proxy.c ProxyRequestOn ProxyPass /app1 http://localhost:8080/app1 ProxyPassReverse /app1 http://localhost:8080/app1 /IfModule Ana Susanj wrote: [EMAIL PROTECTED]"> * VENKATACHALAPATHY Duraiswamy ([EMAIL PROTECTED]) [011218 13:11]: Can

RE: Very Long Deployment Time

2001-12-18 Thread geoff
Like others on this list, I don't share your problem. I redeploy the entire EAR using Ant, and the redeploy process for our project takes less than ten seconds. Your project might be larger than mine, at this point, but not so much that it should cause the kind of delay you're finding. I

RE: How do you shut down orion after it's initialized

2001-12-18 Thread Setlur, Atul (MED)
Are you sure you are running this from the directory where orion is installed. Verify admin.jar is in the directory that you are running this script. Alternatively, cd to the orion directory and run it from there. -Atul -Original Message- From: James Beeson [mailto:[EMAIL PROTECTED]]

Using UserTransaction from a standalone client

2001-12-18 Thread DPietro
Can someone tell me how to configure properly to lookup a UserTransaction? I have a standalone client that references a jndi.properties file to connect to our app server and make use of EJB's. When I try to add a UserTransaction lookup I get name not found. Do I have to add UserTransaction to

Re: [ORION] Using Apache with Orion Server

2001-12-18 Thread Tatiana Gonzalez Cruz
So, If you are trying to use the web-server Apache with Orion, the way that we found was... That orion forwad the requests to Apache because there is not a plug-in for that, so you need edit the httpd.conf file in Apache and the default-web-site.xml and global-web-application.xml in Orion.

RE: Very Long Deployment Time

2001-12-18 Thread Jarrod Roberson
Title: Message it is VERY slow to deploy using the ORMI commands, it takes FOREVER. it is much faster to use ANT to deploy via coping or ftping the .ear or .war files to orion directly. -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of

Re: Unsubscribe

2001-12-18 Thread Vic Cekvenich
I have a Orion list mirror at news.basebeans.com. It posts to mail list. My news server is up (I do not know of it being down). The Orion list was down last week. (I am happy to host the mail list in the USA). This is my favorite app. server. HTH, Vic ps:

Re: How do you shut down orion after it's initialized

2001-12-18 Thread Chris Callaghan
Sounds like you're missing admin.jar... You can get rid of your transaction-log error by creating a persistence directory under the orion directory. Orion will then happily use that... I think some zip implementations have a thing about creating empty directories... James Beeson wrote: I

RE: Using UserTransaction from a standalone client

2001-12-18 Thread The elephantwalker
This was answered at www.elephantwalker.com/rfa?id=271 regards, the elephantwalker -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of [EMAIL PROTECTED] Sent: Tuesday, December 18, 2001 9:48 AM To: Orion-Interest Subject: Using UserTransaction from a

how does Orion finds classes ?

2001-12-18 Thread Yekesa Kosuru
Hi, When a class needs to be loaded, how does Orion find the class ?. My guess is it goes through all the jars file it is configured with (manifest file, server.xml, application.xml etc). But then isn't this expensive, because for every single class, it has to go through all the jars it knows

Re: How do you shut down orion after it's initialized

2001-12-18 Thread Robert S. Sfeir
Sounds like you're using the command without being in the Orion directory. Can't do that. R James Beeson wrote: I did not have the admin user deactivated (althought that was a good tip- thanks!) When I use the command: java -jar admin.jar ormi://localhost:8080/ admin pswd

Re: How do you shut down orion after it's initialized

2001-12-18 Thread Steven R Brandt
Forgive the dumb question... but is admin.jar in the current directory when you issue this command? 12/18/01 10:41:14 AM, James Beeson [EMAIL PROTECTED] wrote: I did not have the admin user deactivated (althought that was a good tip- thanks!) When I use the command: java -jar admin.jar

jndi.properties

2001-12-18 Thread Namor Taror
I'm getting jndi exception when envoking ejb web service. I have defined jndi.properties file and put a reference to it into my system classpath as well as into the axis orion-application.xml and orion-web.xml files. My jndi.properties file is:

RE: How do you shut down orion after it's initialized

2001-12-18 Thread James Beeson
This is what I get when I start Orion: C:\orionjava -jar orion.jar Warning: Error reading transaction-log file (/C:/orion/persistence/transaction.state) for recovery: premature end of file Forced or abrubt (crash etc) server shutdown detected, starting recovery process ... Recovery completed, 0

Re: How do you shut down orion after it's initialized

2001-12-18 Thread James Beeson
I have an admin.jar in my c:\orion directory, but I looked inside it and the ONLY file is the manifest.mf file. There are no other files (namely any .class files) there. Is that right? I just downloaded this less than a week ago, the newest stable version there was Here is what is in the

RE: How do you shut down orion after it's initialized

2001-12-18 Thread Neville Burnell
you will need the entire Orion153.zip, not just the admin.jar -Original Message- From: James Beeson [mailto:[EMAIL PROTECTED]] Sent: Wednesday, 19 December 2001 4:06 PM To: Orion-Interest Subject: Re: How do you shut down orion after it's initialized I have an admin.jar in my c:\orion

Re: How do you shut down orion after it's initialized

2001-12-18 Thread Robert S. Sfeir
That's because Orion did not start properly in the first place. That's why you're getting that second error. Fix the start process, then you should be fine. To test that Orion did not start, just hit it via local host or something and see if it responds. You should get connection refused.

Re: How do you shut down orion after it's initialized

2001-12-18 Thread Chris Callaghan
Wrong port dude, try 23791 (default unless you change it in orion/config/rmi.xml). James Beeson wrote: This is what I get when I start Orion: C:\orionjava -jar orion.jar Warning: Error reading transaction-log file (/C:/orion/persistence/transaction.state) for recovery: premature end of

Re: How do you shut down orion after it's initialized

2001-12-18 Thread Daniel López
Hi James, Is 8080 your HTTP port, specified in your x-web-site.xml descriptor, or is it the RMI port described in the rmi.xml one? It HAS to be the RMI one, as you admin.jar connects through RMI to tell the orion server to stop, so you cannot do it through the port HTTP is used for. regards,