Tagged Questions
5
votes
2answers
973 views
What makes nimble better than shiro?
What makes nimble a better choice than shiro?
I'm trying to decide between nimble and shiro for a new grails project right now and I'm curious what makes nimble the better choice.
4
votes
1answer
303 views
Using FiltersUnitTestCase to unit test Shiro security filters, IllegalStateException
Update: I have changed this question to be about the specific problem I am having. This is because unit testing of Filters will be supported in Grails 2.0 so hopefully the documentation will be better ...
4
votes
1answer
556 views
how to implement Shiro Security of Grails in my Project
i m new to Grails and using some Shiro security.
I have made a little site with login page and if login successful it redirects me to another loggedin page.
now i want to implement Shiro Security. I ...
3
votes
4answers
432 views
need some tutorials on Grails Shiro Security
hey all
i need some good tutorials demonstrating all the aspects of grails shiro securty, that how to use them using some example.
i already have read the tutorials explained in grails site but i ...
3
votes
4answers
1k views
Security in Grails-app: Acegi or Shiro
i'm developing a Grails based web-application and i need to choose one of these two frameworks for authentication. In your opinion, what criterions favor the choice for Acegi and what criterions favor ...
2
votes
1answer
97 views
How to use a shiro native session in a grails web application?
Currently, I am using the default HttpSession object in both controllers and gsp pages:
In controllers:
...
session.mykey = anObject; // adding an object to session
...
if (session.otherkey) { ...
2
votes
0answers
50 views
Grails and Apache Shiro - How to implement doUpdatePassword and doResetPassword closures
I'm developing a Grails app and I'm using Shiro to handle the access security. I think my app is now secured but there are some missing features. The generated password is too hard to remember so it's ...
2
votes
1answer
128 views
Grails problem with shiro-quick-start: imports cannot be resolved (by Eclipse)
On my fresh new grails project, I installed shiro
(grails install-plugin shiro)
and the quick setup grails shiro-quick-start. This generated new files as described in the shiro documentation.
...
2
votes
1answer
211 views
How do we configure the grails shiro plugin v1.1.3?
I'm finding it very difficult in discovering the correct method to configure my app to work with the plug, I am using grails 1.3.6 and the Shiro plugin 1.1.3
I've setup my application according the ...
2
votes
1answer
439 views
how to use cache permissions in grails shiro
everytime i call subject.isPermitted(), it send a sql to db.
how can i cache it?
any example? thanks
i had read the doc of shiro grails plugin. but cant solove it.
DataSource:
hibernate {
...
2
votes
6answers
2k views
GORM createCriteria and list do not return the same results : what can I do?
I am using Nimble and Shiro for my security frameworks and I've just come accross a GORM bug. Indeed :
User.createCriteria().list {
maxResults 10
}
returns 10 users whereas User.list(max: 10) ...
2
votes
2answers
1k views
How to easily implement “who is online” in Grails or Java Application?
I am building a community website in grails (using Apache Shiro for security and authentication system) and I would like to implement the feature "who is online?".
This url ...
2
votes
1answer
548 views
Grails Shiro plugin : confirming my understanding
I'm bit vague about how to start using the shiro plugin, after reading few documents. I decided against Nimble, as it comes with few tables and UI plugins.
I setup shiro plugin with wildcard realm, ...
2
votes
1answer
541 views
Error in shiro configuration in a Grails-app
i'm using the Apache Shiro as the framework for athetication of my application. I was following the reference at http://www.grails.org/plugin/shiro
and my application throws the exception:
No ...
1
vote
1answer
39 views
Grails: How to protect gsp views with shiro?
I am using shiro to protect my grails application, using the default setup as with
grails shiro-quick-start
and a custom user. So far, all controller actions are protected, but if I put in the URL ...
1
vote
1answer
65 views
Shiro grails plugin - config
setting up shiro session cache with ehcache+terracotta ,putitng these configs in config.groovy -
security.shiro.sessionDAO = "org.apache.shiro.session.mgt.eis.EnterpriseCacheSessionDAO"
// This ...
1
vote
1answer
99 views
access control, role and permission in grails
I am working on a grails application for the first time and I now want to protect some pages to be viewed only by admins, and give some permissions to other users.
I am using Apache Shiro plugin for ...
1
vote
1answer
48 views
Grails / Shiro internal URL request
We have a grails app and are using the Shiro security plugin.
We are currently using the groovy URL feature to grab the output of a page and render the contents within a DIV but when such a request ...
1
vote
2answers
184 views
Grails - ShiroSecurity - manually login user
I am trying to do relatively simple thing: log in user manually. I am using FacebookGraph plugin to connect to facebook. If user logs in via Facebook, i get his ID and I want to authenticate him in ...
1
vote
1answer
132 views
Specifing package for ShiroUser in Grails
Very very basic question.
Is there a way to specify the package (when doing shiro-quick-start) where to place ShiroUser and ShiroRole classes at?
By default they are placed at grails-app/domain/ and I ...
1
vote
1answer
137 views
how to restrict action in grails shiro security
.please guide me that i have 2 methods in my Controller one is login and second is logout. and 1 role 'user' defined in my DB and i have a user with that role. now what i want to do is that person can ...
1
vote
1answer
286 views
how to detect whether a uri is allow by shiro or extract controller name from uri
i have a uri such as someController/someAction?param1=aa¶m2=bb
is there some method of grails can extract controller name and action name from this uri.
or shiro has any method to detect ...
1
vote
1answer
141 views
Upgrade Grails Version in Netbeans and Add Shiro Security
I have been working on the project where application is using grails 1.2.2....
Now I want to add the Shiro Security with the current project (using Netbeans), and I am very much new to the grails ...
1
vote
3answers
218 views
Grails + Securing Application
Im working on a legacy grails application.
I have a couple of tables like this
User ( id, name,enterprise_id)
Enterprise (id, name)
Asset (id,description, enterprise_id)
I want to validate that ...
1
vote
2answers
246 views
How to ad users using A shiro Plugin
I am using Shiro plugin for my grails application security, My application already has a user .Using the shiro plugin, we get a shiro user, now how do i integrate the shiro user with the normal user ...
1
vote
1answer
604 views
Using Shiro to secure services in grails
I'm using grails to build an application that functions primarily as a service framework. My question is: Can services be secured in the same fashion as controllers?
uri-based example:
class ...
1
vote
1answer
309 views
Run code in Hibernate Filters
I have a fairly sophisticated security mechanism that I implemented using Apache Shiro (formerly JSecurity). In order to know the exact visibility rules for an object, I need to run some code (i.e. ...
0
votes
1answer
47 views
Grails: ShiroSecurity - log in user without UsernamePasswordToken
The usual way of authenticating user is to invoke:
SecurityUtils.subject.login(new UsernamePasswordToken(params.username, params.password))
However, what if I would like to log him in automagically, ...
0
votes
1answer
45 views
Is there a way to get the IP address of the client/caller in a Shiro Filter in Grails
sorry if this is a dumb question. I have some web service calls that are implemented in Grails controllers and we use the Shiro plugin for security. I want to be able to create a whitelist of IP ...
0
votes
1answer
36 views
Finding existing ShiroRoles to add to a New ShiroUser using Grails?
How can I retrieve an existing ShiroRole that I've already created and stored in the database?
I've noticed that you can retrieve an existing ShiroUser by calling ShiroUser.findByUserName("somename") ...
0
votes
1answer
79 views
Do the Shiro tags 'isLoggedIn' and 'authenticated' mean the same thing?
I am just getting started with both Grails and Shiro and I am looking at adding Shiro to an existing project.
I am wondering if the Shiro tags isLoggedIn and authenticated mean the same thing (i.e. ...
0
votes
0answers
78 views
An error occured installing the plugin [shiro-1.1.3]: Unable to delete
Grails 2.0.0.M1 + shiro-1.1.3
grails> install-plugin shiro
| Resolving plugin JAR dependencies..
delete logs...
| Plugin installed.
grails> compile --staktrace
| Error An ...
0
votes
1answer
279 views
Apache Shiro/Active Directory integration to support SSO in a grails web application
I am working on a grails web application which uses Apache Shiro for authentication purpose. Now I have been asked to implement SSO and Active directory integration to this application. Since I am new ...
0
votes
0answers
111 views
How to implement Remember Me option in the login page using CookieRememberMeManager in Grails with Shiro Security??
I am new to Shiro and Grails.I need to implement Remember Me option in the login page using CookieRememberMeManager.
I have my own AuthController with different Actions for Login,signin and logout.
...
0
votes
1answer
333 views
Grails + Shiro plugin fails on error creating ShiroFilters cannot resolve reference to bean transactionManager
After installing the Shiro plugin (v 1.1.3) in a Grails (v 1.3.7) application and using grails shiro-quick-start --prefix="Sec" to bootstrap the different Shiro classes grails run-app fails with the ...
0
votes
1answer
260 views
Shiro Plugin conflicting with Quartz framework in Grails
I have been working Quartz framework in my grails project with lib called quartz-all-1.7.3.
Now I need to install the shiro plugin to my project. So, whenever I am installing shiro plugin to my ...
0
votes
1answer
1k views
Secure some, but not all pages in a Grails application with the Shiro plugin
Might be just me, but I have a hard time understanding how to secure just some of the pages in a Grails application with the Shiro Plugin.
I use this in my security filter:
class SecurityFilters {
...
0
votes
4answers
1k views
Problem authenticating with shiro in grails app
I have a grails 1.2 app and I want to use declarative security in order to restrict accesses based on roles. I decided to try shiro, installed the plugin, but when I try to authenticate, the message ...
0
votes
1answer
777 views
Using groovy metaClass to mock out Shiro SecurityUtils in bootstrap
For further background, see http://grails.markmail.org/message/62w2xpbgneapmhpd
I'm trying to mock out the Shiro SecurityUtils.getSubject() method in my BootStrap.groovy. I decided on this approach ...