[JBoss-user] [Security JAAS/JBoss] - Re: UnsupportedCallbackException using TextInputCallback

2004-10-28 Thread [EMAIL PROTECTED]
You don't need to if you have witten a custom version of the ClientLoginModule.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3853151#3853151

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3853151


---
This Newsletter Sponsored by: Macrovision 
For reliable Linux application installations, use the industry's leading
setup authoring tool, InstallShield X. Learn more and evaluate 
today. http://clk.atdmt.com/MSI/go/ins003001msi/direct/01/
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security JAAS/JBoss] - Re: UnsupportedCallbackException using TextInputCallback

2004-10-27 Thread leathurman
I know this thread is very old but I am trying to implement something very similar, I 
too need to capture the users organisation. 

However all I did was amend my customer and the ClientLoginModule to supply a 
TextInputCallback. Both my JAAS login and the filter which uses the Client-login 
module populate this callback with the organisation.

Why should I need to amend the jboss-service.xml?

Regards
Lea.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3852940#3852940

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3852940


---
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588alloc_id=12065op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security JAAS/JBoss] - Re: UnsupportedCallbackException using TextInputCallback

2004-02-29 Thread starksm
You would have to specify your hown CallbackHandler implementation that knew how to 
provide the text information as there is no way for the default JBoss handler to know 
how to deal with TextInputCallbacks. You would need to specify your CallbackHandler 
implementation to the JaasSecurityManagerService setup found in the 
conf/jboss-service.xml descriptor:



  |!-- JAAS security manager and realm mapping --
  |mbean code=org.jboss.security.plugins.JaasSecurityManagerService
  |   name=jboss.security:service=JaasSecurityManager
  |   attribute name=SecurityManagerClassName
  |  org.jboss.security.plugins.JaasSecurityManager
  |   /attribute
  |   attribute name=CallbackHandlerClassName
  |  x.y.z.MyCallbackHandler
  |   /attribute
  |/mbean
  | 

The x.y.z.MyCallbackHandler should subclass the default 
org.jboss.security.auth.callback.SecurityAssociationHandler implementation and 
delegate the Callbacks not handled by MyCallbackHandler to the 
SecurityAssociationHandler implementation.


View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3823468#3823468

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3823468


---
SF.Net is sponsored by: Speed Start Your Linux Apps Now.
Build and deploy apps  Web services for Linux with
a free DVD software kit from IBM. Click Now!
http://ads.osdn.com/?ad_id=1356alloc_id=3438op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user