RE: Local interfaces difference ???

2002-03-07 Thread Jon Iles
: Local interfaces difference ??? There is a workaround that has been in Orion for a while - by specifying that your beans are executed in the same container, you save the marshalling remote calls that normal EJB uses. In orion-ejb-jar.xml, you can set copy-by-value=false, which will pass

Re: Local interfaces difference ???

2002-03-07 Thread Joseph Ottinger
an optimisation that a vendor provided based on common sense. Why is it in the spec? Greg. - Original Message - From: Eddie Post [EMAIL PROTECTED] To: Orion-Interest [EMAIL PROTECTED] Sent: Thursday, March 07, 2002 4:54 AM Subject: Local interfaces difference ??? Hellu, Can

Local interfaces difference ???

2002-03-06 Thread Eddie Post
Hellu, Can someone tell me what the performance boost is when you change your remote and home interfaces to local interfaces with Orion 1.5.4 ? I did this but I know that with Bea you could already indicate if your beans and clients were located on the same machine such that it already had

Re: [orion-interest]Local interfaces difference ???

2002-03-06 Thread Hani Suleiman
The performance difference between local and remote beans is negligible in Orion. Orion automatically detects remote beans that are being run locally and optimizes accordingly. On 6/3/02 1:54 pm, Eddie Post [EMAIL PROTECTED] wrote: Hellu, Can someone tell me what the performance boost is

Re: Local interfaces difference ???

2002-03-06 Thread Greg Matthews
interfaces difference ??? Hellu, Can someone tell me what the performance boost is when you change your remote and home interfaces to local interfaces with Orion 1.5.4 ? I did this but I know that with Bea you could already indicate if your beans and clients were located on the same machine

RE: Local interfaces difference ???

2002-03-06 Thread Eric Hodges
- From: Greg Matthews [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 06, 2002 5:07 PM To: Orion-Interest Subject: Re: Local interfaces difference ??? and can anyone shed some light on why this has even been put in the J2EE spec. Visibroker for Java automatically detected

Re: Local interfaces difference ???

2002-03-06 Thread Scott Farquhar
There is a workaround that has been in Orion for a while - by specifying that your beans are executed in the same container, you save the marshalling remote calls that normal EJB uses. In orion-ejb-jar.xml, you can set copy-by-value=false, which will pass by reference instead.