• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • Ron McLeod
  • paul wheaton
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
  • Himai Minh
Bartenders:

To authors :Java Authorization Contract for Client Containers (JACC)

 
Ranch Hand
Posts: 8946
Firefox Browser Spring Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
In the Toc I noticed Java Authorization Contract for Client Containers (JACC). Could you please tell me what is it all about?Thanks
 
Author
Posts: 159
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
JACC is introduced as part of J2EE 1.4. This helps to integrate Pluggable Authorization policy providers to facilitate authorization. This helps in role-based authorization using a JACC compliant security provider. (example: Sun Access Manager, may be Netegrity).

/Ramesh
 
Greenhorn
Posts: 23
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Also refer to Chapter 5 - J2EE Security Architecture for more information on the role of JACC in then J2EE 1.4 platform.
 
Pradeep bhatt
Ranch Hand
Posts: 8946
Firefox Browser Spring Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks Ramesh and Christopher. Can I plugin a JACC and use it for EJB roles ?
 
Ramesh Nagappan
Author
Posts: 159
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by Pradip Bhat:
Thanks Ramesh and Christopher. Can I plugin a JACC and use it for EJB roles ?




Yes of course - You can use it for your EJB authorization.
 
Pradeep bhatt
Ranch Hand
Posts: 8946
Firefox Browser Spring Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Is it possible to propogate credentials from one EJB container to another container from another vendor if the same plugin is used?
 
Ramesh Nagappan
Author
Posts: 159
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by Pradip Bhat:
Is it possible to propogate credentials from one EJB container to another container from another vendor if the same plugin is used?



Yes ! The JACC provider may suggest their own solution. If not, you may able to do principal delegation between EJBs (running on different containers) using <user-caller-identity> deployment descriptor option.

/Ramesh
 
Pradeep bhatt
Ranch Hand
Posts: 8946
Firefox Browser Spring Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Great.Thanks Ramesh
reply
    Bookmark Topic Watch Topic
  • New Topic