Excellent code sample, thank you!
Type: Posts; User: pbalachandran; Keyword(s):
Excellent code sample, thank you!
I have a requirement where I need to preauthenticate requests coming from a certain referers (say URL) and essentially let the request pass through the ACEGI chain without tripping it up (ie. asking...
I figured this out from this post - http://forums.sun.com/thread.jspa?threadID=5410412
I have a JAX-WS webservice that uses Spring and Hibernate. I am trying to deploy this in Glassfish v3, but get the following deployment error:
wss:binding#6f8015a1' defined in class path...
I used this sample and I got it working, thank you.
I think I understand what you are proposing, but I am not sure on how the following will hold up:
a. The user logs into my site, and triggers a post to an external system. While he is interacting...
I need to be able to recreate a user's session (and in turn seamlessly get him logged-in by recreating his security context) using a session Id that have stored from earlier in the web conversation. ...
I am unclear about the last part of that sequence (in my previous post). Wouldn't I have to recreate the Authentication object using the unique id associated with the user? If so what is the best...
So based on your posts from last week, let me outline the sequence to ensure I got it down:
a. Before I post out to the external URL, I extract a session Id that is associated with the user's...
I was able to get the external service to modify their product to return a session attribute that I am passing to them. You had mentioned in your earlier post that a custom AccessDecisionVoter would...
I just saw your other reply. I think when I suggest a change in the external system, I would want them to associate the results with a user identifier I sent when I made the request for data.
I...
I think it is closer to the first sequence diagram with one change - the last response in your diagram (from external site to mine) is instead replaced with a new request from the external system to...
First off, I don't understand why the Security Context gets preserved on subsequent calls to the external service (if it indeed was opening a new session to post results back). It appears to be...
Thank you jamestatic for the reply.
If that indeed were the case then, how does one explain the behavior that I have outlined in item b:
a. The first time a user logs into my site and then gets...
My application is secured by Spring Security framework. Within one JSP page, I am doing a post to an external URL (i.e. a service), but when results are returned from the external site (which posts...
Thank you marcintom for your post. I did have an <img> tag that had a empty src, which seems to have been causing the repeated post of the request.
Appreciate your help.
I have a couple of controllers (one inheriting from AbstractController, while the
other inherits from AbstractWizardFormController) in which methods are executed twice with the submission of every...