resttemplate « Security « Spring Q&A





1. Spring Security Authentication using RestTemplate    stackoverflow.com

I have 2 spring web apps that provide 2 separate set of services. Web App 1 has Spring Security implemented using a user-based authentication. Now, Web App 2 needs to access ...

2. Setting Security cookie using RestTemplate    stackoverflow.com

I am trying to call a Restful JSON service using RestTemplate and Jackson json convertor. Now in order to call the service I need to pass in a Security cookie. ...

3. Spring Security 3 RestTemplate POST to j_spring_security_check    stackoverflow.com

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" access-denied-page="/rest/denied" >
<security:intercept-url pattern="/rest/*" access="ROLE_USER"/>
and basic config as ...

4. How to configure Spring RestTemplate with SSL (in Spring @MVC)    stackoverflow.com

I want to configure my Spring @MVC stub application's Spring RestTemplate with SSL for communicate to REST base https application, that deployed on Tomcat server (Spring 3, Tomcat 7). I have ...

5. Resttemplate + basic authentication?    forum.springsource.org

I found some older threads about this, but it seems that the information is outdated. Does anyone have any new ideas on how to do this? Thanks!

6. How to configure Spring RestTemplate with SSL (in Spring @MVC)    forum.springsource.org

How to configure Spring RestTemplate with SSL (in Spring @MVC) How to configure Spring RestTemplate with SSL for, communicate with REST base https application, that deployed on Tomcat server (Spring 3, ...

7. Basic Authentication with RestTemplate    forum.springsource.org

Hi All, I need to consume the REST services exposed by our system, for that I have decided to use RestTemplate. How do I do basic authentication with RestTemplate or any ...

8. Using RestTemplate to call REST service over SSL    forum.springsource.org

Using RestTemplate to call REST service over SSL Hello, Internally, I am looking to call a rest service over SSL. This service does not request any credentials. I am using the ...