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've defined the following security-constraints in the application's web.xml:

<security-constraint>
    <display-name>Restrict access to XHTML files</display-name>
    <web-resource-collection>
        <web-resource-name>XHTML files</web-resource-name>
        <url-pattern>*.xhtml</url-pattern>
        <http-method>GET</http-method>
        <http-method>POST</http-method>
    </web-resource-collection>
    <auth-constraint />
</security-constraint>

And:

<security-constraint>
    <display-name>Disable DELETE, PUT and TRACE</display-name>
    <web-resource-collection>
        <web-resource-name>Restricted methods</web-resource-name>
        <description>Disable DELETE, PUT and TRACE</description>
        <url-pattern>/*</url-pattern>
        <http-method>DELETE</http-method>
        <http-method>PUT</http-method>
        <http-method>TRACE</http-method>
    </web-resource-collection>
    <auth-constraint/>
</security-constraint>

The first one stops working when I add the second one. Looking at both URL patterns and HTTP methods, one should expect that both constraints would work correctly, or am I missing something here?

share|improve this question

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.