We have integrated WebDAV SLIDE with LDAP Server in Weblogic 8.1 SP3
environment.
I can login to slide or webdav Explorer using LDAP
authentication. Thru slide URL I can access all the collections (directory,
files, roles, action etc) BUT when ever I am clicking on "users" link
(http://localhost.com/slide/users), I am getting 404 error - Not found.
I have uploaded file and when I check owner it shows correct user name
(what we defined in LDAP).
I m attaching domain.xml and log file for reference.
Please suggest the solution. If you need more information please let me know.
Thanks in advance.
Kaushal
Yahoo! FareChase - Search multiple travel sites in one click.
<?xml version="1.0"?>
<slide logger="log4j.Log4jLogger" logger-level="7">
<namespace name="slide">
<definition>
<store name="tx">
<parameter name="tlock-timeout">120</parameter>
<nodestore classname="org.apache.slide.store.txfile.TxXMLFileDescriptorsStore">
<parameter name="rootpath">store/metadata</parameter>
<parameter name="workpath">work/metadata</parameter>
<parameter name="defer-saving">true</parameter>
<parameter name="timeout">120</parameter>
</nodestore>
<sequencestore classname="org.apache.slide.store.txfile.FileSequenceStore">
<parameter name="rootpath">store/sequence</parameter>
</sequencestore>
<securitystore>
<reference store="nodestore"/>
</securitystore>
<lockstore>
<reference store="nodestore"/>
</lockstore>
<revisiondescriptorsstore>
<reference store="nodestore"/>
</revisiondescriptorsstore>
<revisiondescriptorstore>
<reference store="nodestore"/>
</revisiondescriptorstore>
<contentstore classname="org.apache.slide.store.txfile.TxFileContentStore">
<parameter name="rootpath">store/content</parameter>
<parameter name="workpath">work/content</parameter>
<parameter name="defer-saving">true</parameter>
<parameter name="timeout">120</parameter>
</contentstore>
<!-- uncomment if you want to use the sample Indexer -->
<!-- be sure to have Lucene in your classpath -->
<!--
<contentindexer classname="org.apache.slide.index.SampleTxtContainsIndexer">
<parameter name="indexpath">./index</parameter>
</contentindexer>
-->
<contentindexer classname="org.apache.slide.index.TextContentIndexer">
<parameter name="indexpath">store/index</parameter>
</contentindexer>
</store>
<!--store name="db">
<nodestore classname="org.apache.slide.store.impl.rdbms.J2EEStore">
<parameter name="datasource">slide-xa-data-source</parameter>
<parameter name="adapter">org.apache.slide.store.impl.rdbms.SQLServerRDBMSAdapter</parameter>
<parameter name="compress">false</parameter>
</nodestore>
<securitystore>
<reference store="nodestore"/>
</securitystore>
<lockstore>
<reference store="nodestore"/>
</lockstore>
<revisiondescriptorsstore>
<reference store="nodestore"/>
</revisiondescriptorsstore>
<revisiondescriptorstore>
<reference store="nodestore"/>
</revisiondescriptorstore>
<contentstore>
<reference store="nodestore"/>
</contentstore>
<contentindexer classname="org.apache.slide.index.TextContentIndexer">
<parameter name="indexpath">store/index</parameter>
</contentindexer>
</store-->
<!--
To remove LDAP access comment out the following blocks:
<store name="users">
<store name="roles">
<scope match="/users" store="users"/>
<scope match="/roles" store="roles"/>
In slide/WEB-INF/web.xml comment out the final section through security-role
In slide/WEB-INF/classes/slide.properties change org.apache.slide.security to false
<parameter name="jndi.container">ou=Users,ou=Special Users and Groups,ou=HSI,dc=hsidevl,dc=org</parameter>
<parameter name="jndi.container">ou=Piie,ou=Groups,ou=Special Users and Groups,ou=HSI,dc=hsidevl,dc=org</parameter>
-->
<store name="users">
<nodestore classname="org.apache.slide.store.txjndi.JNDIPrincipalStore">
<parameter name="jndi.container">ou=HSI,dc=hsidev1,dc=org</parameter>
<parameter name="jndi.attributes.rdn">cn</parameter>
<parameter name="jndi.search.filter">(objectClass=person)</parameter>
<parameter name="jndi.search.scope">SUBTREE_SCOPE</parameter>
<parameter name="jndi.search.attributes">cn</parameter>
<parameter name="java.naming.provider.url">ldap://localhost:8158</parameter>
<parameter name="java.naming.factory.initial">com.sun.jndi.ldap.LdapCtxFactory</parameter>
<parameter name="java.naming.security.principal">cn=Directory Manager</parameter>
<parameter name="java.naming.security.authentication">simple</parameter>
<parameter name="java.naming.security.credentials">password</parameter>
</nodestore>
<sequencestore classname="org.apache.slide.store.txfile.FileSequenceStore">
<parameter name="rootpath">store/sequence</parameter>
</sequencestore>
<securitystore classname="org.apache.slide.store.txfile.TxXMLFileDescriptorsStore">
<parameter name="rootpath">users/store/metadata</parameter>
<parameter name="workpath">users/work/metadata</parameter>
<parameter name="defer-saving">true</parameter>
<parameter name="timeout">120</parameter>
</securitystore>
<lockstore>
<reference store="securitystore"/>
</lockstore>
<revisiondescriptorsstore>
<reference store="nodestore"/>
</revisiondescriptorsstore>
<revisiondescriptorstore>
<reference store="nodestore"/>
</revisiondescriptorstore>
<contentstore>
<reference store="nodestore"/>
</contentstore>
</store>
<store name="roles">
<nodestore classname="org.apache.slide.store.txjndi.JNDIPrincipalStore">
<parameter name="jndi.container">ou=HSI,dc=hsidev1,dc=org</parameter>
<parameter name="jndi.attributes.rdn">cn</parameter>
<parameter name="jndi.attribute.groupmemberset">uniqueMember</parameter>
<parameter name="jndi.search.filter">(objectClass=groupofuniquenames)</parameter>
<parameter name="jndi.search.scope">SUBTREE_SCOPE</parameter>
<parameter name="jndi.search.attributes">cn</parameter>
<parameter name="java.naming.provider.url">ldap://localhost:8158</parameter>
<parameter name="java.naming.factory.initial">com.sun.jndi.ldap.LdapCtxFactory</parameter>
<parameter name="java.naming.security.principal">cn=Directory Manager</parameter>
<parameter name="java.naming.security.authentication">simple</parameter>
<parameter name="java.naming.security.credentials">password</parameter>
</nodestore>
<sequencestore classname="org.apache.slide.store.txfile.FileSequenceStore">
<parameter name="rootpath">store/sequence</parameter>
</sequencestore>
<securitystore classname="org.apache.slide.store.txfile.TxXMLFileDescriptorsStore">
<parameter name="rootpath">roles/store/metadata</parameter>
<parameter name="workpath">roles/work/metadata</parameter>
<parameter name="defer-saving">true</parameter>
<parameter name="timeout">120</parameter>
</securitystore>
<lockstore>
<reference store="securitystore"/>
</lockstore>
<revisiondescriptorsstore>
<reference store="nodestore"/>
</revisiondescriptorsstore>
<revisiondescriptorstore>
<reference store="nodestore"/>
</revisiondescriptorstore>
<contentstore>
<reference store="nodestore"/>
</contentstore>
</store>
<!--store name="simple">
<nodestore classname="org.apache.slide.store.file.SimpleFileStore">
<parameter name="rootpath">c:/</parameter>
</nodestore>
<contentstore>
<reference store="nodestore"/>
</contentstore>
<revisiondescriptorsstore>
<reference store="nodestore"/>
</revisiondescriptorsstore>
<revisiondescriptorstore>
<reference store="nodestore"/>
</revisiondescriptorstore>
<securitystore classname="org.apache.slide.store.mem.TransientSecurityStore"/>
<lockstore classname="org.apache.slide.store.mem.TransientLockStore"/>
</store-->
<scope match="/" store="tx"/>
<scope match="/users" store="users"/>
<scope match="/roles" store="roles"/>
<!--scope match="/extdrive" store="simple"/-->
</definition>
<configuration>
<!-- Actions mapping -->
<read-object>/actions/read</read-object>
<create-object>/actions/write</create-object>
<remove-object>/actions/write</remove-object>
<grant-permission>/actions/write-acl</grant-permission>
<revoke-permission>/actions/write-acl</revoke-permission>
<read-permissions>/actions/read-acl</read-permissions>
<read-own-permissions>/actions/read-current-user-privilege-set</read-own-permissions>
<lock-object>/actions/write</lock-object>
<kill-lock>/actions/unlock</kill-lock>
<read-locks>/actions/read</read-locks>
<read-revision-metadata>/actions/read</read-revision-metadata>
<create-revision-metadata>/actions/write-properties</create-revision-metadata>
<modify-revision-metadata>/actions/write-properties</modify-revision-metadata>
<remove-revision-metadata>/actions/write-properties</remove-revision-metadata>
<read-revision-content>/actions/read</read-revision-content>
<create-revision-content>/actions/write-content</create-revision-content>
<modify-revision-content>/actions/write-content</modify-revision-content>
<remove-revision-content>/actions/write-content</remove-revision-content>
<bind-member>/actions/bind</bind-member>
<unbind-member>/actions/unbind</unbind-member>
<!-- Paths configuration -->
<userspath>/users</userspath>
<rolespath>/roles</rolespath>
<actionspath>/actions</actionspath>
<filespath>/files</filespath>
<parameter name="dav">true</parameter>
<parameter name="standalone">true</parameter>
<parameter name="acl_inheritance_type">path</parameter>
<!-- Nested roles: 0 means no nesting (default), 1 means one sublevel, etc. -->
<parameter name="nested_roles_maxdepth">0</parameter>
<!-- Can be "off", "write" and "full" -->
<parameter name="sequential-mode">full</parameter>
<!-- "false" lets all read-only methods be executed outside of transactions -->
<parameter name="all-methods-in-transactions">true</parameter>
<auto-create-users>true</auto-create-users>
<auto-create-users-role>true</auto-create-users-role>
<!-- <auto-create-users-role>slideroles.basic.RootRoleImpl</auto-create-users-role>-->
</configuration>
<data>
<objectnode classname="org.apache.slide.structure.SubjectNode" uri="/">
<!-- Subject can be:
any user "all"
authenticated user "authenticated"
unauthenticated user "unauthenticated"
self "self"
owner of resource "owner"
a user "/users/john"
a role "/roles/admin"
-->
<!--permission action="all" subject="unauthenticated" inheritable="true"/-->
<!--permission action="all" subject="owner" inheritable="true"/-->
<permission action="all" subject="authenticated" inheritable="true"/>
<!--permission action="all" subject="/roles/PiiEAdministrator" inheritable="true"/-->
<!-- <permission action="all" subject="/roles/PiiEOperator" inheritable="true"/>
<permission action="all" subject="/roles/PiiEManager" inheritable="true"/>
<permission action="all" subject="/roles users" inheritable="true"/> -->
<permission action="all" subject="/roles" inheritable="true"/>
<permission action="/actions/read-acl" subject="all" inheritable="true" negative="true"/>
<permission action="/actions/write-acl" subject="all" inheritable="true" negative="true"/>
<permission action="/actions/unlock" subject="all" inheritable="true" negative="true"/>
<permission action="/actions/read" subject="all" inheritable="true"/>
<!-- action -->
<objectnode classname="org.apache.slide.structure.ActionNode" uri="/actions">
<objectnode classname="org.apache.slide.structure.ActionNode" uri="/actions/read">
<revision>
<property name="privilege-member-set"><![CDATA[<D:href xmlns:D='DAV:'>/actions/read-acl</D:href> <D:href xmlns:D='DAV:'>/actions/read-current-user-privilege-set</D:href>]]></property>
</revision>
</objectnode>
<objectnode classname="org.apache.slide.structure.ActionNode" uri="/actions/read-acl">
<revision>
<property name="privilege-member-set"/>
</revision>
</objectnode>
<objectnode classname="org.apache.slide.structure.ActionNode" uri="/actions/read-current-user-privilege-set">
<revision>
<property name="privilege-member-set"/>
</revision>
</objectnode>
<objectnode classname="org.apache.slide.structure.ActionNode" uri="/actions/write">
<revision>
<property name="privilege-member-set"><![CDATA[<D:href xmlns:D='DAV:'>/actions/write-acl</D:href> <D:href xmlns:D='DAV:'>/actions/write-properties</D:href> <D:href xmlns:D='DAV:'>/actions/write-content</D:href>]]></property>
</revision>
</objectnode>
<objectnode classname="org.apache.slide.structure.ActionNode" uri="/actions/write-acl">
<revision>
<property name="privilege-member-set"/>
</revision>
</objectnode>
<objectnode classname="org.apache.slide.structure.ActionNode" uri="/actions/write-properties">
<revision>
<property name="privilege-member-set"/>
</revision>
</objectnode>
<objectnode classname="org.apache.slide.structure.ActionNode" uri="/actions/write-content">
<revision>
<property name="privilege-member-set"><![CDATA[<D:href xmlns:D='DAV:'>/actions/bind</D:href> <D:href xmlns:D='DAV:'>/actions/unbind</D:href>]]></property>
</revision>
</objectnode>
<objectnode classname="org.apache.slide.structure.ActionNode" uri="/actions/bind">
<revision>
<property name="privilege-member-set"/>
</revision>
</objectnode>
<objectnode classname="org.apache.slide.structure.ActionNode" uri="/actions/unbind">
<revision>
<property name="privilege-member-set"/>
</revision>
</objectnode>
<objectnode classname="org.apache.slide.structure.ActionNode" uri="/actions/unlock">
<revision>
<property name="privilege-member-set"/>
</revision>
</objectnode>
</objectnode>
<objectnode classname="org.apache.slide.structure.SubjectNode" uri="/users">
<permission action="all" subject="self" inheritable="true"/>
<permission action="/actions/read-acl" subject="authenticated" inheritable="true"/>
<!-- <objectnode classname="org.apache.slide.structure.SubjectNode" uri="/users/Kaushal">
<revision>
<property namespace="http://localhost/slide/" name="password">password</property>
</revision>
</objectnode>
<objectnode classname="org.apache.slide.structure.SubjectNode" uri="/users/eAssistant">
<revision>
<property namespace="http://localhost/slide/" name="password">eAssistant</property>
</revision>
</objectnode>
<objectnode classname="org.apache.slide.structure.SubjectNode" uri="/users/Wayne">
<revision>
<property namespace="http://localhost/slide/" name="password">password</property>
</revision>
</objectnode> -->
</objectnode>
<objectnode classname="org.apache.slide.structure.SubjectNode" uri="/roles">
<permission action="all" subject="self" inheritable="true"/>
<permission action="/actions/read-acl" subject="authenticated" inheritable="true"/>
<!--<objectnode classname="org.apache.slide.structure.SubjectNode" uri="/roles/PiiEOperator">
<revision>
<property name="group-member-set">
<![CDATA[<D:href xmlns:D='DAV:'>/users/eAssistant</D:href><D:href xmlns:D='DAV:'>/users/Wayne</D:href>]]>
</property>
</revision>
</objectnode>
<objectnode classname="org.apache.slide.structure.SubjectNode" uri="/roles/PiiEManager">
<revision>
<property name="group-member-set">
<![CDATA[<D:href xmlns:D='DAV:'>/users/Kaushal</D:href>]]>
</property>
</revision>
</objectnode> -->
</objectnode>
<objectnode classname="org.apache.slide.structure.SubjectNode" uri="/files">
<permission action="all" subject="authenticated" inheritable="true"/>
<permission action="/actions/write" subject="/roles" inheritable="true"/>
<!--<permission action="/actions/write" subject="/roles users" inheritable="true"/>
<permission action="/actions/write" subject="/roles/PiiEOperator" inheritable="true"/>
<permission action="/actions/write" subject="/roles/PiiEManager" inheritable="true"/>
<permission action="/actions/read-acl" subject="/roles/PiiEOperator" inheritable="true"/>
<permission action="/actions/read-acl" subject="owner" inheritable="true"/>
<objectnode classname="org.apache.slide.structure.SubjectNode" uri="/files/Research">
</objectnode>
<objectnode classname="org.apache.slide.structure.SubjectNode" uri="/files/Tasks">
</objectnode>-->
</objectnode>
<!-- DeltaV: default history and workspace paths -->
<objectnode classname="org.apache.slide.structure.SubjectNode" uri="/history">
<!--permission action="all" subject="unauthenticated" inheritable="true"/>
<permission action="/actions/write" subject="/roles/Users" inheritable="true"/>
<permission action="/actions/read-acl" subject="owner" inheritable="true"/-->
</objectnode>
<objectnode classname="org.apache.slide.structure.SubjectNode" uri="/workspace">
<!--permission action="all" subject="unauthenticated" inheritable="true"/>
<permission action="/actions/write" subject="/roles/Users" inheritable="true"/>
<permission action="/actions/read-acl" subject="owner" inheritable="true"/-->
</objectnode>
<objectnode classname="org.apache.slide.structure.SubjectNode" uri="/workingresource">
<!--permission action="all" subject="unauthenticated" inheritable="true"/>
<permission action="/actions/write" subject="/roles/Users" inheritable="true"/>
<permission action="/actions/read-acl" subject="owner" inheritable="true"/-->
</objectnode>
</objectnode>
</data>
</namespace>
<!--
DeltaV global parameters
========================
* historypath (mandatory=no, default="/history"):
Specifies a Slide path which determines the location where this DeltaV
server stores history data.
* workspacepath (mandatory=no, default="/workspace"):
Specifies a Slide path which determines the location where this DeltaV
server allows workspaces to reside.
* workingresourcepath (mandatory=no, default="/workingresource"):
Specifies a Slide path which determines the location where this DeltaV
server stores working resources.
* auto-version (mandatory=no, default="checkout-checkin"):
Controls the DeltaV auto-version behaviour.
* auto-version-control (mandatory=no, default="false"):
Indicates if a resource just created by a PUT should be set under
version-control.
* versioncontrol-exclude (mandatory=no, default=""):
Specifies a Slide path which determines resources which are excluded from version-control.
The default value "" makes no path being excluded.
* checkout-fork (mandatory=no, default="forbidden"):
Controls the DeltaV check-out behaviour when a version is already
checked-out or has a successor.
* checkin-fork (mandatory=no, default="forbidden"):
Controls the DeltaV check-out behaviour when a version has already a
successor.
* standardLivePropertiesClass (mandatory=no,
default="org.apache.slide.webdav.util.resourcekind.AbstractResourceKind"):
Determines the "agent" knowing about what the standard live properties are.
It should be a loadable class containing the following static methods:
- boolean isLiveProperty(String propName)
- boolean isProtectedProperty(String propName)
- boolean isComputedProperty(String propName)
- Set getAllLiveProperties()
- Set getAllProtectedProperties()
- Set getAllComputedProperties()
* uriRedirectorClass (mandatory=no,
default="org.apache.slide.webdav.util.DeltavUriRedirector"):
Determines the URI redirector class. The DeltaV URI redirector is in
charge of the following redirections:
- version URI to history URI, e.g. /history/2/1.4 to /history/2
- latest revision number for history resource to 0.0
- latest revision number for version resource to last URI token,
e.g. /history/2/1.4 to 1.4
It should be a loadable class containing the following static methods:
- String redirectUri(String uri)
- NodeRevisionNumber redirectLatestRevisionNumber(String uri)
-->
<parameter name="historypath">/history</parameter>
<parameter name="workspacepath">/workspace</parameter>
<parameter name="workingresourcepath">/workingresource</parameter>
<parameter name="auto-version">checkout-checkin</parameter>
<parameter name="auto-version-control">true</parameter>
<parameter name="versioncontrol-exclude"/>
<parameter name="checkout-fork">forbidden</parameter>
<parameter name="checkin-fork">forbidden</parameter>
<!-- Extractor configuration -->
<extractors>
<!--extractor classname="org.apache.slide.extractor.SimpleXmlExtractor" uri="/files/articles/test.xml">
<configuration>
<instruction property="title" xpath="/article/title/text()" />
<instruction property="summary" xpath="/article/summary/text()" />
</configuration>
</extractor-->
<!--extractor classname="org.apache.slide.extractor.OfficeExtractor" uri="/files/">
<configuration>
<instruction property="author" id="SummaryInformation-0-4" />
<instruction property="application" id="SummaryInformation-0-18" />
</configuration>
</extractor-->
<extractor classname="org.apache.slide.extractor.MSWordExtractor" uri="/files/"
content-type="application/ms-word">
</extractor>
<extractor classname="org.apache.slide.extractor.MSExcelExtractor" uri="/files/"
content-type="application/ms-excel">
</extractor>
<extractor classname="org.apache.slide.extractor.MSPowerPointExtractor" uri="/files/"
content-type="application/vnd.ms-powerpoint">
</extractor>
<extractor classname="org.apache.slide.extractor.PDFExtractor" uri="/files/"
content-type="application/pdf">
</extractor>
</extractors>
<!-- Event configuration -->
<events>
<event classname="org.apache.slide.webdav.event.WebdavEvent" enable="true" />
<event classname="org.apache.slide.event.ContentEvent" enable="true" />
<event classname="org.apache.slide.event.ContentEvent" method="retrieve" enable="false" />
<event classname="org.apache.slide.event.EventCollection" enable="true" />
<event classname="org.apache.slide.event.TransactionEvent" enable="true" />
<event classname="org.apache.slide.event.MacroEvent" enable="true"/>
<listener classname="org.apache.slide.util.event.EventLogger" />
<listener classname="org.apache.slide.event.VetoableEventCollector" />
<listener classname="org.apache.slide.event.TransientEventCollector" />
<listener classname="org.apache.slide.webdav.event.NotificationTrigger">
<configuration>
<notification include-events="false" />
<persist-subscriptions filename="subscriptions.xml" />
</configuration>
</listener>
<listener classname="org.apache.slide.extractor.PropertyExtractorTrigger" />
<listener classname="org.apache.slide.search.IndexTrigger">
<configuration>
<indexer classname="org.apache.slide.search.LoggingIndexer" synchronous="false" uri="/files/" />
</configuration>
</listener>
<!-- Uncomment for cluster support. Be sure to local-host and repository-host -->
<!--
<listener classname="org.apache.slide.cluster.ClusterCacheRefresher">
<configuration>
<node local-host="local.host.domain"
local-port="4444"
repository-host="remote.host.domain"
repository-port="8080"
repository-protocol="http"
username="root"
password="root"
base-uri="/files/"
/>
</configuration>
</listener>
-->
<listener classname="org.apache.slide.macro.MacroPropertyUpdater">
<!-- Listener that updates some properties if resources are
copied or moved. This requires MacroEvents enabled (at
least methods copy and move) -->
<configuration>
<update-displayname>true</update-displayname>
<update-owner-on-move>false</update-owner-on-move>
<update-owner-on-copy>true</update-owner-on-copy>
</configuration>
</listener>
</events>
</slide>
========= Outbound Message =========
PROPFIND /slide/files/Tasks/LogMeIn.txt HTTP/1.1
Host: localhost
Connection: TE
TE: trailers, deflate, gzip, compress
User-Agent: UCI DAV Explorer/0.91 RPT-HTTPClient/0.3-3E
Depth: 1
Translate: f
Cookie:
JSESSIONID=D1GwYTfyXJ8xtT6GKTg9J9Fqpk1QWNT0TTcHz4lMpCbmCKJ1pLGd!600360947
Cookie2: $Version="1"
Authorization: Basic ZUFzc2lzdGFudDplQXNzaXN0YW50
Accept-Encoding: deflate, gzip, x-gzip, compress, x-compress
Content-type: text/xml
Content-length: 114
<?xml version="1.0"?>
<A:propfind xmlns:A="DAV:">
<A:prop>
<A:acl/>
</A:prop>
</A:propfind>
========= Inbound Message =========
HTTP/1.1 207 Unknown
Date: Fri, 11 Nov 2005 21:04:10 GMT
Server: WebLogic Server 8.1 SP3 Tue Jun 29 23:11:19 PDT 2004 404973
Content-Type: text/xml; charset="UTF-8"
Transfer-Encoding: chunked
0d4b
<?xml version="1.0" encoding="UTF-8"?>
<D:multistatus xmlns:D="DAV:">
<D:response xmlns:D="DAV:">
<D:href>/slide/files/Tasks/LogMeIn.txt</D:href>
<D:propstat>
<D:prop>
<D:acl>
<D:ace>
<D:principal>
<D:authenticated />
</D:principal>
<D:grant>
<D:privilege>
<D:all />
</D:privilege>
</D:grant>
<D:inherited>
<D:href>/slide/files</D:href>
</D:inherited>
</D:ace>
<D:ace>
<D:principal>
<D:href>/slide/roles</D:href>
</D:principal>
<D:grant>
<D:privilege>
<D:write />
</D:privilege>
</D:grant>
<D:inherited>
<D:href>/slide/files</D:href>
</D:inherited>
</D:ace>
<D:ace>
<D:principal>
<D:authenticated />
</D:principal>
<D:grant>
<D:privilege>
<D:all />
</D:privilege>
</D:grant>
<D:inherited>
<D:href>/slide/</D:href>
</D:inherited>
</D:ace>
<D:ace>
<D:principal>
<D:href>/slide/roles</D:href>
</D:principal>
<D:grant>
<D:privilege>
<D:all />
</D:privilege>
</D:grant>
<D:inherited>
<D:href>/slide/</D:href>
</D:inherited>
</D:ace>
<D:ace>
<D:principal>
<D:all />
</D:principal>
<D:deny>
<D:privilege>
<D:read-acl />
</D:privilege>
<D:privilege>
<D:write-acl />
</D:privilege>
<D:privilege>
<D:unlock />
</D:privilege>
</D:deny>
<D:inherited>
<D:href>/slide/</D:href>
</D:inherited>
</D:ace>
<D:ace>
<D:principal>
<D:all />
</D:principal>
<D:grant>
<D:privilege>
<D:read />
</D:privilege>
</D:grant>
<D:inherited>
<D:href>/slide/</D:href>
</D:inherited>
</D:ace>
</D:acl>
</D:prop>
<D:status>HTTP/1.1 200 OK</D:status>
</D:propstat>
</D:response>
0012
</D:multistatus>
0000
========= Outbound Message =========
PROPFIND /slide/files/Tasks/LogMeIn.txt HTTP/1.1
Host: localhost
Connection: TE
TE: trailers, deflate, gzip, compress
User-Agent: UCI DAV Explorer/0.91 RPT-HTTPClient/0.3-3E
Depth: 1
Translate: f
Cookie:
JSESSIONID=D1GwYTfyXJ8xtT6GKTg9J9Fqpk1QWNT0TTcHz4lMpCbmCKJ1pLGd!600360947
Cookie2: $Version="1"
Authorization: Basic ZUFzc2lzdGFudDplQXNzaXN0YW50
Accept-Encoding: deflate, gzip, x-gzip, compress, x-compress
Content-type: text/xml
Content-length: 135
<?xml version="1.0"?>
<A:propfind xmlns:A="DAV:">
<A:prop>
<A:principal-collection-set/>
</A:prop>
</A:propfind>
========= Inbound Message =========
HTTP/1.1 207 Unknown
Date: Fri, 11 Nov 2005 21:04:12 GMT
Server: WebLogic Server 8.1 SP3 Tue Jun 29 23:11:19 PDT 2004 404973
Content-Type: text/xml; charset="UTF-8"
Transfer-Encoding: chunked
01f9
<?xml version="1.0" encoding="UTF-8"?>
<D:multistatus xmlns:D="DAV:">
<D:response xmlns:D="DAV:">
<D:href>/slide/files/Tasks/LogMeIn.txt</D:href>
<D:propstat>
<D:prop>
<D:principal-collection-set>
<D:href>/slide/users</D:href>
<D:href>/slide</D:href>
<D:href>/slide/roles</D:href>
</D:principal-collection-set>
</D:prop>
<D:status>HTTP/1.1 200 OK</D:status>
</D:propstat>
</D:response>
0012
</D:multistatus>
0000
========= Outbound Message =========
PROPFIND /slide/users HTTP/1.1
Host: localhost
Connection: TE
TE: trailers, deflate, gzip, compress
User-Agent: UCI DAV Explorer/0.91 RPT-HTTPClient/0.3-3E
Depth: 1
Translate: f
Cookie:
JSESSIONID=D1GwYTfyXJ8xtT6GKTg9J9Fqpk1QWNT0TTcHz4lMpCbmCKJ1pLGd!600360947
Cookie2: $Version="1"
Authorization: Basic ZUFzc2lzdGFudDplQXNzaXN0YW50
Accept-Encoding: deflate, gzip, x-gzip, compress, x-compress
Content-type: text/xml
Content-length: 149
<?xml version="1.0"?>
<A:propfind xmlns:A="DAV:">
<A:prop>
<A:displayname/>
<A:resourcetype/>
</A:prop>
</A:propfind>
========= Inbound Message =========
HTTP/1.1 207 Unknown
Date: Fri, 11 Nov 2005 21:04:12 GMT
Server: WebLogic Server 8.1 SP3 Tue Jun 29 23:11:19 PDT 2004 404973
Content-Type: text/xml; charset="UTF-8"
Transfer-Encoding: chunked
019c
<?xml version="1.0" encoding="UTF-8"?>
<D:multistatus xmlns:D="DAV:">
<D:response xmlns:D="DAV:">
<D:href>/slide/users</D:href>
<D:propstat>
<D:prop>
<D:displayname>users</D:displayname>
<D:resourcetype>
<D:collection />
</D:resourcetype>
</D:prop>
<D:status>HTTP/1.1 200 OK</D:status>
</D:propstat>
</D:response>
0000
========= Outbound Message =========
PROPFIND /slide HTTP/1.1
Host: localhost
Connection: TE
TE: trailers, deflate, gzip, compress
User-Agent: UCI DAV Explorer/0.91 RPT-HTTPClient/0.3-3E
Depth: 1
Translate: f
Cookie:
JSESSIONID=D1GwYTfyXJ8xtT6GKTg9J9Fqpk1QWNT0TTcHz4lMpCbmCKJ1pLGd!600360947
Cookie2: $Version="1"
Authorization: Basic ZUFzc2lzdGFudDplQXNzaXN0YW50
Accept-Encoding: deflate, gzip, x-gzip, compress, x-compress
Content-type: text/xml
Content-length: 149
<?xml version="1.0"?>
<A:propfind xmlns:A="DAV:">
<A:prop>
<A:displayname/>
<A:resourcetype/>
</A:prop>
</A:propfind>
========= Inbound Message =========
HTTP/1.1 207 Unknown
Date: Fri, 11 Nov 2005 21:04:42 GMT
Server: WebLogic Server 8.1 SP3 Tue Jun 29 23:11:19 PDT 2004 404973
Content-Type: text/xml; charset="UTF-8"
Transfer-Encoding: chunked
0184
<?xml version="1.0" encoding="UTF-8"?>
<D:multistatus xmlns:D="DAV:">
<D:response xmlns:D="DAV:">
<D:href>/slide/</D:href>
<D:propstat>
<D:prop>
<D:displayname />
<D:resourcetype>
<D:collection />
</D:resourcetype>
</D:prop>
<D:status>HTTP/1.1 200 OK</D:status>
</D:propstat>
</D:response>
016a
<D:response xmlns:D="DAV:">
<D:href>/slide/workingresource</D:href>
<D:propstat>
<D:prop>
<D:displayname>workingresource</D:displayname>
<D:resourcetype>
<D:collection />
</D:resourcetype>
</D:prop>
<D:status>HTTP/1.1 200 OK</D:status>
</D:propstat>
</D:response>
015e
<D:response xmlns:D="DAV:">
<D:href>/slide/workspace</D:href>
<D:propstat>
<D:prop>
<D:displayname>workspace</D:displayname>
<D:resourcetype>
<D:collection />
</D:resourcetype>
</D:prop>
<D:status>HTTP/1.1 200 OK</D:status>
</D:propstat>
</D:response>
015a
<D:response xmlns:D="DAV:">
<D:href>/slide/history</D:href>
<D:propstat>
<D:prop>
<D:displayname>history</D:displayname>
<D:resourcetype>
<D:collection />
</D:resourcetype>
</D:prop>
<D:status>HTTP/1.1 200 OK</D:status>
</D:propstat>
</D:response>
0156
<D:response xmlns:D="DAV:">
<D:href>/slide/files</D:href>
<D:propstat>
<D:prop>
<D:displayname>files</D:displayname>
<D:resourcetype>
<D:collection />
</D:resourcetype>
</D:prop>
<D:status>HTTP/1.1 200 OK</D:status>
</D:propstat>
</D:response>
0156
<D:response xmlns:D="DAV:">
<D:href>/slide/roles</D:href>
<D:propstat>
<D:prop>
<D:displayname>roles</D:displayname>
<D:resourcetype>
<D:collection />
</D:resourcetype>
</D:prop>
<D:status>HTTP/1.1 200 OK</D:status>
</D:propstat>
</D:response>
0156
<D:response xmlns:D="DAV:">
<D:href>/slide/users</D:href>
<D:propstat>
<D:prop>
<D:displayname>users</D:displayname>
<D:resourcetype>
<D:collection />
</D:resourcetype>
</D:prop>
<D:status>HTTP/1.1 200 OK</D:status>
</D:propstat>
</D:response>
015a
<D:response xmlns:D="DAV:">
<D:href>/slide/actions</D:href>
<D:propstat>
<D:prop>
<D:displayname>actions</D:displayname>
<D:resourcetype>
<D:collection />
</D:resourcetype>
</D:prop>
<D:status>HTTP/1.1 200 OK</D:status>
</D:propstat>
</D:response>
0012
</D:multistatus>
0000
========= Outbound Message =========
PROPFIND /slide/roles HTTP/1.1
Host: localhost
Connection: TE
TE: trailers, deflate, gzip, compress
User-Agent: UCI DAV Explorer/0.91 RPT-HTTPClient/0.3-3E
Depth: 1
Translate: f
Cookie:
JSESSIONID=D1GwYTfyXJ8xtT6GKTg9J9Fqpk1QWNT0TTcHz4lMpCbmCKJ1pLGd!600360947
Cookie2: $Version="1"
Authorization: Basic ZUFzc2lzdGFudDplQXNzaXN0YW50
Accept-Encoding: deflate, gzip, x-gzip, compress, x-compress
Content-type: text/xml
Content-length: 149
<?xml version="1.0"?>
<A:propfind xmlns:A="DAV:">
<A:prop>
<A:displayname/>
<A:resourcetype/>
</A:prop>
</A:propfind>
========= Inbound Message =========
HTTP/1.1 207 Unknown
Date: Fri, 11 Nov 2005 21:04:42 GMT
Server: WebLogic Server 8.1 SP3 Tue Jun 29 23:11:19 PDT 2004 404973
Content-Type: text/xml; charset="UTF-8"
Transfer-Encoding: chunked
019c
<?xml version="1.0" encoding="UTF-8"?>
<D:multistatus xmlns:D="DAV:">
<D:response xmlns:D="DAV:">
<D:href>/slide/roles</D:href>
<D:propstat>
<D:prop>
<D:displayname>roles</D:displayname>
<D:resourcetype>
<D:collection />
</D:resourcetype>
</D:prop>
<D:status>HTTP/1.1 200 OK</D:status>
</D:propstat>
</D:response>
018b
<D:response xmlns:D="DAV:">
<D:href>/slide/roles/piietasklead</D:href>
<D:propstat>
<D:prop>
<D:displayname>piietasklead</D:displayname>
<D:resourcetype>
<D:collection />
<D:principal />
</D:resourcetype>
</D:prop>
<D:status>HTTP/1.1 200 OK</D:status>
</D:propstat>
</D:response>
0189
<D:response xmlns:D="DAV:">
<D:href>/slide/roles/piieanalyst</D:href>
<D:propstat>
<D:prop>
<D:displayname>piieanalyst</D:displayname>
<D:resourcetype>
<D:collection />
<D:principal />
</D:resourcetype>
</D:prop>
<D:status>HTTP/1.1 200 OK</D:status>
</D:propstat>
</D:response>
0189
<D:response xmlns:D="DAV:">
<D:href>/slide/roles/piiemanager</D:href>
<D:propstat>
<D:prop>
<D:displayname>piiemanager</D:displayname>
<D:resourcetype>
<D:collection />
<D:principal />
</D:resourcetype>
</D:prop>
<D:status>HTTP/1.1 200 OK</D:status>
</D:propstat>
</D:response>
018b
<D:response xmlns:D="DAV:">
<D:href>/slide/roles/piieoperator</D:href>
<D:propstat>
<D:prop>
<D:displayname>piieoperator</D:displayname>
<D:resourcetype>
<D:collection />
<D:principal />
</D:resourcetype>
</D:prop>
<D:status>HTTP/1.1 200 OK</D:status>
</D:propstat>
</D:response>
018b
<D:response xmlns:D="DAV:">
<D:href>/slide/roles/qa%20managers</D:href>
<D:propstat>
<D:prop>
<D:displayname>qa managers</D:displayname>
<D:resourcetype>
<D:collection />
<D:principal />
</D:resourcetype>
</D:prop>
<D:status>HTTP/1.1 200 OK</D:status>
</D:propstat>
</D:response>
0012
</D:multistatus>
0000
========= Outbound Message =========
PROPFIND /slide/users/ HTTP/1.1
Host: localhost
Connection: TE
TE: trailers, deflate, gzip, compress
User-Agent: UCI DAV Explorer/0.91 RPT-HTTPClient/0.3-3E
Depth: 1
Translate: f
Cookie:
JSESSIONID=D1GwYTfyXJ8xtT6GKTg9J9Fqpk1QWNT0TTcHz4lMpCbmCKJ1pLGd!600360947
Cookie2: $Version="1"
Authorization: Basic ZUFzc2lzdGFudDplQXNzaXN0YW50
Accept-Encoding: deflate, gzip, x-gzip, compress, x-compress
Content-type: text/xml
Content-length: 345
<?xml version="1.0"?>
<A:propfind xmlns:A="DAV:">
<A:prop>
<A:displayname/>
<A:resourcetype/>
<A:getcontenttype/>
<A:getcontentlength/>
<A:getlastmodified/>
<A:lockdiscovery/>
<A:checked-in/>
<A:checked-out/>
<A:version-name/>
</A:prop>
</A:propfind>
========= Inbound Message =========
HTTP/1.1 207 Unknown
Date: Fri, 11 Nov 2005 21:07:54 GMT
Server: WebLogic Server 8.1 SP3 Tue Jun 29 23:11:19 PDT 2004 404973
Content-Type: text/xml; charset="UTF-8"
Transfer-Encoding: chunked
0302
<?xml version="1.0" encoding="UTF-8"?>
<D:multistatus xmlns:D="DAV:">
<D:response xmlns:D="DAV:">
<D:href>/slide/users</D:href>
<D:propstat>
<D:prop>
<D:displayname>users</D:displayname>
<D:resourcetype>
<D:collection />
</D:resourcetype>
<D:lockdiscovery />
</D:prop>
<D:status>HTTP/1.1 200 OK</D:status>
</D:propstat>
<D:propstat>
<D:prop>
<D:getcontenttype />
<D:getcontentlength />
<D:getlastmodified />
<D:checked-in />
<D:checked-out />
<D:version-name />
</D:prop>
<D:status>HTTP/1.1 404 Not Found</D:status>
</D:propstat>
</D:response>
0000
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
