Sometimes I got some problems because of the default permission of Slide, maybe you could remove them.

You should also try to check the file web.xml from Slide (TOMCAT-HOME/webapps/slide/web-inf).
In this file you have something like that

------------------------------------------- WEB.XML ----------------------------------------------------
   <!-- Authetication for the WebDAV servlet -->
   <!-- Uncomment this to get authentication -->
   <security-constraint>
       <web-resource-collection>
           <web-resource-name>DAV resource</web-resource-name>
           <url-pattern>/*</url-pattern>
           <http-method>COPY</http-method>
           <http-method>DELETE</http-method>
           <http-method>GET</http-method>
           <http-method>HEAD</http-method>
           <http-method>LOCK</http-method>
           <http-method>MKCOL</http-method>
           <http-method>MOVE</http-method>
           <http-method>OPTIONS</http-method>
           <http-method>POST</http-method>
           <http-method>PROPFIND</http-method>
           <http-method>PROPPATCH</http-method>
           <http-method>PUT</http-method>
           <http-method>UNLOCK</http-method>
           <http-method>VERSION-CONTROL</http-method>
           <http-method>REPORT</http-method>
           <http-method>CHECKIN</http-method>
           <http-method>CHECKOUT</http-method>
           <http-method>UNCHECKOUT</http-method>
           <http-method>MKWORKSPACE</http-method>
           <http-method>UPDATE</http-method>
           <http-method>LABEL</http-method>
           <http-method>MERGE</http-method>
           <http-method>BASELINE-CONTROL</http-method>
           <http-method>MKACTIVITY</http-method>
           <http-method>ACL</http-method>
           <http-method>SEARCH</http-method>
           <http-method>BIND</http-method>
           <http-method>UNBIND</http-method>
           <http-method>REBIND</http-method>
           <http-method>SUBSCRIBE</http-method>
           <http-method>UNSUBSCRIBE</http-method>
           <http-method>POLL</http-method>
           <http-method>NOTIFY</http-method>
       </web-resource-collection>
       <auth-constraint>
           <role-name>root</role-name>
  </auth-constraint>
<security-constraint>
...
   <security-role>
       <role-name>root</role-name>
   </security-role>
-----------------------------------------------------------------------------------------

If you have a role (group) called "myRole" so you have to add this under the security-role from root:
<security-role>
       <role-name>myRole</role-name>
</security-role>
And then add <role-name>myRole</role-name> in the <auth-constraint>.

Did you get the window that asks your name and password before the warning?

Goodluck

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to