Tagged Questions
1
vote
2answers
41 views
Additional field in login using Grails Spring Security plugin
My question is similar to this one
how to pass an additional parameter with spring security login page
though it applies to Grails Spring Security plugin. If I have to support an additional field in ...
0
votes
2answers
90 views
grails spring security login is not working
I am using grails 2.1.0. I have installed spring-security-core plugin.
When I create user it is creating it. But when I try to login then it shows:
"Sorry, we were not able to find a user with that ...
0
votes
1answer
113 views
How to integrate an LDAP user with the PERSON table created by Spring Security in Grails?
We are creating a grails aplication where we want the user to log in using their Active Directory credentials. Additionally, we want to give the business owner of this application the ability to ...
0
votes
0answers
32 views
Android authentication with spring security core
Hello im new to grails and android.... i am developing an application where the server(grails) provides user data and client(android) authenticates and gets the data. The server has spring security ...
0
votes
1answer
92 views
Grails Spring Security Core Plugin :authentication not required for controller
I have
Grails 2.0.4
spring-security-core:1.2.7.3
i want to expose some controller as web service. (this methods will be called from php application out side the domain)
Example controller :
...
0
votes
2answers
629 views
Unable to run Grails project using Spring Security Core in GGTS on Windows 7
I’m new to Grails and I’m trying desperately to get the Spring Security plugin to run. I added the following line to my project’s BuildConfig.groovy:
plugins{
...
compile ...
0
votes
1answer
109 views
spring security facebook plugin (Grails) web service access
I am quite new to Grails and the plugin usage. right now I am trying to build restful services using grails. I need some kind of authentication for user so for that I am using spring-security-facebook ...
0
votes
2answers
110 views
Checking whether the user authenticated using spring security inside a filter
I'm trying to do this in my groovy class which is in src directory of my grails application.
Its an Filter. The class looks like this :
class Proxy implements Filter {
}
Inside the init method ...
0
votes
1answer
72 views
Grails Pessimistic Lockdown doesn't work (in my case)
in Greach 2.0, Burt Beckwith talked about Pessimistic Lockdown.
I'm trying to setup Pessimistic Lockdown in my grails application but it doesn't work.
I've written in my Config.groovy:
...
0
votes
1answer
188 views
Grails spring-security-facebook plugin - Customizing client-side authentication
I am using spring-security-facebook:0.10.4 to integrate Facebook authentication for SSO in our Grails application. One of our requirements is to allow a user to turn SSO on or off (via some control in ...
0
votes
1answer
124 views
Grails Spring Security Plugin + Multiple Security Configurations
We are using thew Spring Security Plugin in our grails app.
We have useBasicAuth set to true as we use Spring Security to ensure our rest calls are called by trusted sources.
Now we have a ...
1
vote
2answers
223 views
How does Grails spring security rememberMe on custom auth?
I use grails spring security with a custom auth method for facebook authentication:
def auth() {
...
}
When I check the cookie in my browser I can see that the cookie lifetime is finished when ...
2
votes
1answer
268 views
Use username as email, Spring Security UI plugin
I'm using the Spring Security plugin, in combination with the Spring Security UI plugin.
They both work like a charm, but my problem is that I don't want my user to have a username, instead he/she ...
2
votes
2answers
208 views
How to reduce the use of PermGen space in Grails
in my Grails application using the Spring Security Core plugin for authentication. I am facing a serious problem with that because my application took 21 seconds to lift the Tomcat was carrying 43/2 ...
1
vote
1answer
167 views
Email field in user class and spring security ui plugin
I've got a problem with spring security ui plugin. I'm trying to add an email field to my SecUser class (which stores information about users). However there is no field "email" in Spring Security ...
0
votes
1answer
81 views
Authentication with SpringSecurity Core
I need help integrating a system for my company. We created a database that centralizes all the information in one authentication server.
For authentication we use an internal url like this:
...
0
votes
1answer
40 views
Couldn't able to hit the register page of Spring Security UI
Hi I have installed the spring security UI plugin in my grails app. I'm trying to create the registration page from Facebook registration, rather than from plugins default register page.
I'm ...
1
vote
1answer
89 views
Making Grails Spring Security To Authenticate Users With Email
We have a grails app which is working fine with the spring security plugin. As per our requirements, we see that there is no need for username field.
Without username field in the DB we wish to ...
1
vote
1answer
137 views
Spring Security how to redirect to login while calling a remoteFunction in Grails
When a user who is not logged in clicks on a link containing a remoteFunction like:
<a href="#" onclick="${remoteFunction(
controller: 'book',
action: 'count',
...
0
votes
1answer
645 views
Spring Security redirect back to refer URL after login and logout
I am using Spring Security for authentication. The login and logout buttons are placed on the page layout, which is used by all pages. I have a BookController which needs a parameter for the create ...
2
votes
1answer
123 views
How to configure a grails plugin from another grails plugin
I am trying to write a plugin which I can reuse in several grails applications.
The plugin should basically be a wrapper for the spring security core and the ldap plugin.
Which means it should ...
0
votes
1answer
249 views
Grails spring-security-core plugin
Is it possible to modify and let grails spring-security-core plugin utilize other beans defined in e.g /WEB-INF/applicationContext-security.xml?
Has anyone successfully been able to run for example a ...
0
votes
1answer
477 views
Grails Spring Security UI Requestmap Configuration
Im currently working on a Grails application and use the Spring Security framework with the Core and UI Plugins.
Nearly everything is working fine: User creation, editing, deleting, etc. The only ...
0
votes
0answers
75 views
Grails CAS Plugin not redirecting properly behind Apache
When I run my tomcat server behind an apache proxy I notice that the original request URL isn't being retrieved after an Authentication event has occurred. I notice in the debug logs the following:
...
0
votes
1answer
902 views
Grails Spring Security BootStrap
I am on Grails 2.1.1 and Spring Security Core Plugin 1.2.7.3.
I am trying to assign Roles to Users in BootStrap.groovy and persist these assignments. I create my Roles and an Admin User in ...
0
votes
1answer
191 views
InvalidatedSessionException in grails 2.1 with database-session 1.2.0 and spring security core when logging out
I need sessions to be stored in database. I used the database-session plugin from Robert Fischer ( https://github.com/RobertFischer/grails-database-session ) in version 1.2.0 and updated it to grails ...
1
vote
1answer
53 views
How do I specify my own LookupStrategy implementation for the grails spring security ACL plugin?
I'd like to use the Spring Security ACL plugin in my Grails 2.0.4 application. However, my app does not use JDBC or a SQL database. (We're using MongoDB).
The GormAclLookupStrategy implementation in ...
0
votes
1answer
92 views
Getting the Session in RememberMeServices- Grails/Spring Security
I have a class which implements the RememberMeServices and LogoutHandler interface. I have turned on session fixation and have the option to create session to true. When I try to get my session in the ...
0
votes
1answer
146 views
How Do I get proper error messages from Spring Security UI?
I have been using spring security UI and spring security plugin. We have our register.gsp page which works as expected. We are moving our css to twitter bootstrap so we changed register.gsp file, to ...
0
votes
1answer
116 views
How render custom error messages?
I have a domain class :
package x
class User {
transient springSecurityService
String username
String password
//other stuffs.
static constraints = {
username blank: ...
0
votes
2answers
694 views
Grails Spring Security Core Create New User
Installed the latest spring-security-core plugin for grails 2.1.0, launched s2-quickstart com.myapp User Role, it create User Role and UserRole domain, then generate-all com.myapp.User and ...
1
vote
1answer
183 views
Why is SpringSecurityUtils null in this Grails unit test?
In Grails 2.0.4, I'm trying to write a controller unit test which invokes the static SpringSecurityUtils.reauthenticate. The test returns a NullPointerException on that invocation. In a debugger, I ...
0
votes
1answer
97 views
Error configuring the requestmap in spring security core for grails
In my system, I have numerous roles assigned to the users (lets assume 3 for now ROLE_ADMIN, ROLE_USER, ROLE_SERVICES). In one of my controllers (lets assume SearchController that we have three ...
0
votes
1answer
555 views
Grails 2 Spring Security Plugin - Redirects to /login/denied after successful login
I have Spring Security Plugin successfully working for the most part in Grails 2.0.4. If I go to page "localhost:8080/dashboard", I am redirected to the login screen. When I login successfully, I am ...
1
vote
1answer
334 views
Why does Grails Spring Security channel security replace my controller names with 'grails'?
Note I am using Grails 2.0.4 and spring security core plugin 1.2.7.2
This appears to be a bug but I want to make sure I'm doing things correctly first. Basically, I want certain URLs secured with ...
0
votes
5answers
435 views
Securing Controller Actions by User in Grails
I am using the Grails security plugin on a project. I am using the annotations on controller actions to restrict access to certain classes of users such as 'ROLE_ADMIN' or 'ROLE_USER'.
(using this ...
3
votes
1answer
447 views
Is there any bug using both Spock and Spring Security plugin in same project?
I use both Spring and Spock plugins in my current project. I wrote a bunch of test cases in Spock. All are passing without any error (All are GREEN!). But the same tests are failing if I try to test ...
0
votes
1answer
94 views
Grails Spring Security Plugin: Logon directly from the controller
With the grails spring security plugin, is it possible to login a user by passing their user name and password into a method e.g. logon(username, password)? If so, how can I implement it.
Thanks
2
votes
2answers
2k views
Spring security core plugin - How to access User id from a hidden field
I'm trying to set a hiddenField in a "create" view, where the field is set to the id of the currently logged in user. Which you get from the "springSecurityService.principal.id" property.
I was ...
0
votes
0answers
579 views
grails spring security redirect after login
My Grails app uses the spring security plugin. When you attempt to access a protected resource, the login form is displayed and the path to that resource is saved under ...
0
votes
1answer
351 views
How to implement LDAP authentication in grails with spring-security-core-ldap plugin?
I am new to grails and trying to implement LDAP authentication. I was reading the official document where it says:
"There are three options for mapping LDAP attributes to UserDetails data (as ...
4
votes
3answers
1k views
Grails Spring-Security-Core plugin - Cannot authenticate user
So I am banging my head against the wall trying to get spring-security-core-1.2.7.1 to work with Grails 2.0...
I have looked at the tutorial and run s2. Read that the new plugin encrypts passwords ...
1
vote
2answers
427 views
grails spring security login page display
I'm using the spring security plugin in a Grails app. There are two reasons why the login page gets displayed
The user navigated to it directly
The user tried to access a page that is only available ...
1
vote
3answers
500 views
Which Security Framework to use for Grails application?
I spent a couple of weeks trying to figure out what solution I should bring to this question I posted. Since I couldn't find a full documentation for Shiro-Grails integration, I am looking for some ...
8
votes
2answers
5k views
Spring Security UI and grails 2.0
I am not able to use grails security UI(0.1.2) with Grails 2.0.
I have googled the possible causes for following error and also have tried suggested fixes but they don't seem to be working.
I have ...
0
votes
3answers
389 views
Spring Security Plug-in Doesn't Work With More Than One BelongsTo. Why?
I have a class like this :
class User {
String name;
String password;
static hasMany = [ authorities : testing.Role ]
static belongsTo = Role
static constraints = {
...
1
vote
1answer
927 views
Grails spring security plugin plugins missing?
I get an error when I try to deploy a war-file created by Grails.
I'm using the Spring security plugin and deploying om Tomcat 7.
After reading about similar problems I think it has something to do ...
2
votes
1answer
509 views
grails and spring security core plugin - authenticateion from client
i am starting to use spring-security-core-1.1.3 plugin with grails.
My application for authentication sends request to server:
def authSomeAction = {
def req = ...//http requet here
...
0
votes
1answer
411 views
Grails spring-security - Can I intercept before success action to check required password change?
Upon creating new users in my system, I am sending them a temporary password via email and setting an property of changePasswordNextLogin=true. When they come to log in for the first time, I would ...
0
votes
1answer
239 views
Is it possible to display different login views when using Grails Spring Security plugin
I am working on a Grails app that has two websites: a regular "desktop" site, and a mobile site where all the presentation is done using jQuery Mobile. To distinguish these sites, I use the default ...
