Hello,

I have a SSO filter in a jar an d I need to integrate it in my web application. This filter have two init-param to configure in the web.xml. I need to inject spring beans in java classes of my project that this filter executes, and y want to use DelegatingFilterProxy for this.

DelegatingFilterProxy translates their init-params to setter properties in the subyacent filter, however, there aren't setters, only init-params. I conclusion, I can't initialize my filter from spring.

Is there any solution?

Thanks in advance