Thank you! This is exactly what I needed. I will consider the regex path matching. In the meantime, the BeanPostProcessor worked. Here is my solution:
@Override
public Object...
Type: Posts; User: Joseph Caristi; Keyword(s):
Thank you! This is exactly what I needed. I will consider the regex path matching. In the meantime, the BeanPostProcessor worked. Here is my solution:
@Override
public Object...
I am using Spring Security to secure an application that has both web pages and web services. I just migrated from Spring Security 2.x to 3.0.5. My configuration allows clients to load wsdl and xsd...
From the Spring Log4jConfigListener documentation:
This listener should be registered before ContextLoaderListener in web.xml, when using custom Log4J initialization.
This works in Geronimo,...
I am securing Axis2 web services using Spring Security 2.0.4. I have configured a HttpSessionContextIntegrationFilter as follows:
<bean...
I wrote some code to see if I could get a filter to work and it does:
I define my filter provider (which I allow Spring to inject into my business object):
...
I have a method which takes a List of object IDs that will be used in a "where" clause. For example:
Select * from Customer where CustomerId in (1,2,3,4,5)
I would like to filter (via Spring...
Thanks for the input - I definitely want to upgrade to the latest version. In the meantime, the following exclusions got my application running:
<dependency>...
I have an application that depends on the Axis2-Spring integration (1.4.1). This results in a transient dependency on Spring 2.5.1. Trying to mix in other versions of Spring causes...
I was able to get this to work without custom coding of any Spring objects. I have attached my Spring configuration file. In my code, I pass the authentication information to Acegi (now called...
I am completely new to Spring Web Flow. I imported the Web Flow 2.02 samples into Eclipse and resolved the classpath isues. When I run the swf-booking-faces application, the browser asks to...
I'm using JAX-WS and WSIT for my web services. Depending on the type of security (transport or message), I can either get the user directly (getUserPrincipal) or I have to dig into the SOAP headers....
I am attempting to implement domain object security using Acegi on MySql. I will also need to support other databases in the future. I ran into a problem on MySql with the BasicLookupStrategy. It...
I have successfully implemented method-level security using Acegi and LDAP. I would now like to add ACL security. I have a fairly good understanding of the "contacts" sample application, so I'm...
Thank you. This solved my problem.
I am having difficulty downloading the source for Acegi. Note that I am new to Maven, SVN, and CVS, so my apologies if I'm just missing it.
I tried the web access...