UserTransaction

2001-06-15 Thread Phan Anh Tran
With orion, Is it possible to look up a user transaction outside an EJB (a stand-alone app for example)? Thanks

Re: how do I unsubscribe?

2001-06-15 Thread Lachezar Dobrev
Unsubscribe requests should be sent to: [EMAIL PROTECTED]

Undeliverable:

2001-06-15 Thread Mail Delivery Subsystem
Important information! This e-mail has not been delivered to [EMAIL PROTECTED] The receiver's mailbox is full. When the mailbox has been emptied you will be able to resend this e-mail. Best regards Telia Internet

RMI Clustering done. Now want more.

2001-06-15 Thread Lachezar Dobrev
Hello. OK. I was able to (at last) run the RMI clustering. It now works. But... I have a question... Now I can put up a cluster, and when a bean does not exist on the server it is searched onthe cluster and used. However if it is deployed on more than one machine... It is not found on all

Re: debug jsp pages and where is the source

2001-06-15 Thread Marcel Schutte
Hi Wendell, Take a look at http://bugzilla.orionserver.com/bugzilla/show_bug.cgi?id=497. Someone else recently posted about this too and so I filed a bug. Magnus already fixed it and it seems you should be able to use String and any other Class in the scope of the current jsp's imports. Marcel

Undeliverable:

2001-06-15 Thread Mail Delivery Subsystem
Important information! This e-mail has not been delivered to [EMAIL PROTECTED] The receiver's mailbox is full. When the mailbox has been emptied you will be able to resend this e-mail. Best regards Telia Internet

Cookie, IE4 and Orion

2001-06-15 Thread Mailinglistmottagare
Hi! We have a problem with cookies and early versions of IE 4. This is what MS says about it. If a Web site uses a cookie with a 2-digit year of 00, Internet Explorer recognizes the cookie as expired. As a result, Internet Explorer behaves as if cookies have been disabled when visiting the

Classpath and library path ERROR ???

2001-06-15 Thread Eddie
OK, I want to include a jar file in my application, so I put it in $APPLICATION_ROOT/lib and in the orion-application.jar I put (I first let Orion generate the orion-application.xml file): - library path="./lib" / library path="./lib/log4j-core.jar" / library path="./lib/log4j.jar"

Re: groups and usermanager

2001-06-15 Thread Joseph B. Ottinger
You need two records for the multiple groups; they're not comma-delimited. On Thu, 14 Jun 2001, Lawrence Fry wrote: Has anybody used more than one group outside of the defaultGroups for a usermanager? I have found that if you use EJBUserManager, and use more than one group in the

Re: Orion can't find Cloudscape database

2001-06-15 Thread Ray Harrison
Try putting the cloudscape.jar into the orion\lib directory...it will be able to find it there... --- Lou Farho [EMAIL PROTECTED] wrote: How do I tell Orion where to find my Cloudscape database? Here is what I have for the data source: data-source

Undeliverable:

2001-06-15 Thread Mail Delivery Subsystem
Important information! This e-mail has not been delivered to [EMAIL PROTECTED] The receiver's mailbox is full. When the mailbox has been emptied you will be able to resend this e-mail. Best regards Telia Internet

Slow Session Replication in cluster

2001-06-15 Thread Yves Bossel
Hello, We have a cluster with 6 servers in production, 100MB network traffic low, nothing is stored into the session object, nor into any of the variables (pageContext, etc.). However sessions last 10s in being replicated. Any clue ? Thanks Yves Bossel L. Programmer www.neoris.com -

Undeliverable:

2001-06-15 Thread Mail Delivery Subsystem
Important information! This e-mail has not been delivered to [EMAIL PROTECTED] The receiver's mailbox is full. When the mailbox has been emptied you will be able to resend this e-mail. Best regards Telia Internet

Re: UserTransaction

2001-06-15 Thread Jeff Hubbach
Check www.orionserver.com, under the FAQ link: How do I get a reference to the TransactionManager? import javax.naming.*; import javax.transaction.*; ... TransactionManager manager = (TransactionManager)new InitialContext().lookup(java:comp/UserTransaction); Jeff

Re: Problems with bidirectional CMR

2001-06-15 Thread Scot Weber
Harris, That extra table IS necessary. That is the way that ALL relationships are managed by the ejb container. myParent -- myParentPK myParentData1 myParentData2 myChild -- myChildPK myChildData1 Relationship: Parent has Children Containment (1 - N Bi-directional)

What is the correct format of loadbalancer.xml?

2001-06-15 Thread Andrew Diederich
I'm trying out the loadbalancer.jar stuff, but found there wasn't an example load-balancer.xml file. Below is what I've come up with, and that dtd does seem to exist on the orionserver website. Does it look sane? Side note: I pulled this up in IE to do the format checking, and without the

Undeliverable:

2001-06-15 Thread Mail Delivery Subsystem
Important information! This e-mail has not been delivered to [EMAIL PROTECTED] The receiver's mailbox is full. When the mailbox has been emptied you will be able to resend this e-mail. Best regards Telia Internet

Undeliverable:

2001-06-15 Thread Mail Delivery Subsystem
Important information! This e-mail has not been delivered to [EMAIL PROTECTED] The receiver's mailbox is full. When the mailbox has been emptied you will be able to resend this e-mail. Best regards Telia Internet

Collection or list as return ??

2001-06-15 Thread Eddie
Hellu there,Some time ago someone made a remark that it make no sense putting a "ORDERBY" in the where clause in the orion-ejb-jar.xml, as the finder methods ofthe home interface do return a Collection, which are not sorted bydefinition.Hmmm makes sence, but if I play around with it and put

RE: RMI Clustering done. Now want more.

2001-06-15 Thread Eduardo Estefano
Yes, I would be very glad if you could give me some hints on how to set this up. I have two orion servers behind a Foundry Server Irion load balancer/switch. I tried setting up the clustering, but was only able to get the HTTP clustering to work. Since I could not get my EJBs to be

Undeliverable:

2001-06-15 Thread Mail Delivery Subsystem
Important information! This e-mail has not been delivered to [EMAIL PROTECTED] The receiver's mailbox is full. When the mailbox has been emptied you will be able to resend this e-mail. Best regards Telia Internet

Undeliverable:

2001-06-15 Thread Mail Delivery Subsystem
Important information! This e-mail has not been delivered to [EMAIL PROTECTED] The receiver's mailbox is full. When the mailbox has been emptied you will be able to resend this e-mail. Best regards Telia Internet

Undeliverable:

2001-06-15 Thread Mail Delivery Subsystem
Important information! This e-mail has not been delivered to [EMAIL PROTECTED] The receiver's mailbox is full. When the mailbox has been emptied you will be able to resend this e-mail. Best regards Telia Internet

Re: Collection or list as return ??

2001-06-15 Thread Scot Weber
Eddie, java.util.Collection is an interface, so chances are the real container is a java.util.ArrayList, which is linearly sequential. I don't know this to be a fact, but it's just a thought . . . - Scot Eddie wrote: Hellu there, Some time ago someone made a remark that it make no

Re: Collection or list as return ??

2001-06-15 Thread Scot Weber
Eddie, I just tested it . . . MyTestHome.java __ public interface MyTestHome { public Collection findAll () ... } mytest.jsp__ %= myTestHome.findall ().getClass () % output_ java.util.ArrayList peace - scot Eddie wrote:

tunneling ORMI through SSL?

2001-06-15 Thread Wes Weems
Ok... a little background... I dont have TONS of ejb programming background however I understand the concepts... and am more than willing to read =) My problem... I wanna create an applicationserver (running orion of course) that is more or less a transaction server... and have clients (entirely

Auto-reply: RE: RMI Clustering done. Now want more.

2001-06-15 Thread Douglas Hood
Hi, I will be on vacation until the 9th July 2001. I will NOT have access to voice or email. My manager has my contact details in case of an emergency. Regards Doug Yes, I would be very glad if you could give me some hints on how to set this up. I have two orion servers behind a

Undeliverable:

2001-06-15 Thread Mail Delivery Subsystem
Important information! This e-mail has not been delivered to [EMAIL PROTECTED] The receiver's mailbox is full. When the mailbox has been emptied you will be able to resend this e-mail. Best regards Telia Internet

Undeliverable:

2001-06-15 Thread Mail Delivery Subsystem
Important information! This e-mail has not been delivered to [EMAIL PROTECTED] The receiver's mailbox is full. When the mailbox has been emptied you will be able to resend this e-mail. Best regards Telia Internet

Undeliverable:

2001-06-15 Thread Mail Delivery Subsystem
Important information! This e-mail has not been delivered to [EMAIL PROTECTED] The receiver's mailbox is full. When the mailbox has been emptied you will be able to resend this e-mail. Best regards Telia Internet

Undeliverable:

2001-06-15 Thread Mail Delivery Subsystem
Important information! This e-mail has not been delivered to [EMAIL PROTECTED] The receiver's mailbox is full. When the mailbox has been emptied you will be able to resend this e-mail. Best regards Telia Internet

BMP perfomance question

2001-06-15 Thread Sergei Batiuk
Hi people, Does anyone use Orion's BMPs? I have just created a BMP and tried findAll() - incredibly slow! Any thoughts very much appreciated. Sergei.

Orion w/ Oracle 9ias

2001-06-15 Thread John Tsimikas
I am trying toexecute an EJB on Oracle 9ias 1.0.2.2 app server (just released). It appears that Oracle's app server uses the Orion container (not sure what version it is using). The container is running (java -jar orion.jar) and the EJB has been deployed via (java -jar admin.jar ).

Undeliverable:

2001-06-15 Thread Mail Delivery Subsystem
Important information! This e-mail has not been delivered to [EMAIL PROTECTED] The receiver's mailbox is full. When the mailbox has been emptied you will be able to resend this e-mail. Best regards Telia Internet

Re: UserTransaction

2001-06-15 Thread Phan Anh Tran
Yeah, but can I do that from a stand-alone APP running in separate VM? Anh - Original Message - From: Jeff Hubbach [EMAIL PROTECTED] To: Orion-Interest [EMAIL PROTECTED] Sent: Friday, June 15, 2001 6:05 AM Subject: Re: UserTransaction Check www.orionserver.com, under the FAQ link:

Undeliverable:

2001-06-15 Thread Mail Delivery Subsystem
Important information! This e-mail has not been delivered to [EMAIL PROTECTED] The receiver's mailbox is full. When the mailbox has been emptied you will be able to resend this e-mail. Best regards Telia Internet

Re: Orion can't find Cloudscape database

2001-06-15 Thread Sergei Batiuk
Iuse Rmi-Jdbc framework to connect to cloudscape. I have RmiJdbc.jar, cloudscape.jar and client.jar in orion/lib directory. my datasource.xml looks like:

Re: Collection or list as return ??

2001-06-15 Thread Eddie Post
Thanks Scott, Thanks for the test (stupid that I didn't thought about that ;) ). So, yes the returned Collection (read: ArrayList) is a sorted one. But how general is this, as I can't find anything in the J2EE spec about this and is it possible that Orion will change this such that it isn't

Undeliverable:

2001-06-15 Thread Mail Delivery Subsystem
Important information! This e-mail has not been delivered to [EMAIL PROTECTED] The receiver's mailbox is full. When the mailbox has been emptied you will be able to resend this e-mail. Best regards Telia Internet

Undeliverable:

2001-06-15 Thread Mail Delivery Subsystem
Important information! This e-mail has not been delivered to [EMAIL PROTECTED] The receiver's mailbox is full. When the mailbox has been emptied you will be able to resend this e-mail. Best regards Telia Internet

RE: Collection or list as return ??

2001-06-15 Thread Jeff Schnitzer
You're right, there is no guarantee from the spec that other app servers will return data in order or even allow you to specify the ORDER BY clause in the finder sql. For that matter, there is no guarantee that the database has a sql interface. It gets even worse. The current spec for EJB-QL

Undeliverable:

2001-06-15 Thread Mail Delivery Subsystem
Important information! This e-mail has not been delivered to [EMAIL PROTECTED] The receiver's mailbox is full. When the mailbox has been emptied you will be able to resend this e-mail. Best regards Telia Internet

Re: Undeliverable:

2001-06-15 Thread Joshua Goodall
List-managers could you please drop all messages from MAILER-DAEMON@* ? This spam is unacceptable! On Sat, 16 Jun 2001, Mail Delivery Subsystem wrote: Important information! This e-mail has not been delivered to [EMAIL PROTECTED] The receiver's mailbox is full. When the mailbox has been

Re: UserTransaction

2001-06-15 Thread David-
hi guys, i m new to ejb and want to develop them using the orion server...could someone explain where do i put up my ejbs and my jsps..i mean what im looking for is a directory pattern...I tried alot of combos but...does not seem to work... thanks in advance David