RE: deployment tool

2001-11-20 Thread DeVincentiis Giustino
Hi, you can try Ant (http://jakarta.apache.org/ant/) Giustino -Original Message- From: kamsky@yahoo [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 20, 2001 6:54 AM To: Orion-Interest Subject: deployment tool Hi, Is there a deployment tool that is easier than

Most Urgent: How to find jndi lookup name for Transaction Manager?

2001-11-20 Thread patrick patrick
Dear all, if any one know how to find the jndi lookup name for the Transaction Manager, please let me know.. Thanks patrick __ Do You Yahoo!? Yahoo! GeoCities - quick and easy web site hosting, just $8.95/month.

A word of warning: SwiftMQ and Resource providers.

2001-11-20 Thread Lachezar Dobrev
Recently looking at the Resource-Providers docs, and EAGER to use an external JMS for my MDBs I and a colleague decided to run the demos. As quite a surprise the demo run ok. The MDB did everything when a message was sent to the Queue. The BIG disappointment was, when we tried to do the

Urgent : Hypersonic SQL Problem ?

2001-11-20 Thread dovle
Hi all , I have an application (EJBs) deployed properly. All works fine using the Postgres databases but this is a little problem using a Hypersonic Database. This issue is not Orion related but rather Hypersonic. Is Hypersonic able to do a query inside a query ? Using the DAtabaseManager I

Re: deployment tool

2001-11-20 Thread Jose Mena
does orion support the new ejb 2.0 version? - Original Message - From: DeVincentiis Giustino [EMAIL PROTECTED] To: Orion-Interest [EMAIL PROTECTED] Sent: Tuesday, November 20, 2001 8:50 AM Subject: RE: deployment tool Hi, you can try Ant (http://jakarta.apache.org/ant/) Giustino

Re: Course Grained Entity Beans...your thoughts....

2001-11-20 Thread Curt Smith
Maybe folks could comment on my thoughts? - Most client traffic (web site etc) is read only. I.E. building pages showing store catalogue, browsing available plane seats etc etc. Why run read only traffic through architecture optimized for transactional robustness? That is unless

test

2001-11-20 Thread Liang, Hua

Re: deployment tool

2001-11-20 Thread Eddie
The best there is :) I luve it Eddie - Original Message - From: DeVincentiis Giustino [EMAIL PROTECTED] To: Orion-Interest [EMAIL PROTECTED] Sent: Tuesday, November 20, 2001 8:50 AM Subject: RE: deployment tool Hi, you can try Ant (http://jakarta.apache.org/ant/) Giustino

Oracle AQ / JMS as Message Driven Bean source. ( ResourceProviders )

2001-11-20 Thread jroberson
Title: Oracle AQ / JMS as Message Driven Bean source. ( ResourceProviders ) does anyone have an example of using the JMS wrapper around Oracle AQ? Seeing as OC4J is Orion, this should be something that is either on the Oracle site or the Orion site, but is neither place? I need to be able

RE: Announcement

2001-11-20 Thread jroberson
Title: RE: Announcement This is great these issues are holding us back from sophisticated deployments right now. My 2 cents worth is this is the order of importance of documentation that is needed right now to do REAL professional deployments and developements with Orion/OC4J 1) Orion

Re: Most Urgent: How to find jndi lookup name for Transaction Manager?

2001-11-20 Thread Ray Harrison
Check out the Orionserver FAQ: How do I get a reference to the TransactionManager? import javax.naming.*; import javax.transaction.*; ... TransactionManager manager = (TransactionManager)new InitialContext().lookup(java:comp/UserTransaction); Cheers Ray --- patrick patrick [EMAIL

Re: Urgent : Hypersonic SQL Problem ?

2001-11-20 Thread KirkYarina
Subselects are broken in the version of Hypersonic that ships with Orion. Hypersonic SQL has changed hands. Try the version at http://www.hsqldb.org/ - and please report your results back to the list. Kirk Yarina At 01:02 PM 11/20/01 +0200, you wrote: Hi all , I have an application (EJBs)

RE: Course Grained Entity Beans...your thoughts....

2001-11-20 Thread jroberson
Title: RE: Course Grained Entity Beans...your thoughts you have some points for small projects but with a few caveats that apply even to the smallest and most trival of projects. 1. Writing DAO style code and not leveraging it INSIDE you BMP EJB's as delegates is BAD. It just creates

NoSuchObjectException taking over FinderException

2001-11-20 Thread Brian Chan
There seems to be a problem with FinderExceptions due to lazy loading of entity beans. It seems to me that FinderExceptions are not working properly for entity beans? Any ideas. See the following snipet. InitialContext ic = new InitialContext(); Object o =

SV: NoSuchObjectException taking over FinderException

2001-11-20 Thread Patrik Andersson
Title: SV: NoSuchObjectException taking over FinderException Hmm, maybee you get the FinderException becuase there is no such entity? -Ursprungligt meddelande- Fran: Brian Chan [mailto:[EMAIL PROTECTED]] Skickat: den 20 november 2001 20:20 Till: Orion-Interest Amne:

OrionRemoteException: Error (de-)serializing object:

2001-11-20 Thread Andres Garcia Hourcade
Hi, i am new in J2EE technology and i'm big troubles. I have an intranet application (jsp ejb) running fine with version 1.4.0, i am trying to deploy the same EAR in 1.5.2 version, but i get this error. com.evermind.server.rmi.OrionRemoteException: Error (de-)serializing object:

Re: Most Urgent: How to find jndi lookup name for Transaction Manager?

2001-11-20 Thread Greg Matthews
InitialContext ic = new InitialContext(); UserTransaction ut = (javax.transaction.UserTransaction)ic.lookup(java:comp/UserTransaction); - Original Message - From: Ray Harrison [EMAIL PROTECTED] To: Orion-Interest [EMAIL PROTECTED] Sent: Wednesday, November 21, 2001 3:12 AM Subject: Re:

DataSourceUserManager and User Credentials....?

2001-11-20 Thread Rustad, Aaron
Has anyone been able to get the DataSourceUserManager to work correctly with and Application client? I am begining to think that there my be a problem with the way orion handles security from outside itself. It seems that I have to duplicate the credentials of the user in /config/principals.xml

Calling entity bean from a session bean in Orion 1.5.3

2001-11-20 Thread Puthezhath, Rajeev (TWII Boston)
Hi, I want to access an entity bean from a session bean . I have added the ejb-ref tag in the ejb-jar.xml and the same works perfectly on orion 1.3.8 But on Orion 1.5.3 I get the following error javax.naming.NamingException: No EJB found with an ejb-name matching the ejb-link 'Entity'

Re: deployment tool

2001-11-20 Thread ???
I'm usin orion 1.2.2.. How can I deploy class files? Is there and deployment tool? - Original Message - From: DeVincentiis Giustino [EMAIL PROTECTED] To: Orion-Interest [EMAIL PROTECTED] Sent: Tuesday, November 20, 2001 4:50 PM Subject: RE: deployment tool Hi, you can try Ant

Re: Calling entity bean from a session bean in Orion 1.5.3

2001-11-20 Thread Tim Pouyer
Take out the ejb-link tag. It is not necessary. On Tue, 2001-11-20 at 18:50, Puthezhath, Rajeev (TWII Boston) wrote: Hi, I want to access an entity bean from a session bean . I have added the ejb-ref tag in the ejb-jar.xml and the same works perfectly on orion 1.3.8 But on Orion

Re: Most Urgent: How to find jndi lookup name for Transaction Manager?

2001-11-20 Thread patrick patrick
hi ray, Thanks for your prompt reply.. But, i don't need the JNDI LOOK UP name of the userTransaction, I need the JNDI NAME TO LOOKUP SERVER TRANSACTION MANAGER. SO PLEASE SEND ME THAT.. EXPECTING IMMEDIATE REPLY.. THANKING YOU PATRICK --- Greg Matthews [EMAIL PROTECTED] wrote:

about loadbalancer with selectiontype \first\

2001-11-20 Thread teddywong
Hi, When using clustering, there are two options in selectiontype, first or random, to chose the way of picking a back end server. I understand when the loadbalancer swiches to next server if the selectiontype was set "first". But I don't know how it decides which one shuld be first and next.