Hi again, and thanks for the reply.
I had thought about that option. In fact there are a couple examples out there. But they all define the <http> blocks statically in the config.xml. What I need...
Type: Posts; User: syg6; Keyword(s):
Hi again, and thanks for the reply.
I had thought about that option. In fact there are a couple examples out there. But they all define the <http> blocks statically in the config.xml. What I need...
Oops. Just found this.
But that bring up yet another question! If I need a dynamic custom AuthenticationFilter depending on the AuthenticationEntryPoint, how / where would I define it?
In other...
Thanks so much for the tip about AuthenticationEntryPoint. It seems all I have to do it extend AuthenticationEntryPoint and change the determineUrlToUseForThisRequest() method so it uses my custom...
What would be the easiest / best way to have a dynamic login with with SS3?
I am currently using a config like the following:
<http use-expressions="true">
...
<form-login...
Hello.
Did you ever get this working? I need to do the same thing - take an existing Spring Security 3-secured web and open up a couple methods to be able to use web services. Any help you could...
Hello,
Did you find a way to this? I have to do something similar - get the ROLES for my authenticated user from an XML in the request (I am using a CAS-like authentication system).
So I need a...
I have been using Acegi / Spring Security for years but have always used the 'plain vanilla' setup - using a local database, default setup, etc.
Now I need to do something more complicated and I...
I guess the title says it all. I am using JavaMailSenderImpl to send an email to all registered users in the database. What I could do it create a new MimeMessage for each address and send it...
ResidueTypes exist beforehand, they are independent Objects. PlaceResidueTypes is nothing more than a Collection of ResidueTypes associated with a given Place.
Do you still think it's weird?...
As I said in my original post:
When you create a new Place, using place.jsp, you also associate n PlaceResidueTypes. This is done in the place.jsp using javascript and hiddens. So when you...
I am trying to persist my Place class with Hibernate. Place looks like this:
public class Place
{
private Set<PlaceResidueType> placeResidueTypes;
The PlaceResidueType class looks like...
I've been banging my head against the wall on this one all day ... still haven't made much progress. Here is what I have learned:
1. I changed my <sping:bind> tags in the jsp from this:
...
I have been looking at all the messages having to do with this topic but can't see how to get mine to work. It seems like it should be pretty straight-forward. Basically I have an object,...
Hello, thanks for the reply. (I had a couple days vk).
Yes, my Controller is of the BaseCommandController flavour. Your solutions seems to be what I need to do. I've re-worked the app a bit so it...
I have a couple objects, Company and Employee. CRUD of these objects works fine. But there is a 1:n relationship between Company and Employee. So on my Company 'form' page I have all the data for the...
Hmmm ... I see. So which method of EmptyInterceptor do I need to implement? Or is this not possible?
Another quick (I hope) question:
Every table will have a userId column which I'd like to...
After browsing this forum and the web for hours I think I finally came up with the best way to update the 'dateModified' field on ANY table, when an INSERT or UPDATE is performed:
<bean...