RE: j_security_check

2002-02-07 Thread Trujillo, Kris
I am having the same problem. I have noticed that it seems to only happen when using a Servlet. If the protected resource is a JSP it doesn't seem to happen. -Original Message- From: Mulder, Frans [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 07, 2002 9:51 AM To:

RE: javax.ejb.EJBLocalHome and javax.ejb.EJBLocalObject

2002-01-25 Thread Trujillo, Kris
Nope..doesn't support EJB Local. -Original Message- From: Chris Boz Jennings [mailto:[EMAIL PROTECTED]] Sent: Friday, January 25, 2002 1:43 PM To: Orion-Interest Subject: javax.ejb.EJBLocalHome and javax.ejb.EJBLocalObject Can Orion handle local interfaces, i.e., javax.ejb.EJBLocalHome

Rolling application logs

2001-12-27 Thread Trujillo, Kris
Does anyone know if there is a way to configure Orion to roll the log file defined in the server.xml/orion-application.xml?

RE: System.exit(0)

2001-12-17 Thread Trujillo, Kris
I was faced with a similar problem .. had an executable jar that would get started before the deployment of the EJBs had finished. The only thing I could come up with was to check if the HTTP listener was up. I've noticed that the HTTP listener seems to be the last thing started .. unless one

Invalidating session .. removing JSESSIONID cookie

2001-12-04 Thread Trujillo, Kris
Has anyone had any success with invalidating a session and removing the JSESSIONID cookie from the users browser (without requiring the user to close their browser)? I've tried using session.invalidate() with no success. I've also tried resetting the JSESSIONID cookie setting the time to expire

RE: Help: Out of Memory Error...

2001-11-28 Thread Trujillo, Kris
What are you setting for your VM min/max heap settings? -Original Message- From: Arjen Schoneveld [mailto:[EMAIL PROTECTED]] Sent: Wednesday, November 28, 2001 1:02 PM To: Orion-Interest Cc: Arjen Schoneveld Subject: Help: Out of Memory Error... Hi All, We are about to deploy a new

RE: EJB pool management

2001-11-16 Thread Trujillo, Kris
Title: RE: EJB pool management If your EJB is not the only thing that will be updating a table then you have to deploy the ejb with "exclusive-write-access=false" in the orion-ejb-jar.xml. Checkout the documentation on the orion-ejb-jar.xml at

RE: RE: EJB 2.0 Approved

2001-09-10 Thread Trujillo, Kris
I'm pretty sure Orion does not perform their version of EJBLocal without setting orion-ejb-jar copy-by-value=false in the orion-ejb-jar of the EJB. Setting this attribute will stop objects from being serialized passed between the EJB and the client. I am 99.9% sure that Orion does not perform

FORM based authentication with form-login-page as a JSP

2001-09-07 Thread Trujillo, Kris
Here's some starting context for my question I have a war file that has been configured to use FORM based authentication. I have set the form-login-page in the web.xml of the war file to point to a jsp file in my war file. I have setup constraints against different jsps in the war file

Keeping around stub/skeleton source for CMP Beans

2001-09-05 Thread Trujillo, Kris
Does anyone know if there is away to tell the Orion server not to delete the stub/skeleton *.java files after it has created them?

RE: Orion and Sax/JDom

2001-09-05 Thread Trujillo, Kris
Title: Message The problem your having when running java -jar orion.jar to start the server is because executable jars don't use the classpath set via a CLASSPATH environment variable or via java -cp XXX-jar orion.jar. The classpath for an executable jar is determined by what is entered in

Additional invocations to the UserManager

2001-08-31 Thread Trujillo, Kris
I have written a custom UserManager and have setup security-constraints against several JSPs in my application...everything works great..almost. I'm noticing that after the user has successfully been authenticated that my UserManager is being recalled for every page request made by the user.

RE: Orion and proxy servers - odd behaviour

2001-08-13 Thread Trujillo, Kris
I haven't had the need to use a proxy server, but you may want to try placing Apache in front of Orion and see if that solves your problem. It may save you from having to run windows. -Original Message- From: Colin Jacobs [mailto:[EMAIL PROTECTED]] Sent: Monday, August 13, 2001 1:24

RE: JMS Problem

2001-08-10 Thread Trujillo, Kris
You have to create an executable jar file and configure it in the application.xml and orion-application.xml as a client application. The executable jar will be invoked at boot time by Orion. -Original Message-From: Vikas Malhotra [mailto:[EMAIL PROTECTED]]Sent: Friday, August

RE: LDAP user manager

2001-08-10 Thread Trujillo, Kris
I haven't tried what your trying .. but I believe if you want the admin tools to use your UserManager you'll have to setup your UserManager in the $ORION_HOME/config/application.xml vs. in the Ear file. -Original Message- From: Araya Danilo [mailto:[EMAIL PROTECTED]] Sent: Friday, August

RE: LDAP user manager

2001-08-09 Thread Trujillo, Kris
I wrote my own LDAP user manager and it works just fine Are you setting the user-manager element in the orion-application.xml for the ear file? -Original Message- From: Araya Danilo [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 09, 2001 1:43 PM To: Orion-Interest Subject: LDAP

RE: increasing JVM's memory limit

2001-07-26 Thread Trujillo, Kris
Just pass the min/max settings on the command line ... java -ms128m -mx256m -jar orion.jar -Original Message- From: Peter Peltonen [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 26, 2001 4:29 AM To: Orion-Interest Subject: increasing JVM's memory limit With jserv I can configure

RE: Orion JNDI Problem

2001-07-24 Thread Trujillo, Kris
When you deploy your EJB it will be bound in JNDI by the name you use as the ejb-name in the ejb-jar.xml. If this value is not ejb/MicroarrayComponent then you'll need to add an entity-ref-mapping entry to the orion-ejb-jar.xml for that EJB. Look at the documentation on the orion-ejb-jar.xml

RE: Container Managed Bean Persistence

2001-07-24 Thread Trujillo, Kris
Title: You have a few options on this one You can set the datasource attribute on the entity-deployment tag in the orion-ejb-jar.xml for the entity bean. You can set the default-datasource attribute on the orion-application tag in the orion-application.xml. If set here and

RE: CMP: auto-creation of tables

2001-07-24 Thread Trujillo, Kris
Actually if you set the drop-tables=true attribute in the orion-application.xml or config/application.xml it will re-create the tables upon redeployment. -Original Message- From: Jeff Hubbach [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 24, 2001 2:48 PM To: Orion-Interest Subject: Re:

RE: Disappearing env-entry-mapping from orion-ejb-jar.xml

2001-07-23 Thread Trujillo, Kris
I've had similiar problems with entity-ref-mappings dissappearing after deployment. Seems to be some issues with the orion-ejb-jar.xml. -Original Message- From: Rian Schmidt [mailto:[EMAIL PROTECTED]] Sent: Saturday, July 21, 2001 2:09 PM To: Orion-Interest Subject: Re: Disappearing

MDB and Durable Subscription

2001-07-10 Thread Trujillo, Kris
Is it possible with Orion to setup a MDB that has a durable subscription? If yes, where are the configuration settings to specify the userid of the subscriber?

JDBC Logging

2001-06-28 Thread Trujillo, Kris
Is there a way to enable JDBC logging for EJBs? Has anyone tried using DataSource.setLogWriter( new PrintWriter(System.out)) and having it capture the JDBC statements from the EJBs using the DataSource? Kris

-deploy -parent name not setting parent attribute on application element

2001-06-27 Thread Trujillo, Kris
I have noticed that when running java -jar admin.jar serverinfo -deploy -parent parentname -file ... does not set the parent attribute on the application element in the server.xml. This causes JNDI lookups to beans in the parent from the child to fail after the server has been restarted. Has