• 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:

Role management

 
Greenhorn
Posts: 10
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Using weblogic 9.0.
For a certain web app I want to restrict access using the builtin security-constraing/login-config in web.xml.

The problem I have is how to get users to belong to a certain role.
In the Administration Console i added a Role "operator", a group "mygroup" and user "myuser". I successfully added the user "myuser" to the group "mygroup", but how do i add this group/user to the specified Role?

I always get login failed when trying to login using the form.



Here is my web.xml


Here is the login.jsp page
 
Alex Anderson
Greenhorn
Posts: 10
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Adding some weblogic specific instructions in weblogic.xml did the trick.
 
Ranch Hand
Posts: 46
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You have not defined users,groups and roles and assign user to groups,
But I think you have not defined Roles for groups
see the Realms -> nameofrealm -> Global Roles.
And Check the Caller is a member of group.
 
reply
    Bookmark Topic Watch Topic
  • New Topic