Does the org.springframework.security.oauth project have a more up-to-date pom.xml which references libraries that are not that old ? Our projects pom.xml references the latest Spring Framework...
Type: Posts; User: marshallmonica@yahoo.com; Keyword(s):
Does the org.springframework.security.oauth project have a more up-to-date pom.xml which references libraries that are not that old ? Our projects pom.xml references the latest Spring Framework...
I have added the Spring OAuth dependency to our project's pom.xml:
<dependency>
<groupId>org.springframework.security.oauth</groupId>
<artifactId>spring-security-oauth</artifactId>...
I have the following questions regarding supplying an implementation for the OAuth2ProviderTokenServices interface that is different than InMemoryOAuth2ProviderTokenServices.
1. What are the...
I have been retesting with the client id set to "my-less-trusted-client" and now that I cleaned all cookies from the browser I do not see the 401 Error anymore.
Clearly one of the Spring classes...
Hello everyone !
I have been trying to have a different client_id access the sparklr photos instead of the "tonr" client_id. I took another client whose id has the same...
I wanted to say thank you to everyone. I did have to conclude that the only way to send data to a RestFul web service even if my HTTP request does not change the state of the server does require the...
Hello Everyone !
I have been experimenting with the Sparklr2 and Tonr2 applications. I have them deployed on two difference Tomcat instances and have been debugging the code that Ryan Heaton has...
Hello Owen,
Thank you for responding !!
I did experiment with the POST instead of the GET and the method does receive the list of SurveyResponse objects that I pass to the @RequestBody.
The...
I am writing RESTful web services with the Spring MVC 3.0 @RequestMapping, @RequestBody and the @ResponseBody annotations. I have one Restful web service whose URI maps to...