According to the REST specification, the service must be inactive; but then it becomes difficult to enable authentication. Some of the materials I read say that "making REST stateful is not the end of the world." But that is not the point; the point is to follow the specifications and be consistent.
So, I am asking this question here in the hope that someone can lead me in the right direction. I am working with Spring MVC to create a REST service. I have no views. This is a true REST service that consumes / produces JSON. I need to have an authentication mechanism (and authorization along the way) for this application, which is stateless and follows REST specifications. The client will be written in JavaScript (Backbone.js, CoffeeScript) and will accept the username / password from the user. He will then send this information to the server.
How can I get true authentication without authentication (and authorization) in a Spring based application?
Is SSL authentication digest the way to go?
authentication rest spring-mvc authorization restful-authentication
jsf
source share