Thanks for the pointers everyone. After becoming very familiar with the framework and looking at the sample code projects mentioned I was able to retrofit a solution into my project.
Type: Posts; User: digid; Keyword(s):
Thanks for the pointers everyone. After becoming very familiar with the framework and looking at the sample code projects mentioned I was able to retrofit a solution into my project.
Thanks for the quick help on this. I'm still a little unclear how my existing spring security rules will apply to users that sign up with the facebook option in the quickstart. It seems I would...
Thanks for that. I made sure to allow anonymous access to the favicon.ico to make sure this works correctly.
I have a friend that is upset with annotations because he doesn't have a full view into all the beans, controllers, etc in one view. The annotations are littered throughout his project and can't...
I was about to open a JIRA but I see from your update that you have taken care of it. Thanks for your efforts on this. I noticed in the JIRA that you said " I don't really know what to make of...
What would be the best way to do a hybrid of the two? I am currently using spring security and would like to offer login access with facebook for existing and new users. However I would like to...
I also can't get the samples to work properly. I downloaded M6 source built the whole thing from scratch and launched the samples/oauth2/tonr app via mvn tomcat:run. Went to...
If I hit a secured url it redirects to the login and then the successful login redirects to /favicon.ico. I could understand why this could potentially happen but I'm not sure why all the sudden...
Got it to work. But only after refactoring my packages and @ComponentScan annotations. For some reason if I did a scan on the base package using an includeFilter on @Service and excludeFilter on...
I have setup a bunch of beans using java config @Configuration and initialize them with the ContextLoaderListener. However, for reasons irrelevant to this question, I would like to use an xml style...
Cool. Thanks.
I don't see a way of configuring a reference to the configured clusters in the services-config.xml with a message-destination.
<services-config>
...
<clusters>
<cluster...
Thank you Marten. This worked great.
I've been doing a component scan for the @Service tag and then autowiring my setters to keep my xml as minimal as possible. However I have recently created a class that has a constructor that takes...
I will try out this technique but even though it may be possible that this works I just thought it might be a good idea to integrate a no-redirect flag into acegi. Something to consider. I could...
I love the serverSideRedirect property of the AuthenticationProcessingFilterEntryPoint. For those of you not familiar with it , it does a server side include of the loginFormUrl instead of a 302...
I initialized a TimerTask using spring. It works great but I am wondering if it's at all possible to only have one instance of the timer running. I have no idea how long the timer will run for, it...
The other form isn't even being transmitted to the server to be bound to the command. You either have to put them into the same form or do some javascript magic to parse through the fields in both...
I have an issue where the Command class Bean periodically returns a null CommonsMultipartFile.
The weird thing is that it happens intermittently. I will try uploading a file and the command class...
I figured out the problem. I had both spring-aop-1.2.7 and spring-aop-2.0 in my classpath
I am at a wall with this problem. Anyone have any ideas on what could be causing this? Even with actual no advice and only declaring <aop:aspect-autoproxy/> in my spring config will cause the...
I am declaring some of my hibernate properties types with a mysql 5 db using:
org.springframework.orm.hibernate3.support.BlobByteArrayType
but SchemaExport seems to freak out and not understand...