Hello,
we still have webflow 1.0.6 in our project.
I just wanted to upgrade to spring 3.0.3.
Unfortunately these two are not compatible. Webflow 1.0.6 uses some deprecated stuff that has been...
Type: Posts; User: JimTonic; Keyword(s):
Hello,
we still have webflow 1.0.6 in our project.
I just wanted to upgrade to spring 3.0.3.
Unfortunately these two are not compatible. Webflow 1.0.6 uses some deprecated stuff that has been...
We are still using SWF1 and struts2.
I wanted to make an EntryPoint in struts2 for SWF2 (plugin or interceptor or action) but I was not able to use the SWF2 API properly. And I didn't have time to...
Hi,
we are using spring 2.5.0 and SWF 1.0.4.
I just wanted to update spring to 2.5.6 but sine this change:
* moved "org.springframework.web.bind/multipart" packages from spring-web.jar to...
Meanwhile I'm thinking doing it like the swf1 integration.
I want to use a struts2 action as a front controller that runs the flows and delegates the view results.
public String execute() {...
So I'm back to integrating struts2 into swf2.
Can anybody give me some hints ?
What custom implementations do I need ?
I think only a custom ViewResolver is not enough.
I'll thinks I need a...
http://jira.springframework.org/browse/SEC-969
Hi,
I'm making an update from Web Flow to Web Flow 2. And everything should be integrated with struts2.
I had made some adjustions to http://code.google.com/p/struts2webflow/ so that it fits my...
I think I'll file an issue for that.
After thinking about it, it's an reasonable point to overwrite for the customer.
I think the Anonymous check came with this issue:
http://jira.springframework.org/browse/SEC-776
I have re-implemented HttpSessionContextIntegrationFilter with line 387-397 (2.0.3) changed.
Instead of
if (authenticationTrustResolver.isAnonymous(securityContext.getAuthentication())) {
if...
Hi,
I've made an updated from acegi 1.0.5 to spring security 2.0.3
Now I have the same problem.
Our Anonymous User has an special Anonymous UserDetailsObject (which gets data from the database)...
The Problem is <ref local="initialDirContextFactory" /> use <ref bean="initialDirContextFactory" /> instead.
Take a look at
<bean id="roleVoter" class="org.springframework.security.vote.RoleVoter">
<property name="rolePrefix">
<value>ROLE_</value>
</property>
</bean>
Without knowing anything about ldap, but I would think you have to implement your own FilterBasedLdapUserSearch which uses diffrent ldap connections depending on the username.
Ok, I think I have figured it out.
Since we hav a lot of customization it is better not to use the <security:http> configuration.
I'm not familiar with ant style patterns, but I think
<security:intercept-url pattern='/*' access='ROLE_ADMIN' /> will do that.
I think the default is ant style patterns.
<security:intercept-url pattern='/**' access='ROLE_ADMIN' />
I think different filterChains for different URLs is quite a common use case.
If I have to use my old acegi FilterChainProxy I can't take advatage of the new namespace configuration ? Or am I wrong...
Hello,
at the moment I'm trying to migrate our Acegi Bean Configuration to the new SpringSecurity Namespace Configuration.
I haven't found anything on how to specify my own Request Wrapper
This...
Hello,
If I'm having a wish, I would ask that non existing config files are just ignored, and are not considered as an error.
In our project we generate a lot of spring context files, and we...
Hi,
same scenario for me I've update to 2.0.5
In eclipse .log there is an ConcurrentModificationException prior to the NoClassDefFoundError
!ENTRY org.eclipse.osgi 4 0 2008-05-30...
Hello,
I have two Java Projects each having a webflow, this works fine.
But now I've a new flow which uses a subflow defined in the other project.
I can't find a way to configure it correctly....
Hi,
my Eclipse Version is:
Eclipse SDK
Version: 3.3.1.1
Build id: M20071023-1652
java version "1.6.0_03"
The complete configuration details is a bit big but here are some parts:
Im using Eclipse 3.3.1.1 and just updated to Spring IDE 2.0.2.v200711172000 using the update site.
The webflow feature is installed but it only contains the org.springframework.webflow.doc Plugin...
Hello,
I had the same problem and came across this thread. So just for the records I post my solution.
I extended AnonymousProcessingFilter and overwrote the createAuthentication method:
...