Re: FW: [flexcoders] setUsernamePassword and J2EE login (bounce)

2006-02-15 Thread Douglas Knudsen
rom: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Jim Schneider Sent: Saturday, February 04, 2006 12:01 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] setUsernamePassword and J2EE login   I finally got back to looking at this. I Instrumented my

RE: [flexcoders] setUsernamePassword and J2EE login (bounce)

2006-02-14 Thread Matt Chotin
Behalf Of Jim Schneider Sent: Saturday, February 04, 2006 12:01 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] setUsernamePassword and J2EE login   I finally got back to looking at this. I Instrumented my code to look at flashgateway.Gateway.getHttpRequest().getRemotePrincipal() and

FW: [flexcoders] setUsernamePassword and J2EE login (bounce)

2006-02-14 Thread Jim Schneider
: Saturday, February 04, 2006 12:01 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] setUsernamePassword and J2EE login   I finally got back to looking at this. I Instrumented my code to look at flashgateway.Gateway.getHttpRequest().getRemotePrincipal() and getRemoteUser().  RemoteUser is

RE: [flexcoders] setUsernamePassword and J2EE login

2006-02-04 Thread Jim Schneider
  From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Carson Hager Sent: Saturday, January 21, 2006 10:22 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] setUsernamePassword and J2EE login   If you use standard J2EE auth to the container, you can get the remote

RE: [flexcoders] setUsernamePassword and J2EE login

2006-01-21 Thread Carson Hager
ysystems.com   Email:  [EMAIL PROTECTED] Office:  866-CYNERGY Mobile: 1.703.489.6466     From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Matt ChotinSent: Saturday, January 21, 2006 7:37 PMTo: flexcoders@yahoogroups.comSubject: RE: [flexcoders] setUsernamePassword and J2EE

RE: [flexcoders] setUsernamePassword and J2EE login

2006-01-21 Thread Matt Chotin
@yahoogroups.com Subject: [flexcoders] setUsernamePassword and J2EE login   After calling setUsernamePassword on a service, is this information “available” to the backend services (remote object or web service)? Or perhaps after a J2EE/JAAS login? If so, how/where?   We have a requirement to do a lot

Re: [flexcoders] setUsernamePassword and J2EE login

2006-01-18 Thread Douglas Knudsen
I'm using JRun, setUserNamePassword() uses JAAS and sets up a J2EE session, username being the principal. Make use of the flashgateway.jar and use flashgateway.Gateway.getHttpRequest().getUserPrincipal().getName(); Note clearUserNamePassword() pretty much does nothing...need to do clear the sessi

[flexcoders] setUsernamePassword and J2EE login

2006-01-18 Thread Jim Schneider
After calling setUsernamePassword on a service, is this information “available” to the backend services (remote object or web service)? Or perhaps after a J2EE/JAAS login? If so, how/where?   We have a requirement to do a lot of logging of who’s doing what in the system and was wonderin