RMI-HTTP(s)-Tunneling done. FYI!

2002-02-06 Thread Lachezar Dobrev
Hi. Lately I sent an email describing my problems with the rmi-http-tunneling. Many of you may have stumbled upon these problems. Well... I was able to run it, even over HTTPS! Problem description: The rmi-http-tunnel servlet bundled with Orion 1.5.2 (maybe other versions also) does

FW: [Ofbiz-devel] App Server Performance

2002-02-06 Thread Mike Cannon-Brookes
See below for an interesting test one of the OFBiz guys did using their framework in different servers. Good to see Orion smoked 'em! ;) (Yes, I'll give up a half second for my $1500/server vs ~$10k/cpu for WL!) Cheers, Mike Mike Cannon-Brookes [EMAIL PROTECTED] Atlassian :: www.atlassian.com

What about session-tracking?

2002-02-06 Thread José Mª García
Hi, We have an application and we have problems with the sessions. Sometimes we lost the values of session variables. In Orion documentation we look some information about the session tracking. But there are a few information. Do you have more information about the sessionwith Orion?

Auto-reply: RMI-HTTP(s)-Tunneling done. FYI!

2002-02-06 Thread ORAPOST
Hi, Please note that as of the 8th February my email address has changed from [EMAIL PROTECTED] to [EMAIL PROTECTED]. Could youplease update your address book, and direct any email to my new address. Cheers, Lee BEGIN:VCARD VERSION:2.1 N:Smith;Lee FN:Lee Smith ORG:Oracle Corporation

RE: What about session-tracking?

2002-02-06 Thread Smith Jason
RU losing the session variables when hopping over to HTTPS? If so, you need to set your web app to "shared"... share=true maybe? /Jason -Original Message-From: José Mª García [mailto:[EMAIL PROTECTED]]Sent: Wednesday, February 06, 2002 1:51 PMTo: Orion-InterestSubject:

re: apache + orion

2002-02-06 Thread Daniel Lopez
Hi, Yes it is. But you have to play with mod_rewrite as mod_proxy just allows you to redirect directories. Combining both modules you can select certaing types of files, but be careful as mod_rewite is somtimes tricky. D. Hello, I recently started up Orion on 127.0.0.1:8090 with apache

Username and Password

2002-02-06 Thread Christian, Joanne
HI All, I'm new to J2EE and Orion. I have set up form-based authorization using DataSourceUserManager. Super! From my initial jsp and/or servlet (not the login page), I would like to access the username of the person who just logged in. How can I do this? I have tried to get attributes from

When to use OrionCMTDataSource?

2002-02-06 Thread sana
Hi, What kind of EJB needs to use OrionCMTDataSource (or ejb-location of DriverManagerDataSource)? CMT EJB only? Thanks, sana __ Do You Yahoo!? Yahoo! BB is Broadband by Yahoo! http://bb.yahoo.co.jp/

RE: Username and Password

2002-02-06 Thread Tom Gallaway
Would you please take me off your email list. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of Christian, Joanne Sent: Wednesday, February 06, 2002 9:30 AM To: Orion-Interest Subject: Username and Password HI All, I'm new to J2EE and Orion. I have

Message status - undeliverable

2002-02-06 Thread Mailer-Daemon
The message that you sent was undeliverable to the following: ggounden Information about your message: Subject: re: apache + orion

RE: Username and Password

2002-02-06 Thread Aaron Tavistock
Most of this material is not specific to Orion but defined in the J2EE specs. Part of the process is that j_username, etc are effectively 'special values' recognized by the app server when doing authentication, so you really won't ever have access to these values. But since it is defined in the

RE: Username and Password

2002-02-06 Thread Jeff Schnitzer
HttpServletRequest.getUserPrincipal().getName() should do the trick. Jeff Schnitzer [EMAIL PROTECTED] -Original Message- From: Christian, Joanne [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 06, 2002 9:30 AM To: Orion-Interest Subject: Username and Password HI All, I'm

RE: Username and Password

2002-02-06 Thread Marc Rabil
You can get the user name for the request like this: request.getRemoteUser() I think, by design, you are not able to get the password from the container. You can however, use the request.isUserInRole() method to see what role they are in. Otherwise, you'll need to access your DB for the

Re: When to use OrionCMTDataSource?

2002-02-06 Thread Nevin Ng
Take a look at http://kb.atlassian.com/content/orion/docs/datasource-configuration/datasource-configuration.html It has some detail explaination of your question. ;-) Regards, Nevin - Original Message - From: "sana" [EMAIL PROTECTED] To: "Orion-Interest" [EMAIL PROTECTED] Sent:

RE: Username and Password

2002-02-06 Thread The elephantwalker
Dear Joanne, String username = request.getRemoteUser(); That does the trick for me. As far as the password, this is what I do. Protect a servlet or jsp(lets say /login) where you want to get the vital information from within your web.xml. Since you have already used form-based

classpath issues??

2002-02-06 Thread Dan Ascheman
Ok, I've created an application (.ear file) which has successfully been deployed, BUT my servlet in my .war file blows up on a runtime exception because it can't find it's base class, or helper classes. I have a .jar file called allsrc.jar that contains all classes in my system, and that

Re: classpath issues??

2002-02-06 Thread Jacky Cheung
You can put allsrc.jar under WEB-INF/lib of your webapp. Or you can put the jar in ear and add an entry Class-Path: allsrc.jar in the manifest file of the ear. Best regards, Jacky - Original Message - From: Dan Ascheman [EMAIL PROTECTED] To: Orion-Interest [EMAIL PROTECTED] Sent:

[announce] Log4J Appender for Orion's application.log

2002-02-06 Thread Geoff Soutter
Hi there, I've hacked up an Orion Appender to allow you to log to the application.log file, via the Logger instance that Orion installs at java:comp/Logger. Here it is in all it's glory, use it however you wish. Cheers Geoff PS, did anyone figure out if it's possible to get orion to roll it's

Re: When to use OrionCMTDataSource?

2002-02-06 Thread sana
Hi, http://kb.atlassian.com/content/orion/docs/ datasource-configuration/datasource-configuration.html Some excerpts from this documentation: | Even if using a real JDBC 2.0 DataSource, Orion wrappers | should be used if these DataSource are to be used | for EJBs utilizing CMT (Container