Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I would like to ask if it is possible that my web application which uses JSF 2.1, Spring Framework 3.1.1, Spring Security 3.1 and ICEFaces 3 is incompatible with the Spring Security Facelets Tag Library. I use Maven pom.xml with dependency:

    <dependency>
        <groupId>org.springframework.webflow</groupId>
        <artifactId>spring-faces</artifactId>
        <version>2.2.1.RELEASE</version>
    </dependency>  

...and my ICE faces forms which were rendered with no problem are now rendered without any ICE faces style...

When I don't use Spring Security Facelets Tag Library and no webflow dependency, ICE faces styles are OK.

share|improve this question
You need to tell Spring Security to not block JSF resource requests. – BalusC Mar 20 '12 at 15:31
I did it... this is part of my Spring applicationContext.xml: – Johnny Greenwood Mar 20 '12 at 15:33
<security:http pattern="/javax.faces.resource/**" filters="none" /> and intercept-url inside of security:http is filtred only <security:intercept-url pattern="/secure/**" access="isAuthenticated()" /> – Johnny Greenwood Mar 20 '12 at 15:35
ICEfaces has also its own URL pattern for resource requests. Don't know from top of head what it is. Check its documentation and/or the generated HTML source. – BalusC Mar 20 '12 at 15:41
Thats it... "/javax.faces.resource/" ... when I look at my source code, ICE faces paths to css, js etc. are written like "MyApplicationPath/javax.faces.resource/....." – Johnny Greenwood Mar 20 '12 at 15:47
show 2 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.