Hi,

can you tell me, what's wrong with this code?

<bean class="org.apache.mina.integration.spring.IoFilterMapping">
  <constructor-arg value="abc" />
  <constructor-arg>
    <bean class="org.apache.mina.filter.LoggingFilter"/>
  </constructor-arg>
</bean>

When I use instead:

<bean class="org.apache.mina.filter.LoggingFilter" />

all works fine. When I check the code of class IoFilterMapping, the first approach should work?

Regards
Michael

Reply via email to