RE: Some questions on Orion

2001-07-23 Thread Ernie Phelps
Some thoughts: For support, check http://www.atlassian.com/ and http://www.orionsupport.com in addition to this list. For Education, see http://www.orionsupport.com, although I will agree that this pales in comparison to the Oracle training available. PL/SQL is built into the DB, and therefore

RE: how to disabled the function of URL rewriting ?

2001-06-18 Thread Ernie Phelps
You should be able to just turn it off in your orion-web.xml. Example: - Ernie -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of ahfei Sent: Monday, June 18, 2001 6:43 AM To: Orion-Interest Subject: how to disabled the function of URL rewriting ? hi,ev

RE: >>>Re: ATM example -> deployment error -> PLEASE some HELP

2001-05-29 Thread Ernie Phelps
Eddie, To persist the messages to disk when Orion shuts down, add a persistence-file entry to your queue, like so: Eye In my limited experience, this works fine during normal Orion shutdowns, but does not if Orion terminates abnormally (crashes, kill -9 or X the window). HTH, Ernie

RE: JSP variable in nested Tags

2001-05-24 Thread Ernie Phelps
Thanks to all for the suggestions. I have two work arounds, thanks to ideas from the list. However, I was looking to see if anyone could tell whether the specification dealt with how this should be handled, or if it was nebulous, or if it was specifically left up to the implementer to decide. I lo

RE: JSP variable in nested Tags

2001-05-24 Thread Ernie Phelps
#x27;t find out which way is correct to submit a bug report. Does anyone on the list have a resource to point me to on this issue? Thanks in advance for your help. OS: Win2k Ver: Orion 1.5.1 JDK: 1.3 - Ernie Phelps

JSP variable in nested Tags

2001-05-23 Thread Ernie Phelps
an Orion specific issue, but can't find out which way is correct to submit a bug report. Does anyone on the list have a resource to point me to on this issue? Thanks in advance for your help. OS: Win2k Ver: Orion 1.5.1 JDK: 1.3 - Ernie Phelps

RE: Orion-based JSP bug -- The Case of the Exhibiting %00

2001-04-30 Thread Ernie Phelps
This does not happen on our configuration:   Win2k JDK1.3 Orion 1.4.8   - Ernie -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Rex McFarlinSent: Monday, April 30, 2001 11:28 AMTo: Orion-InterestSubject: Orion-based JSP bug -- The Case o

RE: parsePostData

2001-04-09 Thread Ernie Phelps
Frank, Is one of the form fields an input type="file"? If not, why not just use request.getParameter("parameterName")? Could you give a little more info about what you are trying to do? - Ernie -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Frank LaRos

Problem with PostFileInputStream

2001-03-16 Thread Ernie Phelps
e has any insight, please let me know. - Ernie Phelps

RE: Custom UserManager.

2001-03-16 Thread Ernie Phelps
Michael, Are you using RoleManager to do a login? The call should look something like this (pulled from our CheckLogin action): // Login InitialContext context = new InitialContext(); RoleManager roleManager = (RoleManager) context.lookup("java:comp/RoleManager"); roleManager.login(username, pas

RE: jsp form-based authentication

2001-02-27 Thread Ernie Phelps
Roland,   Hope you are asking what I think you are. :) If this is about setting up your own user manager and calling it from role manager, keep reading. I am still trying to work out all the kinks on this for myself, but there is a message in the archives by Chris Miller, "Re: custom user ma

Custom Role Manager?

2001-02-26 Thread Ernie Phelps
Is there a way in Orion to specify/create a custom implementation of RoleManager? Basically, what I want is to have a method like this: login(java.lang.String username, java.lang.String password, java.lang.String thirdparameter) where thirdparameter is a custom parameter that will narrow the use

RE: Customer User Manager problems

2001-02-22 Thread Ernie Phelps
Juan, I found the problem thanks to your example. My implementation of TMUserManager.getGroup was returning null, which always failed even when the user was found and had a proper password. Fixed this and it works fine now. Thank you very much for the assistance. - Ernie -Original Message--

RE: Customer User Manager problems

2001-02-22 Thread Ernie Phelps
ginal Message- From: Juan Lorandi (Chile) [mailto:[EMAIL PROTECTED]] Subject: RE: Customer User Manager problems have you got a login error page? that's why the three times, also, if a user doesn't belong to a sr_guest group, you won't have access > -Original Message---

Customer User Manager problems

2001-02-22 Thread Ernie Phelps
I am having difficulties getting a custom user manager to work. Here are the steps I have taken: Implemented User (as TMUser) Implemented Group (as TMGroup) Extended AbstractUserManager (as TMUserManager) Added the following to orion-application.xml: