> yes, it is possible, but looks kind of complicated. if you can read the .dtd
> for the webapp spec and figure it out, then that is the right way to go.
> there should be implementation examples somewhere...
> 
> http://java.sun.com/j2ee/dtds/web-app_2_2.dtd
> 

Sure enough - section 13.3.2 of the servlet spec.

For the curious, TDK usage will look something like:
    <web-app>
        <security-constraint>
            <web-resource-collection>
                <web-resource-name>templates</web-resource-name>
                <url-pattern>/templates/*</url-pattern>
            </web-resource-collection>
        </security-constraint>
    </web-app>

--
Christopher Elkins



------------------------------------------------------------
To subscribe:        [EMAIL PROTECTED]
To unsubscribe:      [EMAIL PROTECTED]
Search: <http://www.mail-archive.com/turbine%40list.working-dogs.com/>
Problems?:           [EMAIL PROTECTED]

Reply via email to