Sessions and W98 + IE

2002-05-19 Thread David Tunkrans
Hi Im having problems with "broken" sessions for w98 + IE browsers. Does anyone know of errors in the Orion sessiontracking mechanism? /David

XAException

2002-05-19 Thread Kiran lal
Hi I am getting Orion connection closed exception when the load is high on the server. It is hapening when the ejb server is going to close the connection and commit. We are using Oracle 9iAS Server(Orion) Any advice will be helpful regards vc com.evermind.server.rmi.OrionRemoteException:

Cmp entity with postgresql

2002-05-19 Thread David Plante
hi in my postgresql database i have a table customer with a field sex witch is a char that can be either 'M' or 'W' .My cmp entity beans has a var : char sex; when i try to load the entity i get Database error: Bad Short M; witch comes from org.postgresql.jdbc2.ResultSet.getShort . in the

Re: Sessions and W98 + IE

2002-05-19 Thread Stephen Davidson
Hi David. The major errors I have come accross in IE (all tested version of 4, 5, 6) was that the 56bit encryption package was completely broken in IE. The workaround was to force 128bit, or no encryption. I am not aware of any other issues. -Steve David Tunkrans wrote: Hi Im

Any advanced CMP mapping for int[] via java.sql.Array to a VARRAY col type?

2002-05-19 Thread Andy Parkman
Can anyone point me in the direction of some more detailed information on advanced CMP mapping techniques? I was wondering if a CMP mapping can be found which would generate JDBC code to bind a field variable defined as an array of integer via a java.sql.Array type to a database column defined

RE: Any advanced CMP mapping for int[] via java.sql.Array to a VARRAY col type?

2002-05-19 Thread Juan Pablo Lorandi
I think there's a PersistanceManager interface for this, but I remember it not being configurable from files, that is, it seems it's not fully implemented yet. I guess you'll have to resort to BMP for such complex mappings. My 2c, Juan Pablo Lorandi Chief Software Architect Code Foundry Ltd.

Re: Sharing datasource

2002-05-19 Thread Scott Farquhar
Yes, that is true. At the moment, there is no EJB clustering in Orion, although it may appear in future versions. Cheers, Scott Linus Larsen wrote: If the same EJB application is running on lets say two servers, and are sharing the same datasource. Do I have to configure the orion-ejb-

Re: Sharing datasource

2002-05-19 Thread Hani Suleiman
Erm, nope. Orion has EJB clustering, it's just not documented, although I hear a document about it is coming out soon...ish... On 5/19/02 9:50 PM, Scott Farquhar [EMAIL PROTECTED] wrote: Yes, that is true. At the moment, there is no EJB clustering in Orion, although it may appear in

RE: Can I write JDBC Transactions in Bean managed entity Beans?

2002-05-19 Thread Juan Pablo Lorandi
Yes, there is. Since you're not using transactions that are independent of the app server(and thus the app server doesn't know about the transaction at all, and isn't able to vote in it) the app server built in transactional support is not functional. An example: EJB A: a SLSB EJB B: Your Entity