we're currently doing a 2-legged Oauth using GET, it works fine except the querystring contains sensitive data and can be seen in the browser address bar. We'd like to convert it to a Post.
...
Type: Posts; User: jou128; Keyword(s):
we're currently doing a 2-legged Oauth using GET, it works fine except the querystring contains sensitive data and can be seen in the browser address bar. We'd like to convert it to a Post.
...
one of the requirements for my portal project is to have multiple custom authenticationproviders.
if user came from foo.com, then use authenticationproviderXYZ
if came from bar.com then use...
can spring social do 2-legged OAuth? any examples will be great.
Hi there,
In our webapp, we have something like this
SomeServiceClass {
private Executor taskExecutor; // gets set in a private method for now, but will be injected by spring xml later on. ...
Hi,
If I have a class, say AccountManagerController extending MultiActioncontroller, which performs the CRUD on an account, but to add and edit account, my class really needs to extend the...
In this case, I'm assuming I wouldn't be taking the usual spring mvc route in which controller forwards the query result to the JSP. Instead, when the user submits the query, it'd immediately go to...
hi all,
for our next web app, we'll have quite a few search pages which we
anticipate will take a long time to complete. We'd like to have a
"progress" page to inform the user that their...
here's my specific question:
let's say I need to create 10 form controllers.
is it a best practice to create a MyTopLevelFormController that extends SimpleFormController and then have the 10...
hi,
considering spring for our next project. one early question is that do you recommand creating a thin layer betw my controllers and spring's. In the case of struts, it's recommanded that you...