Re: [jBoss-User] JAAS

2001-03-12 Thread Scott M Stark
The security classes are in the jbosssx-client.jar which can be found in the client directory. The xml source for the JAAS howto has been updated but the html doc has not been regenerated. - Original Message - From: "Doug Ferguson" [EMAIL PROTECTED] To: "jBoss Users" [EMAIL PROTECTED]

Re: [jBoss-User] JAAS Classloading

2001-02-21 Thread Andrew J. Ayers
Thanks for the help. Rickard berg wrote: Hi! Oleg Nitz wrote: You are right, JAAS uses SystemClassloader, this restriction sits inside jaas.jar, we can't change it. I've heard that Sun will change this in the next JAAS release (in JDK 1.4, I guess), but for now you should put all

Re: [jBoss-User] JAAS Classloading

2001-02-20 Thread Oleg Nitz
Hi Andy, You are right, JAAS uses SystemClassloader, this restriction sits inside jaas.jar, we can't change it. I've heard that Sun will change this in the next JAAS release (in JDK 1.4, I guess), but for now you should put all needed classes to the classpath of the server. Regards, Oleg

Re: [jBoss-User] JAAS Classloading

2001-02-20 Thread Rickard Öberg
Hi! Oleg Nitz wrote: You are right, JAAS uses SystemClassloader, this restriction sits inside jaas.jar, we can't change it. I've heard that Sun will change this in the next JAAS release (in JDK 1.4, I guess), but for now you should put all needed classes to the classpath of the server. I

Re: [jBoss-User] JAAS security, login mechanism

2001-02-08 Thread Scott M Stark
t;Cor Hofman" [EMAIL PROTECTED] To: "jBoss" [EMAIL PROTECTED] Sent: Sunday, February 04, 2001 9:15 AM Subject: RE: [jBoss-User] JAAS security, login mechanism Rickard, I hate to dwell on this, but isn't it a little more complicated then that? Imagine the following: o A servlet/JSP

RE: [jBoss-User] JAAS - Calling a bean from another bean.

2001-02-06 Thread dreaddy
~JM How *do* you call one bean from another bean. Also How do you interact with a stored procedure. I'm using JAAS Security. I have two Stateful Session Beans. First Bean(Master bean) calls another Bean(Slave Bean). First bean is called by client using JAAS loginContext, it gets

RE: [jBoss-User] JAAS - Calling a bean from another bean.

2001-02-06 Thread Kenworthy, Edward
Exactly the same way as you would from the client. -Original Message- From: dreaddy [mailto:[EMAIL PROTECTED]] Sent: 06 February 2001 17:08 To: jBoss Subject: RE: [jBoss-User] JAAS - Calling a bean from another bean. ~JM How *do* you call one bean from another bean. Also How do

RE: [jBoss-User] JAAS - Calling a bean from another bean.

2001-02-06 Thread dreaddy
Kenworthy, Edward I don't know how to call a stored procedure from a client. Can you provide a snippit? Exactly the same way as you would from the client. -Original Message- From: dreaddy [mailto:[EMAIL PROTECTED]] Sent: 06 February 2001 17:08 To: jBoss Subject: RE: [jBoss-User

RE: [jBoss-User] JAAS - Calling a bean from another bean.

2001-02-06 Thread Kenworthy, Edward
Err, you are posting to the right thread are you ? The question and the title of this thread is "Calling a bean from another bean." -Original Message- From: dreaddy [mailto:[EMAIL PROTECTED]] Sent: 06 February 2001 17:57 To: jBoss Subject: RE: [jBoss-User] JAAS - Calling a

RE: [jBoss-User] JAAS security, login mechanism

2001-02-05 Thread Darius Davidavicius
Hi all, I have read the documment about JASS for JBOSS (By Scott Stark mailto:[EMAIL PROTECTED] for JBoss-PRE2.1, Jan 20 2001) I i want to try it. I using JBoss Pre21 (previous week compile) After i did all describet steps and run the sample E:\TOOLS\JAVA\JDK\bin\java

RE: [jBoss-User] JAAS security, login mechanism

2001-02-05 Thread Cor Hofman
it! Regards, Cor -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Darius DavidaviciusSent: Monday, February 05, 2001 15:06To: jBossSubject: RE: [jBoss-User] JAAS security, login mechanismHi all,I have read the documment about JASS

Re: [jBoss-User] JAAS security, login mechanism

2001-02-05 Thread Peter Routtier-Wone
Exception in thread "main" java.lang.SecurityException: Unable to properly expand file://${jboss_home}/client/auth.conf It looks to me like the symbol ${jboss_home} is not being resolved. I don't know what platform or shell you are using but if you are using Windows then try %jboss_home%.

RE: [jBoss-User] JAAS security, login mechanism

2001-02-05 Thread Darius Davidavicius
YES! so silly :) i using Windows so it shoud be %JBoss_Path% Thanks -- -- To subscribe:[EMAIL PROTECTED] To unsubscribe: [EMAIL PROTECTED] List Help?: [EMAIL PROTECTED]

RE: [jBoss-User] JAAS security, login mechanism

2001-02-05 Thread Alexander Klyubin
avicius Sent: Monday, February 05, 2001 18:31 To: jBoss Subject: RE: [jBoss-User] JAAS security, login mechanism Now i have another error home someone helps me :) If password is correct. client gets such log: Created LoginContext [JAASSecurity] User 'DDD' authenticated. javax.naming.NoInitialCo

RE: [jBoss-User] JAAS security, login mechanism

2001-02-05 Thread Alexander Klyubin
CTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Darius Davidavicius Sent: Monday, February 05, 2001 18:31 To: jBoss Subject: RE: [jBoss-User] JAAS security, login mechanism Now i have another error home someone helps me :) If password is correct. client gets such log: Created LoginContext [JAASSecu

RE: [jBoss-User] JAAS security, login mechanism

2001-02-05 Thread Darius Davidavicius
faces.NamingContextFactory"); System.setProperty("java.naming.provider.url", "YOUR_SERVER_HERE:1099"); Alexander Klyubin -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Darius Davidavicius Sent: Monday, February 05, 2001 18:31 To: jBoss Subje

RE: [jBoss-User] JAAS security, login mechanism

2001-02-05 Thread Alexander Klyubin
mbly-descriptor ... " Alexander Klyubin -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Darius Davidavicius Sent: Monday, February 05, 2001 18:58 To: jBoss Subject: RE: [jBoss-User] JAAS security, login mechanism my client looks like: ...

Re: [jBoss-User] JAAS security, login mechanism

2001-02-04 Thread Rickard Öberg
Hey Cor Hofman wrote: When looking at the client code doing the login and creating the Session bean seem two completely disjoint operations. How does the server know that a login applies to a session bean I created? The articel suggests that the code to execute basically boils down to the

RE: [jBoss-User] JAAS security, login mechanism

2001-02-04 Thread Sacha Labourey
Hello, How does the StatelessSession bean called "bean" get associated with the login()? The login information is associated with the current thread (or the entire JVM; same principle though). When you call a bean this information is used for authentication by the bean's stub object

RE: [jBoss-User] JAAS security, login mechanism

2001-02-04 Thread Cor Hofman
: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Rickard berg Sent: Sunday, February 04, 2001 16:58 To: jBoss Subject: Re: [jBoss-User] JAAS security, login mechanism Hey Cor Hofman wrote: When looking at the client code doing the login and creating the Session bean seem two completely

Re: [jBoss-User] JAAS security, login mechanism

2001-02-04 Thread Rickard Öberg
Cor Hofman wrote: That's indeed very simple. But it makes me wonder if I could run into trouble when I use this mechanism within a servlet. How do I avoid that I have to login over and over again? Because I think I do not have any control over the thread my servlet is running in. Or am I

RE: [jBoss-User] JAAS security, login mechanism

2001-02-04 Thread Cor Hofman
, 2001 17:22 To: jBoss Subject: Re: [jBoss-User] JAAS security, login mechanism Cor Hofman wrote: That's indeed very simple. But it makes me wonder if I could run into trouble when I use this mechanism within a servlet. How do I avoid that I have to login over and over again? Because I think I do

Re: [jBoss-User] JAAS security, login mechanism

2001-02-04 Thread Rickard Öberg
Hi! Cor Hofman wrote: I hate to dwell on this, but isn't it a little more complicated then that? Imagine the following: o A servlet/JSP implementation under which my servlets/JSP pages run (using a single JVM ? Probably...) o Several concurrent users using servlets or JSP's, which all

RE: [jBoss-User] JAAS security, login mechanism

2001-02-04 Thread Cor Hofman
Rickard, Thanks for the hints I will look into it and post any of my findings if relevant Regards, Cor. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Rickard berg Sent: Sunday, February 04, 2001 18:19 To: jBoss Subject: Re: [jBoss-User] JAAS

Re: [jBoss-User] JAAS Based Security in JBoss

2001-02-01 Thread Scott M Stark
That 2.1-PRE binary is not sufficiently recent to work. The 2.1-PRE label applies to a wide range of changes than have occurred since the 2.0 final release and you must have the code from 1/10/2001 or latter in order for the instructions in the howto to apply. - Original Message - From:

Re: [jBoss-User] JAAS Based Security in JBoss

2001-02-01 Thread Scott M Stark
PROTECTED] Subject: Re: [jBoss-User] JAAS Based Security in JBoss Please confirm if someone got JAAS Based Security in JBoss to work. Thanks, ~jm _ _

Re: [jBoss-User] JAAS Based Security in JBoss

2001-02-01 Thread Oleg Nitz
: Re: [jBoss-User] JAAS Based Security in JBoss Please confirm if someone got JAAS Based Security in JBoss to work. Thanks, ~jm ___ __ _ Get your FREE

Re: [jBoss-User] JAAS Based Security in JBoss

2001-02-01 Thread Oleg Nitz
On Thursday 01 February 2001 02:10, jBoss Monkey wrote: This does not have JaasSecutityManagerService entry, Strange. Is it from JBoss 2.0 or 2.1-PRE? If 2.0, then the doco is not applicable, in 2.0 JaasSecurityManager entry is in jboss.conf, if I am not mistaken. but when I add one like

Re: [jBoss-User] JAAS Based Security in JBoss

2001-02-01 Thread jBoss Monkey
Thanks Scott and Alexander, The bottom like is that I need the latest build for the JAAS security stuff. That helps a lot. ~JM From: "Scott M Stark" [EMAIL PROTECTED] Reply-To: "jBoss" [EMAIL PROTECTED] To: "jBoss" [EMAIL PROTECTED] Subject: Re: [jBoss-User

Re: [jBoss-User] JAAS Based Security in JBoss

2001-02-01 Thread jBoss Monkey
Thanks Scott and Alexander, The bottom like is that I need the latest build for the JAAS security stuff. That helps a lot. ~JM From: "Scott M Stark" [EMAIL PROTECTED] Reply-To: "jBoss" [EMAIL PROTECTED] To: "jBoss" [EMAIL PROTECTED] Subject: Re: [jBoss-User

Re: [jBoss-User] JAAS Based Security in JBoss

2001-01-31 Thread jBoss Monkey
: Rafizan Baharum [EMAIL PROTECTED] Reply-To: "jBoss" [EMAIL PROTECTED] To: jBoss [EMAIL PROTECTED] Subject: Re: [jBoss-User] JAAS Based Security in JBoss Date: Wed, 31 Jan 2001 00:17:05 -0500 (EST) i thought the link to the doco says.. "For version PRE2.1 or later only (get s

Re: [jBoss-User] JAAS Based Security in JBoss

2001-01-31 Thread jBoss Monkey
Please confirm if someone got JAAS Based Security in JBoss to work. Thanks, ~jm _ Get your FREE download of MSN Explorer at http://explorer.msn.com -- -- To subscribe:

RE: [jBoss-User] JAAS Based Security in JBoss

2001-01-31 Thread Cor Hofman
I am heavily interested in this topic as well. So anybody out there with this knowledge? Cor Hofman -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of jBoss Monkey Sent: Wednesday, January 31, 2001 10:19 To: [EMAIL PROTECTED] Subject: Re: [jBoss-User] JAAS

RE: [jBoss-User] JAAS Based Security in JBoss

2001-01-31 Thread Alexander Klyubin
y 31, 2001 13:19 To: jBoss Subject: RE: [jBoss-User] JAAS Based Security in JBoss I am heavily interested in this topic as well. So anybody out there with this knowledge? Cor Hofman -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of jBoss Monkey Sent:

Re: [jBoss-User] JAAS

2001-01-31 Thread Oleg Nitz
Ferguson, Doug wrote: I remember reading something in the lists about jBoss "cacheing" users that have logged in, what class can I examine to see how this works? JaasSecurityManager.java Oleg -- -- To subscribe:[EMAIL

RE: [jBoss-User] jaas

2001-01-23 Thread Ferguson, Doug
such a work around or the outcome of such a work around. -Original Message- From: Oleg Nitz [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 23, 2001 1:09 PM To: Ferguson, Doug Subject: Re: [jBoss-User] jaas On Tuesday 23 January 2001 03:13, Ferguson, Doug wrote: Would it be possile

Re: [jBoss-User] jaas

2001-01-23 Thread Scott M Stark
; [EMAIL PROTECTED] To: "'Oleg Nitz'" [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Tuesday, January 23, 2001 1:34 PM Subject: RE: [jBoss-User] jaas Heres what I'm trying to do: I would like to have a servlet/jsp with a form. This form will allow users to authenticat

Re: [jBoss-User] jaas

2001-01-20 Thread Oleg Nitz
On Saturday 20 January 2001 03:13, dferugson wrote: I noticed a comment in the auth.conf file that mentions db authentication. What are the details for this? I.e. collumn names/types Names are passed as a parameters to the login module. Type of the user name column should be CHAR or VARCHAR,

Re: [jBoss-User] JAAS config in jboss.properties

2000-11-26 Thread Toby Allsopp
Oleg Nitz wrote: Hi Toby, TA Oleg Nitz wrote: Toby Allsopp wrote: TA I've found that I've had to change the line in jboss.properties from TA java.security.auth.login.config==../conf/default/auth.conf TA to TA java.security.auth.login.config==file:../conf/default/auth.conf

Re: [jBoss-User] JAAS config in jboss.properties

2000-11-23 Thread Toby Allsopp
Oleg Nitz wrote: Hi Toby, Toby Allsopp wrote: TA I've found that I've had to change the line in jboss.properties from TA java.security.auth.login.config==../conf/default/auth.conf TA to TA java.security.auth.login.config==file:../conf/default/auth.conf TA That is, I have to add