0
votes
2answers
61 views

Using Cookie for Authentication with Restful service in Spring

I've used Spring Security to secure RESTful web services built with Spring, but in the past the request has used authentication headers for the authentication. Now I need to secure an application like ...
4
votes
2answers
97 views

Security of web services (REST & SOAP) [closed]

My first post here! I wanted to get some community help on security of web services. I'm doing a state of the art on web services security. I need every bit of a solution out there that solves ...
3
votes
3answers
186 views

Spring security oauth2 - getting custom data from OAuth2 principal

I have a site that uses Spring security and has users (username & password) and standard form authentication. I allow users to generate a client Id and client secret linked to their account for ...
1
vote
1answer
173 views

Sharing Security Context between web app and RESTful service using Spring Security

We are designing security for a green field project with a UI web module (Spring MVC) - the client, and a RESTful services web module (CXF) - the server, to be deployed as separate war files in the ...
0
votes
1answer
108 views

Using Spring security 3 to authenticate against REST a user only with username

This is the deal. I have to do a single authentication using only the username of the application user, and I have to work with angular, spring and mysql. Already, I Have a REST POST service that ...
0
votes
1answer
54 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
100 views

SpringMVC REST access_token and session

i'm designing rest api for my application that needs user authentication. Authentication is based on username/password and after login, server returns an access_token to be putted in http header of ...
0
votes
0answers
103 views

Spring Security OAuth JSON authorization [closed]

I apologize if my questions seems to be repetitive but I couldn't find an answer. Where can I find a right way to develop OAuth(or OAuth 2) REST backend with Spring Security?Thanx for any help.
1
vote
1answer
85 views

Client-server user authentication

UPDATE: I failed to mention earlier that we want solution that will be flexible with authenticating users from within our databases or by asking other servers to tell us if the user is authenticated. ...
1
vote
1answer
252 views

Login with facebook and using oauth 2.0 for authentication of REST api calls

I am using spring framework and REST architecutre in my api. Currently I am authenticating my REST call by sending username and password with every call. And users are stored in my database. Now I ...
0
votes
0answers
49 views

User centric Restful API

I seem to be missing something in the documentation and examples I'm reading. I'm in the process of making some of our private API calls into public API calls and would also like to make a easy to ...
4
votes
1answer
368 views

Login/logout in REST with Spring 3

We are developing RESTful webservices with Spring 3 and we need to have the functionality of login/logout, something like /webservices/login/<username>/<password>/ and /webservices/logout. ...
1
vote
1answer
132 views

Karaf container, Rest WS and Spring security

I'm trying to applied security (Basic Authentication e.g.) to my Rest-WS. Those WS are published through DOSGi in a Karaf container. <!-- Register VCPENetworkManager as OSGi Service --> ...
1
vote
0answers
190 views

Security for webapp and rest services with spring

First of all, let me thank you a lot for the great help you give in this site! Well, I will go right to the point: I am a newbie in spring and I have used appfuse for creating a new web app. The ...
2
votes
1answer
417 views

OAuth2 with spring-security - limit REST access by HTTP method

So we've implemented the OAuth2 - client credentials grant between our REST server and a client application server using spring-security . The client can access its resources with the token it gets ...
1
vote
4answers
149 views

Spring - How to protect RESTful private resources?

I've some RESTful services, implemented with Spring MVC, exposing a set of resources. I already use authentication, based on HTTPBasicAuthentication and HTTPS. Some of the resources must be accessible ...
1
vote
1answer
507 views

Understanding OAuth2 Client credentials flow

I'm trying to understand and implement a client credentials flow between our new REST server and our existing client app. I've setup spring-security OAuth2 like this. From my understanding so far, my ...
4
votes
1answer
239 views

OAuth + spring security for internal REST communication

Setup We're developing a distributed application with Java and Spring where our existing client front end (complete with its own authentication, database, accounts, etc.) uses REST calls to access ...
1
vote
1answer
641 views

Adding REST authentication to Grails + SpringSecurity browser app

I have a Grails app in STS 3.1 with a REST API laid out in UrlMappings.groovy and a group of controllers. I installed the SpringSecurity stuff so I have Login/Logout controllers and ...
0
votes
1answer
149 views

spring security mysuccessHandler

using spring security to protect my RESt WebService i have one usue which is this class org.rest.security.MySavedRequestAwareAuthenticationSuccessHandler <?xml version="1.0" ...
0
votes
1answer
187 views

Authorization and Authentication using Jersey and Spring

I'm writing a RESTfull service using jersey and Spring 3 (including spring-security), and trying to figure out how to implement authentication and authorization. I'm new both to jersey and to Spring ...
0
votes
1answer
532 views

Login Authentication using Spring Security and Jersey Restful web Services

I'm a new bie in Jersey Restful web services and Spring Security. I have created a mobile app in which the data is fetched from backend using Jersey restful web services and JAVA. Now we are ...
1
vote
2answers
126 views

RESTful API - Control access to API (without a login page)

I have a RESTful webservice which communicates over HTTPS. I want to prevent other developers from calling the API. The API sits in front of a database which pulls data from a number of sources so i ...
1
vote
0answers
153 views

Spring security custom authentication for REST services

I have a third-party REST service that I need to integrate with Spring security. The REST service send the login and password as part of the JSON message, like this: { "user":"foo", ...
1
vote
1answer
312 views

Securing jQuery calls to Spring MVC REST API using Spring Security

I'm developing a REST JSON API with the Spring MVC Framework. I want to serve a single HTML application to the user and the whole communication between server and client is done with JSON format. So ...
1
vote
1answer
574 views

Authentication in Spring MVC via REST

I've been looking for a way to authenticate a user via REST controller (URL params). The closest thing to do so is the following: @Controller @RequestMapping(value="/api/user") public class ...
1
vote
2answers
2k views

Spring Security authenticating RESTful web service

I'm working on adding basic authentication to my RESTful web service (implemented using Spring MVC) with Spring Security having never really used it before. Right now I'm simply using an in-memory ...
0
votes
1answer
281 views

Resteasy spring security - duplicate requests

I'm having hard time to get RESTeasy working with my existing application. I can hit my end points (AdminService). My problem is everytime I make a GET request (over browser) I hit twice on my service ...
1
vote
2answers
116 views

Sending user name + encrypted password to a RESTful service

In my application I am using Spring MVC with a JavaScript client. Now comes the time when I need to add a 4-eyes validation form to my app. That is, a second physical person would have to come by and ...
0
votes
1answer
2k views

Basic Authentication in Spring MVC 3.1

I am trying to develop a sample application using Spring MVC 3.1 and REST API. There is a login form to authenticate user before entering into the application. I want to use REST API for basic ...
0
votes
2answers
969 views

Handling Authentication using restful web service in android

I'm developing an android app where it will replicate my web application. My web application has login/authentication/sessions, which is implemented using spring security frame work. Now the problem ...
0
votes
0answers
154 views

How to Hook self created jks in Spring's RestTemplate at client side

I want to use Spring's RestTemplate with SSL, but with some specific case described as below: Need to use self generated jks file for SSL. I have check some solution in stackoverflow at Rest ...
1
vote
2answers
2k views

Session management for a RESTful Web Service using Jersey

I am developing a Restful Web Service using Jersey between my Android, iPhone apps and MySQL. I also use Hibernate to map the data to the database. I have a sessionId (key). it is generated when ...
1
vote
0answers
199 views

Custom action after authentication (un)seccessful, and HTTP Basic authentication with REST

Referring my previous question conserning Spring Security and REST, I have made some progress, but still have some questions. As I said before, users will log in to my REST webservice by POSTing ...
0
votes
0answers
182 views

Spring Security or totall custom filter?

I want to secure my RESTful webservice in some way, i read for past few hours about spring security and I am not sure if I can achieve what I want with it. Here is typical scenario: User tries to ...
1
vote
1answer
771 views

Spring security without form login

I have implemented Spring Security Expression in my application Spring controller: @Controller @RequestMapping("init") public class InitController { @PreAuthorize("hasRole('ROLE_ADMIN')") ...
0
votes
1answer
223 views

Android App Authentication through Grails spring-security-core

I have a grails-app running on: http:localhost:8080/myapp with authentication by ajax POST at: http:localhost:8080/myapp/j_spring_security_check I'm trying to authenticate from an ...
2
votes
0answers
102 views

Android and OpenID support using Spring Security

I am trying to authenticate my user from my Android application to my server using Spring Security OpenID, to call webservices (secured by Spring Security). I looked AccountManager from Android to ...
3
votes
2answers
2k views

Authentication in a RESTful web-service

I'm building a restful web-service based on Spring. I'm using Spring Security. It will be accessed only by desktop applications. Basically a machine-to-machine web-service. I want a custom service ...
0
votes
2answers
298 views

Implementing 2-legged OAuth to get user specific data for use in Javascript

I am diving into OAuth 2.0 to protect my RESTful services. I own the consumer and the provider sides, and therefore do not need the end-user to allow access to the data on the provider. I've ...
30
votes
2answers
8k views

RESTful Authentication via Spring

Problem: We have a Spring MVC-based RESTful API which contains sensitive information. The API should be secured, however sending the user's credentials (user/pass combo) with each request is not ...
1
vote
1answer
397 views

Jersey Spring-Security HTML AJAX not working as expected

Currently it secures the jsp pages and can display them BUT the REST endpoints CAN NOT be found (404 for all rest AJAX Calls). I have done other things to change it were it finds the rest endpoints, ...
0
votes
3answers
240 views

How to test REST in spring app with spring security

I've got spring web application with jersey rest services. However rest is secured via spring security and login process is very hard to perform from unit test code. I'd like to test rest services ...
1
vote
1answer
318 views

What is the best way to implement REST with Spring security?

I've implemented a web application with form and OpenID authentication, but in addition I want make my webapp RESTful. On the other hand requests to REST should be accesible only to authenticated ...
1
vote
1answer
507 views

Which Spring security authentication scheme fits REST API for both mobile and web apps?

I'm building a set of REST APIs with Spring MVC and Security for a set of apps, we have two mobile apps and one webapp(the webapp is a HTML5 single page app so it pretty much standalone). My question ...
1
vote
1answer
549 views

extend spring security filter chain

I've registered my spring security xml file in the web.xml. Now I have a different jar that would like to extend spring security and add his own filter chain. This jar cannot extend the web.xml of ...
0
votes
1answer
269 views

Support both Basic and Digest authentication on the same URI mapping with Spring Security

I have a use case for securing a RESTful service and I'm not exactly sure it can be implemented or not - essentially I would like to have both Basic and Digest authentication set up. Setting up both ...
4
votes
1answer
2k views

combining spring security 3 with jersey rest api

I have a scenario where I am trying to combine spring security with jersey for my REST API. My need is rather complicated (I think) and it is as follows: Spring security is being used to intercept ...
0
votes
1answer
2k views

Spring Security 3 RestTemplate POST to j_spring_security_check

I am using Spring Security 3 with REST endpoints. I managed to get a basic Spring Security working. Part of the security-context.xml <security:http auto-config="true" use-expressions="true" ...
1
vote
0answers
501 views

Spring Security REST Webservice Annonymous Authentication Session Management

I've written a RESTful webservice using Spring MVC. I essentially enrole a customer then add further details following enrollment. The flow is basically as follows: Enter 1st set of enrollment ...

1 2