listing users with certain roles in jsp

In my web application, I have a list of users with different roles (set up in weblogic admin console). I need to display all the application users except those who have role, say, "admin". How do I do that? Methods like request.getUserPrincipal() & request.isCallerInRole() are just for the current logged-in user. Is there any other methods that I could use? Kindly help.

[383 byte] By [jetAirwaysa] at [2007-10-2 19:53:43]
# 1

The usernames/passwords/roles will be stored in some sort of "database", whether this is a relational database or LDAP or whatever. So you always have the option of connecting to this "database" yourself. The only other thing I can think of is doing something with JMX but what is available with weblogic I don't know (I use tomcat most of the time)

YoGeea at 2007-7-13 22:32:55 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 2
It can even be in some XML deployed along with the application.
BIJ001a at 2007-7-13 22:32:55 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...