There was a reference in my filterInvocationInterceptor to an accessDecisionManager with an aclVoter. When using both the filterInvocationInterceptor and the methodInvocationInterceptor, you have to...
Type: Posts; User: Kiran Keshav; Keyword(s):
There was a reference in my filterInvocationInterceptor to an accessDecisionManager with an aclVoter. When using both the filterInvocationInterceptor and the methodInvocationInterceptor, you have to...
Hello,
When adding an acl voter to my decisionVoters in the accessDecisionManager, I always get a
java.lang.IllegalArgumentException: AccessDecisionManager does not support secure object...
In the project.xml file, you have
<dependency>
<groupId>apache-directory</groupId>
<artifactId>apacheds-main</artifactId>
<version>0.9-SNAPSHOT</version>
...
I am getting the same error. Further down the stack trace it shows that a test does in fact fail:
log4j:WARN No appenders could be found for logger...
Not exactly sure how to disable this. I have created a definition:
<bean id="propertyPlaceholderConfigurer"
class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">...
I am using OGNL 2.67 and getting this error. Is there a specific version I need to use?
Hmm. I should have mentioned that I have OGNL on the classpath. Also, I have added:
<map>
<entry key="${flowScope.name}" value="name"/>
</map>
but get:
...
I have run into some problems in getting the attribute mapper to work after porting my code to use preview release 3.
In my xxx-servlet.xml file I have:
<bean...
I don't think so. I have just found a solution ... Spring Webflow contains a FormAction to solve this exact problem.
Regards,
Kiran
I have currently run into a situation where I would like to call a FormController from a flow. Is it possible to do this, and if so would you call the Controller's 'onSubmit' method from the...
Problem solved.
Answer: The applicationContext.xml is "globally available" to the web contexts. You can either use the default location of the applicationContext.xml (/WEB-INF/) or set the...
Thanks, Alef.
I am assuming the ContextLoaderListener will default to using the applicationContext.xml if it doesn't find the contextConfigLocation. As you stated below, this context will then be...
Ok, but can I import one xxx-servlet.xml into another?
As a design decision, I have created different web contexts to handle different client types. For example, I have a template web context...
Just wondering if it is possible to embed one bean factory into another. I have multiple servlets and corresponding contexts, and would like to reuse some already defined beans as opposed to having...