RE: EJBUser User

2001-03-27 Thread Marcel Schutte
The EJBUserManager returns an instance of EJBUserWrapper, which implements User. The EJBUserWrapper converts RemoteExceptions to RuntimeExceptions. Marcel -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Kapa Sent: Tuesday, March 13, 2001 3:07 PM

java.lang.OutOfMemoryError

2001-03-27 Thread theo van niekerk
Hi there Orion is a great application server for small web apps. (We have deployed 2 small sites using orion with success). But the moment you start thinking of using it for bigger more serious apps it will always throw a java.lang.OutOfMemoryError The problem: Orion does not passivate EJB's.

Re: Oracle Clob Prob

2001-03-27 Thread Jeff Hubbach
Claus, If you use a StringBuffer instead of a String to copy the bytes into, you won't be allocating/deallocating as much memory. Jeff Hubbach Claus Ibsen wrote: Hi We use this util method to get a clob field: ejb: weblogic 5.1 at this time, but evaluating orionserver at the moment

Re: JNDI SecurityException

2001-03-27 Thread Eric Anderson
I tried the ApplicationClientInitialContextFactory (by mistake) when I first set this up. I just gave me other problems (I think there was some sort of complaint about a missing application.xml file). I believe this complaint is because it is looking for META-INF/application-client.xml

RE: java.lang.OutOfMemoryError

2001-03-27 Thread Kevin A. Palfreyman
We found we could force passivation in the later orion builds - not sure exactly whch builds it works in, but its OK in 1.4.7. Create a directory called orion in the root of your ejb jar (i.e. as a sibling of your META-INF directory). In the orion folder, create a file orion-ejb-jar.xml (The

RE: java.lang.OutOfMemoryError

2001-03-27 Thread Elhadi barkat
This is beacause Orion doesn't free unused beans you need to use the inactivity-timeout attribute in the orion-ejb-jar.xml file it serves to free unused beans : entity-deployment ... validity-timeout=2000 ... H. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On

Un Subscribe

2001-03-27 Thread Prabahkar Subramaniam

Re: JNDI SecurityException

2001-03-27 Thread Tim Endres
I have no idea. I simply know that someone on the list claimed to have reported this bug, and to this day my servlets simply will not properly authenticate. I do not know if this is a problem with just servlets, or anything using ApplicationClient{ICF}. Our servlets are running in Orion. I

Connection Pooling

2001-03-27 Thread Kesav Kumar
How to specify min number of connections and max number of connections in my data base connection pooling. I am using the following settings currently. data-source class="com.evermind.sql.DriverManagerDataSource" name="Oracle8" location="jdbc/Challenger"

RE: java.lang.OutOfMemoryError

2001-03-27 Thread Wagner, SnowWolf CAR
When I looked at your client, I found that you have a loop that creates 100,000 instances of the EJB and have never free any. Thus, your client now has 100,000 EJB's that will not be passivated until you leave the for loop. This type of code will break most app servers. SnowWolf Wagner

help talking to the Orion JNDI tree from outside the container

2001-03-27 Thread al pivonka
I have seperate application trying to utilize the orion jndi context of an webapp with in the orion container. I have setup a jndi.properties file in the classpath of the application and on execution i recieve this exception: javax.naming.CommunicationException: Can't find SerialContextProvider

Vote for Orion

2001-03-27 Thread Larry Velez
Title: Vote for Orion Vote for Orion http://sys-con.com/java/readerschoice2001/liveupdateappserver2.cfm To vote click on the VOTE-2001-RCA banner on top: http://sys-con.com/java/readerschoice2001/index.cfm Larry

RE: Connection Pooling

2001-03-27 Thread Gerald Gutierrez
Refer to Orion documentation on the data-sources.xml file. You can find the documentation links through the orionserver web site. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Kesav Kumar Sent: Tuesday, March 27, 2001 10:08 AM To: Orion-Interest

RE: Oracle Clob Prob

2001-03-27 Thread Claus Ibsen
Hi Jeff, Thanks for the note. Will implement your suggested changes asap. /Claus -Original Message- From: Jeff Hubbach [mailto:[EMAIL PROTECTED]] Sent: 27. marts 2001 17:08 To: Orion-Interest Subject: Re: Oracle Clob Prob Claus, If you use a StringBuffer instead of a String to copy

RE: Connection Pooling

2001-03-27 Thread Taavi Tiirik
Have you tried adding following attributes to your data-source definition: min-connections=... max-connections=... Take a look at http://www.orionserver.com/docs/data-sources.xml.html regards, Taavi How to specify min number of connections and max number of connections in

Cookie creation bug (?) for servlet-including jsp files

2001-03-27 Thread Ostroff, Mike
I am working on a web-app (powered by Orion 1.4.5) that uses a jsp page with several Java servlets included within it that do the more complex computations. The jsp file has lines like: "jsp:include page="/servlet/ExampleServlet" flush="true" /" that load the servlets. This does a request on the

RE: Cookie creation bug (?) for servlet-including jsp files

2001-03-27 Thread Mike Cannon-Brookes
Sounds like the flush=true is committing the response stream before you add teh cookie. This is not a bug. You have to add cookies before ANY part of the response is sent to the browser. -mike -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Ostroff,

Re: Cookie creation bug (?) for servlet-including jsp files

2001-03-27 Thread Trevor Squires
On Tue, 27 Mar 2001, Ostroff, Mike wrote: I am working on a web-app (powered by Orion 1.4.5) that uses a jsp page with several Java servlets included within it that do the more complex computations. The jsp file has lines like: "jsp:include page="/servlet/ExampleServlet" flush="true" /"

Un Subscribe

2001-03-27 Thread McLellan, Richard

Paged search results

2001-03-27 Thread Holden Glova
Hi all, Perhaps this is slightly off topic and if so, I apologize and feel free to ignore this. My knowledge of j2ee is not high but I would like to know the best way to handle this with of course, minimal complexity. I am not sure where else I can find information on this subject from

Re: help talking to the Orion JNDI tree from outside the container

2001-03-27 Thread Tomasz Wysocki
al pivonka wrote: I have seperate application trying to utilize the orion jndi context of an webapp with in the orion container. I have setup a jndi.properties file in the classpath of the application and on execution i recieve this exception: javax.naming.CommunicationException:

Re: Paged search results

2001-03-27 Thread Johan Fredriksson
My first thought is that a cache should not be stored in a session, since that would only be available in that session and "cannot" be shared... Better to store a searchresult in the application object ( if the result is static and is the same for all users). If the searchresult is specific to a

ejb in other application ?

2001-03-27 Thread Eddie
Hellu, What (extra) do I need to do to be able to call a bean in another application (from a servlet/bean in another application)? When I call the bean in the same application, everything is ok. However when I do the same in another application, Orion isn't able to find the Bean. Hh I think