Re: Where is orion-application.xml?

2002-01-25 Thread Petr Podsednik
ORION-DIR/application-deployments/your-application/orion-application.xml - Original Message - From: Chris Boz Jennings [EMAIL PROTECTED] To: Orion-Interest [EMAIL PROTECTED] Sent: Friday, January 25, 2002 4:53 AM Subject: Where is orion-application.xml? I've got Orion working fine on

Re: Where to put application parameters?

2001-04-06 Thread Petr Podsednik
Try this: String path = "your-relative-path.xml" InputStream ins= null; try { ins = getClass().getClassLoader().getResourceAsStream(path); } catch (Throwable ex) { com.amaio.util.sys.prn("Error getting XML resource"+ex); } - Original Message - From: Toth [@FREEMAIL],

Re: Removing SBs when expiring HttpSessions ... the challenge continues.

2001-03-25 Thread Petr Podsednik
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Petr Podsednik Sent: Friday, March 23, 2001 12:37 AM To: Orion-Interest Subject: Re: Removing SBs when expiring HttpSessions ... the challenge continues. Hi, If It is possible I have a question regarding this problem. Unti

Re: Removing SBs when expiring HttpSessions ... the challenge continues.

2001-03-22 Thread Petr Podsednik
Hi, If It is possible I have a question regarding this problem. Until now I was thinking there is no problem regarding HttpSession expiring because of garbage collector which knows what remote references became invalid. Please tell me, if I am wrong and why. If it is must be handled in code what

Re: How to install 128 bit cert....

2001-03-20 Thread Petr Podsednik
I am not sure because I tried it long time ago, but in my case this was caused by copy-paste operation on cert in my Explorer5 window. When I changed encoding in my Explorer5 settings it was O.K. Regards Petr - Original Message - From: mohan krishna [EMAIL PROTECTED] To: Orion-Interest

Re: Why Entity EJBs?

2001-03-20 Thread Petr Podsednik
Hi! I fully agree with your opinion. We in our company have decided to use ONLY stateful session beans(SSB) for database access. Yes, it is necessary to create some proprietary persistence stuff, but we see a lot of benefit from it mainly because there is only one instance of SSB per database

Re: Finding my images

2001-03-05 Thread Petr Podsednik
Try this: ear ejb . Meta-Inf web *.jsp *.html . images *.gif Meta-Inf Web-Inf You can then in your jsp pages use this construction to find images (or in case of

Re: Debugging and orion

2001-02-21 Thread Petr Podsednik
From my experience the fastest and most reliable debugging in EJB world is System.out.println... - Original Message - From: Julian Richardson [EMAIL PROTECTED] To: Orion-Interest [EMAIL PROTECTED] Sent: Wednesday, February 21, 2001 11:17 AM Subject: Debugging and orion Hi, What

Re: where should I place the image files

2001-02-07 Thread Petr Podsednik
Title: where should I place the image files Try this: ear ejb . Meta-Inf web *.jsp . images *.gif Meta-Inf Web-Inf You can then in your jsp pages use this construction to find images: . img

SSL client certificate problem

2001-01-16 Thread Petr Podsednik
Hi! I have encountered the following problem. Having done the following: - configured Orion (1.3.8 WinNT) for SSL according how-to... - obtained certificates from Thawte (both server and client) IE5 presents me with the choice of no certificates when accessing the secure Orion web site althoug

Re: Dynamic JSP in Orion

2001-01-10 Thread Petr Podsednik
It is possible to dynamically create response to the browser as a result od mixing many jsp files based on some templating mechanism and it works fine. Everything can be included dynamically at run time based on some conditions. You can look at Java Pet Store application which comes from SUN

Re: HttpSession problem

2000-12-15 Thread Petr Podsednik
I apologize very much for this question. My testing wasnt proper. Thanks for understanding. Petr -Original Message-From: Petr Podsednik [EMAIL PROTECTED]To: Orion-Interest [EMAIL PROTECTED]Date: 14. prosince 2000 15:01Subject: HttpSession problem Hi all

HttpSession problem

2000-12-14 Thread Petr Podsednik
Hi all, I use session scope in my useBean tags correctly in my JSP based application and still all connected users share the same HttpSession. The same application works fine on J2EE-RI. What should be set in Orion config files to start separate HttpSession for each client? Thanks and

Re: Huge amounts of entities, no pooled instances

2000-11-28 Thread Petr Podsednik
I am not quite sure, but for each entity bean two objects are always created: - remote EJB object - object with your bussines logic. I think that only second one is subject to pooling - so maybe you can be out of memory because of large amounts of remote instances. This problem you are facing to