0
votes
0answers
13 views

How does SessionRegistry update new Sessions when logged in with RememberMe Cookie in Grails?

When a user is logged in to a web site a new session is created. I use Spring Security to determine the number of users that are currently online, i.e., logged in and have active sessions. The code ...
0
votes
0answers
31 views

How to check User Online Status with Spring Security in Grails?

We use Grails Spring Security in our application to perform user authentication. If a user loggs in to our application, the rememberMe cookie will be saved. This means, that the user will remain ...
0
votes
0answers
38 views

Grails Spring Security secureChannel not redirecting https?

I currently have an application I am working on that I am using in the cloud (Jelastic). I have added SSL certs to my Cloud environment and want to be able o now use https on certain pages. I have ...
0
votes
2answers
59 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
30 views

Grails Spring Security Last Request URL when AJAX

I'm recently facing the problem with last request url after login. Normally, everything works properly. But if I proceed following procedure I have troubles: Open an App in one tab and log in In ...
0
votes
0answers
35 views

spring security session expiring too fast

We have an application built with grails 1.3.7 and the spring security plugin. This application was executing in a server and it was configured to use the development database. This week we decided ...
0
votes
3answers
32 views

In Grails, how do I get a property for a relationship on a Spring Security user?

I'm using Spring Security. Let's say I have a User that belongs to a Store. The Store has a property that determines if it has an online shop or not: class Store { ... boolean isOnline ...
0
votes
0answers
61 views

Grails with Spring Security: cross-domain issues

I want to build a mobile app using phonegap, which use Grails services, but i found a problem with Spring Security, which denied cross-domain requests, and all my services required to be ...
0
votes
0answers
25 views

How to secured API for native IOS frontend

I'm trying to get a better understanding of how the whole API thing works. The API will be written with grails. The basic API is up and running, but there need to be some security, since specific ...
0
votes
1answer
29 views

springSecurityService and params to set in session

I'm trying to adapt the springSecurity plugin to my own need, so when a user authenticates, a key must be checked as valid for the User and then stored in the user's session (the user can have ...
0
votes
1answer
48 views

Where does the Spring Security plugin in Grails check the user's password?

I have set up a Grails application that uses the Spring Security plugin. I used the defaults for the plugin setup. I can't for the life of me figure out where in the canned code Spring Security ...
0
votes
1answer
92 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 ...
1
vote
1answer
51 views

passing extra params when login with grails spring security plugin

I’m writing a web service for a mobile application with grails. I use spring security core To login I call /j_spring_security_check , and send j_username , j_password Then in Ajax Success method ...
1
vote
0answers
30 views

Grails Security-UI Missing Menu

I have installed the spring-security-core, spring-security-ui, and the spring-security-acl plugins and most of the functionality seems to work, except when I view the user controller, the base menu ...
0
votes
0answers
45 views

securing URL with HTTP method in grails with spring security?

Spring security 3.0 indicates that one can specify the HTTP method on an pattern to further refine access. How can I utilize this in grails with the interceptUrlMap?
0
votes
1answer
76 views

login a user programmatically with spring security in grails and returning sessionId

I’m writing the web service of a mobile application. The application must authenticité Actually my first approach was doing a post request on j_spring_security_check with params : ...
0
votes
0answers
88 views

ERROR context.GrailsContextLoader - Error initializing the application: No bean named 'concurrentSessionController' is defined

I want to get all currently login users with springSecurity plugin using concept of sessionRegistry in grails application, for this i have made some changes in bootstrap.groovy , ...
0
votes
1answer
62 views

Testing if a user is logged in or no

How can I test if a user logged in or no using the spring security core plugin in grails? I want to know for each user I have in my database if the user is online or no, I can’t figure out how to do ...
0
votes
1answer
42 views

Getting sessionId without accessing the session

In my grails application I'm using the spring security core plugin. Is there any method that returns me a jsessionid for a given user simply by providing username and password Something like this ...
-1
votes
1answer
69 views

Dynamic ldap with spring security in grails

I am writing a grails application using the spring security plugin and would like to use the spring ldap plugin. I need to be able to alter the ldap settings though without re-compiling, so I do not ...
0
votes
2answers
78 views

Grails: unable to resolve dependencies

I'm having trouble to find out why grails cannot resolve some dependencies. This is the error message I get when trying to compile/clean/run-app: ==== localMavenResolver: tried .... ==== ...
0
votes
1answer
89 views

How to change Grails Spring Security Cookie Path

I've got two grails applications using spring security: Core Module (user and role tables mapping to Core db tables) I want to have a single sign on functionality using "remember me". The problem ...
1
vote
2answers
96 views

SpringSecurity: how to specify remember me authentication?

I'm developing an app based on Grails and Vaadin 7. I managed to make them work with SpringSecurity for authentication and authorization, but I had to develop my own Service that calls the Spring ...
0
votes
1answer
117 views

Grails, Vaadin 7 and SpringSecurity: authorization not working

I have followed this link to implement app security with Grails, Vaadin 7 and Spring Security. The authentication part works, but it looks like authorization doesn't. I've created a service as simple ...
0
votes
1answer
33 views

How to retrieve the grails server login page on android emulator, is there any suggestion?

Sir, I am new in android field so i am not able to retrieve the grails server login page on android emulator. So please suggest me to overcome above said problem. Any suggestion will be highly ...
0
votes
0answers
89 views

Grails + CAS + Web Services

I've 3 grails applications using spring security. We use custom ahtentication providers for calling a web service and verify the users instead of a database. Now we need to have a single sign on / ...
0
votes
1answer
53 views

How to access the webservice in grails through secure layer

I have simple method in controller class. Class TrainingController{ def getTrainingsJson(){ def trainingList = Training.list() println "called====" //render ...
0
votes
1answer
87 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
1answer
49 views

Multiple security providers in Grails with Spring Security

In Grails with Spring Security, how can I run different spring security plugins for different domains? For a few methods on a controller I want them to be secured with a normal username/password, ...
0
votes
1answer
98 views

Spring Security grails login redirect

i have a problem, maybe someone can help me :) i'm using spring security on my grails app and want to to this: My Homepage is : http://www.test.com:8080/my-app/ this is the index.gsp now i have ...
1
vote
1answer
96 views

Grails Spring Security ACL domain object method secured

My question is : Is that possible to secure a domain object method and even dynamic methods like findByName? It works very well on service methods but I can't make it work on a domain instance method ...
1
vote
0answers
41 views

Grails filters or acl

I'm planning to create a customer private area on a web site written in Groovy/Grails where each customer can login and view it's own data, edit it, and so forth. Reviewing the mechanisms available ...
0
votes
1answer
114 views

Change password form which validates old password with spring security

Im using grails for web development and spring security for authentication and authorization. I want to make a simple form to allow users to change their password. This is a form with three password ...
0
votes
1answer
39 views

Adding RequestMap

how can I upgrade an existing grails application with a request map? I didn't use grails s2-quickstart package user role requestmap but only grails s2-quickstart package user role AFAIK I have ...
0
votes
0answers
70 views

grails spring security facebook redirect uri

Do we need any special configuration when running tomcat behind apache? I have my grails app running on tomcat 8080 behind apache on port 80. When I do facebook login it fails with the following ...
0
votes
1answer
92 views

grails spring security core plugin - login with username and email

Can the spring security call be configured to be able to authentication by email and username? Currently as I can see from the doc that userLookup.userDomainClassName is configured to match one field, ...
1
vote
0answers
53 views

Spring secuirty core and cookie with grails

I am using Grails 2.1.2 with spring security core and I want it to use cookie so that user should not have to login for second time. I added the following to my Config.groovy rememberMe.cookieName = ...
0
votes
2answers
188 views

grails with spring-security: manually log out selected users

As a application administrator I would like to be able to log off any user, for example, after setting the flag "enabled = false" to the selected user. Is it possible in spring-security? I should ...
0
votes
0answers
136 views

Remember Me feature in spring security core and grails

I am trying to implement 'remember me' feature in my grails application using spring security core. The idea is to login user directly without asking for username and password if the user has logged ...
0
votes
0answers
18 views

Spring security facebook cookie

I am using spring security facebook to integrate my grails application with facebook. I the age of cookie to be 1 month, but currently the age of cookie is as the age of session. So, after a session ...
0
votes
1answer
230 views

Custom Http Authorization Header with Spring Security

We are building a Restful service using Grails framework and are providing security for it using Spring Security plugin. I wanted to check with you all on best approach to take when you want to ...
0
votes
0answers
65 views

How to set up 'login with Google' option for spring security?

I'm trying to use Google openid for a grails project, but don't know where to go from here. The project is already configured with spring security and I have installed the Spring Security OpenId ...
0
votes
2answers
120 views

No bean named but bean is defined

I'm working on an update version of grail-oauth-plugin that support last spring-oauth My plugin version works good and I have implemented a workin oauth2 server. But now I want to add a custom-grant ...
0
votes
1answer
53 views

Implement OAuth 2.0 limited capability device flow with Spring Oauth

I have successfully implemented OAuth 2.0 in a grails 2.0 app using Spring Security and latest version of Spring Security Oauth . But now I want to add to the standar OAuth 2.0 auth flow another flow ...
0
votes
1answer
139 views

How to Create ACLs in Spring-Security-Acl

I'm just getting started with Grails and am hitting a wall trying to configure the spring-security-acl plugin. I've been following the official plugin tutorial but am unable to get past the ...
0
votes
1answer
112 views

Grails Apache breaks after plugin install?

I am currently working on a Grails project and I have the plugins below already installed: Spring Security Core Spring Security UI Mail ETC... The solution was working fine and everthing was fine ...
0
votes
1answer
48 views

Groovy, STS, and debug info, information, or symbols

I'm trying to include the debug information or symbols in my Groovy code so that I can use the Spring Security annotations with SpEL to access an annotated method's arguments by name. For example: ...
1
vote
0answers
41 views

How is this situation possible with SpringSecurity and Grails?

Given a controller method annotated with 'IS_AUTHENTICATED_FULL', and the injected springSecurityService, I am puzzled why occasionally I am seeing exceptions being raised due to a null user instance. ...
0
votes
1answer
48 views

Failed to get fields from a class that extends SpringSecurity User class (in a Grails project)

I have 2 childs class that extends the SpringSecurity User class in a Grails project. Example: class MyUserOne extends User { def email def address } class MyUserTwo extends User { def ...
1
vote
1answer
61 views

How to Use Salt Generated in PHP in Grails Project

I have a PHP application I'm converting to Grails. The PHP application used a salt-mechanism to encode the passwords of all its users. When moving the salt and salted password into the (custom) user ...

1 2 3 4 5 13