RE: load-balancer problem

2001-10-05 Thread Simon Evans
Title: RE: load-balancer problem you will probably want to use the database for this. all instances use the same database, so locking here applies to all instanaces. you can use an entity bean to access the database. -Original Message- From: Min-Hua Luo [mailto:[EMAIL PROTECTED]]

RE: Design strategy

2001-10-02 Thread Simon Evans
george, this design issue should not be dependant on orion or any application server. orion can help becuase it supports ejb 1.1 and partially ejb 2.0. so there are a few options, you could write custom entites to manage the relationships, use ejb 1.1 or ejb 2.0. doing an ejb 2.0

Re: Unable to start Orion Server

2001-08-10 Thread Simon Evans
are you shutting down the server properly... java -d admin.jar ormi://localhost:23791 admin 23 -shutdown force also i dont thnik you should be deleting the transaction files...from the messages below it seems that the server recovered and started ok anyway. Tom Jordan wrote: Hi,

RE: ipchains and Orion

2001-08-07 Thread Simon Evans
in response to the redirect question, you need the following line in default-web-site.xml frontend host=myhost port=80 / this will tell redirects to use the given host and port -Original Message- From: David Morton [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 07, 2001 1:31 PM To:

RE: Transaction question

2001-08-06 Thread Simon Evans
like that ??) Eddie - Original Message - From: Simon Evans [EMAIL PROTECTED] To: Orion-Interest [EMAIL PROTECTED] Sent: Thursday, July 26, 2001 7:49 PM Subject: RE: Transaction question i think you need transaction attribute 'RequiresNew' in B, and 'Requires' on A. then A has to catch

RE: Transaction question

2001-07-26 Thread Simon Evans
i think you need transaction attribute 'RequiresNew' in B, and 'Requires' on A. then A has to catch B's remote exception. ejb-jar.xml like: container-transaction method descriptionTransaction-handling for the SmsManager/description

RE: Transaction question

2001-07-26 Thread Simon Evans
sorry , thats what i meant...cut and paste mistake -Original Message- From: Juan Lorandi (Chile) [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 26, 2001 9:55 AM To: Orion-Interest Subject: RE: Transaction question Bottom line... you can't do that. J2EE doesn't support nested

RE: Anyone experience any problems with JDBC Oracle drivers and JDK 1 .3.1 with connection pooling?

2001-07-26 Thread Simon Evans
there are no problems with jdk1.3 and oracle drivers...if you post the error, maybe the group can help -Original Message-From: Duffey, Kevin [mailto:[EMAIL PROTECTED]]Sent: Thursday, July 26, 2001 2:30 PMTo: Orion-InterestSubject: Anyone experience any problems with JDBC

RE: increasing JVM's memory limit

2001-07-26 Thread Simon Evans
im looking for a pardon :) -Original Message- From: Duffey, Kevin [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 26, 2001 3:49 PM To: Orion-Interest Subject: RE: increasing JVM's memory limit Or George W Bush. -Original Message- From: Bill Clinton [mailto:[EMAIL

RE: Shutting down orion server!

2001-07-20 Thread Simon Evans
oh great, i opened the attachment and it ran the bat file! damn windows! -Original Message- From: Andre Vanha [mailto:[EMAIL PROTECTED]] Sent: Friday, July 20, 2001 10:04 AM To: Orion-Interest Subject: RE: Shutting down orion server! -Original Message- From: Rajiv R

RE: deployment - part2

2001-07-18 Thread Simon Evans
you dont seem to be giving any permissions to your methods. in the method-permission element you are just listing all the methods but are not defining the roles with permissions to the methods. you are also not defining any roles. i would recommend removing the entire method-permission element

RE: A little off topic: HTTPS and cookies in Java

2001-07-12 Thread Simon Evans
you could try httpunit. it is automated unit testing of web pages and it handles cookies. it is also open source. http://httpunit.sourceforge.net/ -Original Message- From: Joe Fair [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 12, 2001 3:29 PM To: Orion-Interest Subject: A little off

connection pool question

2001-07-10 Thread Simon Evans
i have a connection pool defined and its works fine. i was wondering if there was any setting for the pool size, or max size or things like that. is there any way to query the pool, like see how many connections there are? my driver is not a pooled driver, so does orion create a pool? what if i