Zope
Threads by month
- ----- 2026 -----
- April
- March
- February
- January
- ----- 2025 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2010 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2009 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2008 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2007 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2006 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2005 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2004 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2003 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2002 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2001 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2000 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 1999 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 1998 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 1997 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
October 2001
- 488 participants
- 990 discussions
"Insert into"
or just
"Insert"
rather than
"Insert in"
>>>-----Original Message-----
>>>From: Micah Martin [mailto:micah@objectmentor.com]
>>>Sent: Wednesday, October 24, 2001 4:47 PM
>>>To: 'zope(a)zope.org'
>>>Subject: [Zope] can't store a date in Access database
>>>
>>>
>>>Hello,
>>>
>>> This is the error the is troubling me:
>>>
>>>Error Type: sql.error
>>>Error Value: ('37000', -3502, '[Microsoft][ODBC Microsoft
>>>Access Driver]
>>>Syntax error in INSERT INTO statement.')
>>>
>>>My SQL statement:
>>>insert in TableName (Date) values ("10/24/2001")
>>>
>>>I have tried at least a dozen different date formats
>>>including the wierd '#'
>>>delimiters. Anyone solve this problem?
>>>
>>> Micah
>>>
>>>-------------------------------------------------------------
>>>---------------
>>>--
>>>Micah Martin
>>>Software Engineer
>>>Object Mentor, Inc.
>>>micah(a)objectmentor.com
>>>www.objectmentor.com, www.xprogramming.com
>>>www.pairprogramming.com, www.junit.org
>>>
>>>
>>>
>>>_______________________________________________
>>>Zope maillist - Zope(a)zope.org
>>>http://lists.zope.org/mailman/listinfo/zope
>>>** No cross posts or HTML encoding! **
>>>(Related lists -
>>> http://lists.zope.org/mailman/listinfo/zope-announce
>>> http://lists.zope.org/mailman/listinfo/zope-dev )
>>>
1
0
folder.objectValues('lala') returns a list. Save this list and use the
sort method of lists. Note this sorts the list inplace.
myobjs = folder.objectValues('lala')
myobjs.sort()
for item in myobjs:
....
HTH,
__Janko
Gitte Wange writes:
> Hello again :-)
>
> I am really trying new stuff here so bear with me please ..
>
> when you have a dtml-in tag you can set sort=attribute
>
> But how do you do that in a python script?
> You can't do:
> for item in folder.objectValues('lala') sort='something':
>
> So how do you do it then ?
>
> TIA,
> Gitte Wange
>
>
>
1
0
Hello,
This is the error the is troubling me:
Error Type: sql.error
Error Value: ('37000', -3502, '[Microsoft][ODBC Microsoft Access Driver]
Syntax error in INSERT INTO statement.')
My SQL statement:
insert in TableName (Date) values ("10/24/2001")
I have tried at least a dozen different date formats including the wierd '#'
delimiters. Anyone solve this problem?
Micah
----------------------------------------------------------------------------
--
Micah Martin
Software Engineer
Object Mentor, Inc.
micah(a)objectmentor.com
www.objectmentor.com, www.xprogramming.com
www.pairprogramming.com, www.junit.org
1
0
Hi,
I have problems with structured text.
I try to create hyperlinks within the document like so:
.. [12] "some" text"
to this link I refer like so:
text [12] more text
For both [12] a ../name#12 link is created.
thanks for your tips
Robert
2
3
Hello,
I have two questions:
First, is there any possibility to use the name "index.html" instead of "index_html" as default name for the directory indes? I ask this because we want to transform a web project into zope, and we don't want to change the URLs.
Second, is there some kind of "symlink", that means making one page accessible at another path using another name?
markus
--
You don't have to be Microsoft to suck... but it helps.
(Tim Hammerquist in comp.lang.python)
2
1
> Sorry the Script might not do what it should. But that's not the important
> thing. Just select a script, that occupies Zope quite some time (e.g. long
> running <dtml-in>). The try to call another page on the site. Does ist
> appear?
> Below I've changed the script a little. It might work (sorry can't test
> because my home implementation of Zope isn't up & running yet). Please
> start
> it in a Folder with manny Subfloders (big site).
Well, you also could use
<dtml-in "_.range(999)">
<dtml-in "_.range(999)">
<dtml-in "_.range(999)">
<dtml-in "_.range(999)">
X
</dtml-in>
</dtml-in>
</dtml-in>
</dtml-in>
Just for fun I tested this on a linux machine, with a result
which confuses me, here's what I did (Zope 2.3.3):
Lets call the above method "stopper", for brevity.
(-1.) Restart zope
0. Create stopper
1. Start top on a console.
2. start one stopper-thread by "view"ing it in a new window.
3. top shows one python thread at 99% CPU
4. try some "innocent" pages on this server, they work seamlessly
5. start another stopper-thread by "view"ing it again in a new window
6. top shows two python threads at 50% CPU
7. zope ceases answering any other request
8. stop the "downloading" of stopper created in step 2
9. zope works again, but top shows 2 CPU-consuming threads as before
10. press reload in the browser you stopped in step 8.
11. zope ceases to answer any requests, top shows 3 CPU-consuming threads
12. repeat 8, zope works again, the 3 threads remain
13. repeat 8 again, we now see 4 threads in zope, zope reaches the default
thread limit and won't answer until restarted or the threads stop.
Obvious questions:
What happens at 7.?
Why isn't it possible for zope to stop the processing when it looses
the connection?
I tested the same with a perl cpu-hogging cgi:
#!/usr/bin/perl
print "Content-type: text/html\n\n";
for ($i;$i<10000;++$i){
for($j;$j<10000000;++$j){$a=$a+sin $j}
$b = sin $i*$a;
print "$b <BR>";
};
This script runs plenty enough on the command line, but stops
after around 5s when I hit the stop button on the browser
when it's run as a cgi.
Heck I even pulled the network cable on the client after
zope ignored me closing all browsers - no effect, the
4 threads still run on (12min CPU per thread).
Bonus question: Why is there a limit on range? ;-)
cheers,
oliver
1
0
Well, there is something else you could (should) do.
When Zope is talking about importing something, it is talking about importing a
set of Zope objects, normally in a .zexp file.
To add an image to the folder, get into the management screen for that folder
(using the URL http://localhost:8080/myfolder/manage or something like that).
Then use the Add pull-down menu to select "Image" (i.e., add an image object to
the folder). At that point, you will be able to upload the image file (using
the Browse button) and add it to your folder.
Hope that helps,
Ron
> I have RH Linux 7.1, Zope 2.4.1 (fresh install), and I can't seem to
import>
> images into my site (I haven't tried other objects). For example, using
the>
> management interface, I created a folder "test folder". I enter the
folder>
> and click on Import/Export button. I enter a filename (ie, somefile.jpg)
in>
> the "Import File Name" box. The "Take Ownership" box is checked. (The
file>
> exists in the /usr/local/zope/2-4-1/imports sub-directory.) And then I
get>
> the following output. You may assume I'm a Zope idiot and explain
> import/export in words of one syllable or less. For example, do you have
to>
> add the files to the import directory in some special fashion? I just
> copied them into there from the BASH shell command line (not in Zope).
> Thanks, Mike
>
> Zope Error
> Zope has encountered an error while publishing this resource.
> Error Type: ExportError
> Error Value: Invalid export header
>
> Troubleshooting Suggestions
> ·The URL may be incorrect.
> ·The parameters passed to this resource may be incorrect.
> ·A resource that this resource relies on may be encountering an error.
> For more detailed information about the error, please refer to the HTML
> source for this page.
>
> Traceback (innermost last):
> File /usr/local/zope/2-4-1/lib/python/ZPublisher/Publish.py, line 223,
> in publish_module
> File /usr/local/zope/2-4-1/lib/python/ZPublisher/Publish.py, line 187,
> in publish
> File /usr/local/zope/2-4-1/lib/python/Zope/__init__.py, line 226, in
> zpublisher_exception_hook
> (Object: LockableItem)
> File /usr/local/zope/2-4-1/lib/python/ZPublisher/Publish.py, line 171,
> in publish
> File /usr/local/zope/2-4-1/lib/python/ZPublisher/mapply.py, line 160,
in>
> mapply
> (Object: manage_importObject)
> File /usr/local/zope/2-4-1/lib/python/ZPublisher/Publish.py, line 112,
> in call_object
> (Object: manage_importObject)
> File /usr/local/zope/2-4-1/lib/python/OFS/ObjectManager.py, line 584,
in>
> manage_importObject
> (Object: LockableItem)
> File /usr/local/zope/2-4-1/lib/python/ZODB/ExportImport.py, line 143,
in>
> importFile
> ExportError: (see above)
>
>
1
0
I have RH Linux 7.1, Zope 2.4.1 (fresh install), and I can't seem to import
images into my site (I haven't tried other objects). For example, using the
management interface, I created a folder "test folder". I enter the folder
and click on Import/Export button. I enter a filename (ie, somefile.jpg) in
the "Import File Name" box. The "Take Ownership" box is checked. (The file
exists in the /usr/local/zope/2-4-1/imports sub-directory.) And then I get
the following output. You may assume I'm a Zope idiot and explain
import/export in words of one syllable or less. For example, do you have to
add the files to the import directory in some special fashion? I just
copied them into there from the BASH shell command line (not in Zope).
Thanks, Mike
Zope Error
Zope has encountered an error while publishing this resource.
Error Type: ExportError
Error Value: Invalid export header
Troubleshooting Suggestions
·The URL may be incorrect.
·The parameters passed to this resource may be incorrect.
·A resource that this resource relies on may be encountering an error.
For more detailed information about the error, please refer to the HTML
source for this page.
Traceback (innermost last):
File /usr/local/zope/2-4-1/lib/python/ZPublisher/Publish.py, line 223,
in publish_module
File /usr/local/zope/2-4-1/lib/python/ZPublisher/Publish.py, line 187,
in publish
File /usr/local/zope/2-4-1/lib/python/Zope/__init__.py, line 226, in
zpublisher_exception_hook
(Object: LockableItem)
File /usr/local/zope/2-4-1/lib/python/ZPublisher/Publish.py, line 171,
in publish
File /usr/local/zope/2-4-1/lib/python/ZPublisher/mapply.py, line 160, in
mapply
(Object: manage_importObject)
File /usr/local/zope/2-4-1/lib/python/ZPublisher/Publish.py, line 112,
in call_object
(Object: manage_importObject)
File /usr/local/zope/2-4-1/lib/python/OFS/ObjectManager.py, line 584, in
manage_importObject
(Object: LockableItem)
File /usr/local/zope/2-4-1/lib/python/ZODB/ExportImport.py, line 143, in
importFile
ExportError: (see above)
1
0
Hi everybody
Try this from the root Folder:
<dtml-var standard_html_header>
<dtml-in
"[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1]">
<dtml-in "ZopeFind(this(), '', '', '', '', '' , '', '', '', 1)"
sort=bobobase_modification_time reverse>
<dtml-var bobobase_modification_time>, <dtml-var id><br>
</dtml-in>
</dtml-in>
<dtml-var standard_html_footer>
This should take a while to show. If not try more 1,1,1,....! If I call
another page on a second browser window on the same Zope-site the response is
generated after the above script is completed. This would mean that the script
hoggs all threads.
If this behaviour is "normal" the I wonder how big sites run with an
adequate performance?! Of course ZEO would probably be a solution but that would be
very expensive in hardware and administration. I can't believe that Zope is
so "singletheaded". Therefore I'm interested if somebody can verify this. I
run under Solaris but I suppose that the behaviour should be similar on all
platforms (Zope 2.4.x). Please don't run this on a production system!
Thanx Oliver
--
GMX - Die Kommunikationsplattform im Internet.
http://www.gmx.net
8
20
I am using Zope 2.4.2 on Win2K.
1. I added a network place with http://machinename:8080 as location.
This is where my Zope server is.
2. Then I got all the folders displayed in my client web folder.
3.I tried to create new folders in the existing zope folders and i get
the error message saying "unable to rename folder". I tried to drag and
drop things and it would not allow me to do that either.
This is the problem...
I am also sending you the output of the logger.
------------------------------------------------------------------------
------
Request:
PROPFIND / HTTP/1.1
Accept-Language: en-us
Content-Type: text/xml
Translate: f
Content-Length: 380
Depth: 1
User-Agent: Microsoft Data Access Internet Publishing Provider DAV 1.1
Host: hercules:8080
Connection: Keep-Alive
<?xml version="1.0" ?>
<propfind xmlns="DAV:">
<prop>
<name/>
<parentname/>
<href/>
<ishidden/>
<iscollection/>
<isreadonly/>
<getcontenttype/>
<contentclass/>
<getcontentlanguage/>
<creationdate/>
<lastaccessed/>
<getlastmodified/>
<getcontentlength/>
<resourcetype/>
<isstructureddocument/>
<defaultdocument/>
<displayname/>
<isroot/>
</prop>
</propfind>
------------------------------------------------------------------------
------
Response:
HTTP/1.1 207 Multi-Status
Server: Zope/(Zope 2.4.1 (binary release, python 2.1, win32-x86),
python 2.1.0, win32) ZServer/1.1b1
Date: Tue, 23 Oct 2001 20:51:37 GMT
Ms-Author-Via: DAV
Content-Type: text/xml; charset="utf-8"
Connection: close
Date: Tue, 23 Oct 2001 20:51:37 GMT
Content-Length: 14199
<?xml version="1.0" encoding="utf-8"?>
<d:multistatus xmlns:d="DAV:">
<d:response>
<d:href>/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Tue, 23 Oct 2001 16:55:43
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:"></n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/acl_users</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Tue, 25 Sep 2001 20:09:54
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"></n:resourcetype>
<n:displayname xmlns:n="DAV:">acl_users</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/Control_Panel/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Sat, 20 Jan 2001 21:39:14
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:">Control_Panel</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/standard_html_header</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:">text/html</n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Sat, 20 Jan 2001 21:39:14
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:">80</n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"></n:resourcetype>
<n:displayname xmlns:n="DAV:">standard_html_header</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/standard_html_footer</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:">text/html</n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Sat, 20 Jan 2001 21:39:14
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:">53</n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"></n:resourcetype>
<n:displayname xmlns:n="DAV:">standard_html_footer</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/standard_error_message</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:">text/html</n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Sat, 20 Jan 2001 21:39:14
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:">1365</n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"></n:resourcetype>
<n:displayname xmlns:n="DAV:">standard_error_message</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/QuickStart/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Sat, 20 Jan 2001 21:39:14
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:">QuickStart</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/index_html</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:">text/html</n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Sat, 20 Jan 2001 21:39:14
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:">92</n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"></n:resourcetype>
<n:displayname xmlns:n="DAV:">index_html</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/squish-test/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Fri, 28 Sep 2001 18:41:54
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:">squish-test</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/MailHost</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Thu, 27 Sep 2001 17:18:04
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"></n:resourcetype>
<n:displayname xmlns:n="DAV:">MailHost</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/WebDAVaccess/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Mon, 22 Oct 2001 17:50:06
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:">WebDAVaccess</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/test/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Mon, 22 Oct 2001 17:49:35
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:">test</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/madhavi/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Mon, 22 Oct 2001 19:46:28
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:">madhavi</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/OnTheRootTest/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Tue, 23 Oct 2001 16:55:51
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:">OnTheRootTest</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
</d:multistatus>
------------------------------------------------------------------------
------
Request:
PROPFIND /WebDAVaccess HTTP/1.1
Accept-Language: en-us
Content-Type: text/xml
Translate: f
Content-Length: 380
Depth: 1
User-Agent: Microsoft Data Access Internet Publishing Provider DAV 1.1
Host: hercules:8080
Connection: Keep-Alive
<?xml version="1.0" ?>
<propfind xmlns="DAV:">
<prop>
<name/>
<parentname/>
<href/>
<ishidden/>
<iscollection/>
<isreadonly/>
<getcontenttype/>
<contentclass/>
<getcontentlanguage/>
<creationdate/>
<lastaccessed/>
<getlastmodified/>
<getcontentlength/>
<resourcetype/>
<isstructureddocument/>
<defaultdocument/>
<displayname/>
<isroot/>
</prop>
</propfind>
------------------------------------------------------------------------
------
Response:
HTTP/1.1 207 Multi-Status
Server: Zope/(Zope 2.4.1 (binary release, python 2.1, win32-x86),
python 2.1.0, win32) ZServer/1.1b1
Date: Tue, 23 Oct 2001 20:51:39 GMT
Ms-Author-Via: DAV
Content-Type: text/xml; charset="utf-8"
Content-Length: 4129
Date: Tue, 23 Oct 2001 20:51:39 GMT
Content-Location: http://hercules:8080/WebDAVaccess/
Connection: close
<?xml version="1.0" encoding="utf-8"?>
<d:multistatus xmlns:d="DAV:">
<d:response>
<d:href>/WebDAVaccess/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Mon, 22 Oct 2001 17:50:06
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:">WebDAVaccess</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/WebDAVaccess/is/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Thu, 11 Oct 2001 19:38:45
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:">is</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/WebDAVaccess/test1/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Wed, 17 Oct 2001 18:17:13
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:">test1</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/WebDAVaccess/test2/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Mon, 22 Oct 2001 17:50:06
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:">test2</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
</d:multistatus>
------------------------------------------------------------------------
------
Response:
HTTP/1.1 207 Multi-Status
Server: Zope/(Zope 2.4.1 (binary release, python 2.1, win32-x86),
python 2.1.0, win32) ZServer/1.1b1
Date: Tue, 23 Oct 2001 20:51:47 GMT
Ms-Author-Via: DAV
Content-Type: text/xml; charset="utf-8"
Content-Length: 935
Date: Tue, 23 Oct 2001 20:51:47 GMT
Content-Location: http://hercules:8080/WebDAVaccess/
Connection: close
<?xml version="1.0" encoding="utf-8"?>
<d:multistatus xmlns:d="DAV:">
<d:response>
<d:href>/WebDAVaccess/</d:href>
<d:propstat xmlns:n="http://www.zope.org/propsets/default">
<d:prop>
<n:title></n:title>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat xmlns:n="DAV:">
<d:prop>
<n:creationdate>1970-01-01T12:00:00Z</n:creationdate>
<n:displayname>WebDAVaccess</n:displayname>
<n:resourcetype><n:collection/></n:resourcetype>
<n:getcontenttype></n:getcontenttype>
<n:getcontentlength></n:getcontentlength>
<n:source></n:source>
<n:supportedlock>
<n:lockentry>
<d:lockscope><d:exclusive/></d:lockscope>
<d:locktype><d:write/></d:locktype>
</n:lockentry>
</n:supportedlock>
<n:lockdiscovery>
</n:lockdiscovery>
<n:getlastmodified>Mon, 22 Oct 2001 17:50:06 GMT</n:getlastmodified>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
</d:response>
</d:multistatus>
------------------------------------------------------------------------
------
Request:
PROPFIND / HTTP/1.1
Accept-Language: en-us
Content-Type: text/xml
Translate: f
Content-Length: 380
Depth: 1
User-Agent: Microsoft Data Access Internet Publishing Provider DAV 1.1
Host: hercules:8080
Connection: Keep-Alive
<?xml version="1.0" ?>
<propfind xmlns="DAV:">
<prop>
<name/>
<parentname/>
<href/>
<ishidden/>
<iscollection/>
<isreadonly/>
<getcontenttype/>
<contentclass/>
<getcontentlanguage/>
<creationdate/>
<lastaccessed/>
<getlastmodified/>
<getcontentlength/>
<resourcetype/>
<isstructureddocument/>
<defaultdocument/>
<displayname/>
<isroot/>
</prop>
</propfind>
------------------------------------------------------------------------
------
Response:
HTTP/1.1 207 Multi-Status
Server: Zope/(Zope 2.4.1 (binary release, python 2.1, win32-x86),
python 2.1.0, win32) ZServer/1.1b1
Date: Tue, 23 Oct 2001 20:55:00 GMT
Ms-Author-Via: DAV
Content-Type: text/xml; charset="utf-8"
Connection: close
Date: Tue, 23 Oct 2001 20:55:00 GMT
Content-Length: 14199
<?xml version="1.0" encoding="utf-8"?>
<d:multistatus xmlns:d="DAV:">
<d:response>
<d:href>/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Tue, 23 Oct 2001 16:55:43
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:"></n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/acl_users</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Tue, 25 Sep 2001 20:09:54
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"></n:resourcetype>
<n:displayname xmlns:n="DAV:">acl_users</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/Control_Panel/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Sat, 20 Jan 2001 21:39:14
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:">Control_Panel</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/standard_html_header</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:">text/html</n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Sat, 20 Jan 2001 21:39:14
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:">80</n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"></n:resourcetype>
<n:displayname xmlns:n="DAV:">standard_html_header</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/standard_html_footer</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:">text/html</n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Sat, 20 Jan 2001 21:39:14
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:">53</n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"></n:resourcetype>
<n:displayname xmlns:n="DAV:">standard_html_footer</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/standard_error_message</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:">text/html</n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Sat, 20 Jan 2001 21:39:14
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:">1365</n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"></n:resourcetype>
<n:displayname xmlns:n="DAV:">standard_error_message</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/QuickStart/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Sat, 20 Jan 2001 21:39:14
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:">QuickStart</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/index_html</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:">text/html</n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Sat, 20 Jan 2001 21:39:14
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:">92</n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"></n:resourcetype>
<n:displayname xmlns:n="DAV:">index_html</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/squish-test/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Fri, 28 Sep 2001 18:41:54
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:">squish-test</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/MailHost</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Thu, 27 Sep 2001 17:18:04
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"></n:resourcetype>
<n:displayname xmlns:n="DAV:">MailHost</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/WebDAVaccess/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Mon, 22 Oct 2001 17:50:06
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:">WebDAVaccess</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/test/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Mon, 22 Oct 2001 17:49:35
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:">test</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/madhavi/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Mon, 22 Oct 2001 19:46:28
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:">madhavi</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/OnTheRootTest/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Tue, 23 Oct 2001 16:55:51
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:">OnTheRootTest</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
</d:multistatus>
------------------------------------------------------------------------
------
Response:
HTTP/1.1 207 Multi-Status
Server: Zope/(Zope 2.4.1 (binary release, python 2.1, win32-x86),
python 2.1.0, win32) ZServer/1.1b1
Date: Tue, 23 Oct 2001 20:55:19 GMT
Ms-Author-Via: DAV
Content-Type: text/xml; charset="utf-8"
Connection: close
Date: Tue, 23 Oct 2001 20:55:19 GMT
Content-Length: 914
<?xml version="1.0" encoding="utf-8"?>
<d:multistatus xmlns:d="DAV:">
<d:response>
<d:href>/</d:href>
<d:propstat xmlns:n="http://www.zope.org/propsets/default">
<d:prop>
<n:title>Zope</n:title>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat xmlns:n="DAV:">
<d:prop>
<n:creationdate>1970-01-01T12:00:00Z</n:creationdate>
<n:displayname></n:displayname>
<n:resourcetype><n:collection/></n:resourcetype>
<n:getcontenttype></n:getcontenttype>
<n:getcontentlength></n:getcontentlength>
<n:source></n:source>
<n:supportedlock>
<n:lockentry>
<d:lockscope><d:exclusive/></d:lockscope>
<d:locktype><d:write/></d:locktype>
</n:lockentry>
</n:supportedlock>
<n:lockdiscovery>
</n:lockdiscovery>
<n:getlastmodified>Tue, 23 Oct 2001 16:55:43 GMT</n:getlastmodified>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
</d:response>
</d:multistatus>
------------------------------------------------------------------------
------
Request:
PROPFIND / HTTP/1.1
Accept-Language: en-us
Content-Type: text/xml
Translate: f
Content-Length: 380
Depth: 1
User-Agent: Microsoft Data Access Internet Publishing Provider DAV 1.1
Host: hercules:8082
Connection: Keep-Alive
<?xml version="1.0" ?>
<propfind xmlns="DAV:">
<prop>
<name/>
<parentname/>
<href/>
<ishidden/>
<iscollection/>
<isreadonly/>
<getcontenttype/>
<contentclass/>
<getcontentlanguage/>
<creationdate/>
<lastaccessed/>
<getlastmodified/>
<getcontentlength/>
<resourcetype/>
<isstructureddocument/>
<defaultdocument/>
<displayname/>
<isroot/>
</prop>
</propfind>
------------------------------------------------------------------------
------
Response:
HTTP/1.1 207 Multi-Status
Server: Zope/(Zope 2.4.1 (binary release, python 2.1, win32-x86),
python 2.1.0, win32) ZServer/1.1b1
Date: Tue, 23 Oct 2001 20:55:28 GMT
Ms-Author-Via: DAV
Content-Type: text/xml; charset="utf-8"
Connection: close
Date: Tue, 23 Oct 2001 20:55:28 GMT
Content-Length: 14199
<?xml version="1.0" encoding="utf-8"?>
<d:multistatus xmlns:d="DAV:">
<d:response>
<d:href>/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Tue, 23 Oct 2001 16:55:43
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:"></n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/acl_users</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Tue, 25 Sep 2001 20:09:54
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"></n:resourcetype>
<n:displayname xmlns:n="DAV:">acl_users</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/Control_Panel/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Sat, 20 Jan 2001 21:39:14
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:">Control_Panel</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/standard_html_header</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:">text/html</n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Sat, 20 Jan 2001 21:39:14
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:">80</n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"></n:resourcetype>
<n:displayname xmlns:n="DAV:">standard_html_header</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/standard_html_footer</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:">text/html</n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Sat, 20 Jan 2001 21:39:14
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:">53</n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"></n:resourcetype>
<n:displayname xmlns:n="DAV:">standard_html_footer</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/standard_error_message</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:">text/html</n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Sat, 20 Jan 2001 21:39:14
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:">1365</n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"></n:resourcetype>
<n:displayname xmlns:n="DAV:">standard_error_message</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/QuickStart/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Sat, 20 Jan 2001 21:39:14
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:">QuickStart</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/index_html</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:">text/html</n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Sat, 20 Jan 2001 21:39:14
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:">92</n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"></n:resourcetype>
<n:displayname xmlns:n="DAV:">index_html</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/squish-test/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Fri, 28 Sep 2001 18:41:54
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:">squish-test</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/MailHost</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Thu, 27 Sep 2001 17:18:04
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"></n:resourcetype>
<n:displayname xmlns:n="DAV:">MailHost</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/WebDAVaccess/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Mon, 22 Oct 2001 17:50:06
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:">WebDAVaccess</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/test/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Mon, 22 Oct 2001 17:49:35
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:">test</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/madhavi/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Mon, 22 Oct 2001 19:46:28
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:">madhavi</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/OnTheRootTest/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Tue, 23 Oct 2001 16:55:51
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:">OnTheRootTest</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
</d:multistatus>
------------------------------------------------------------------------
------
Request:
PROPFIND / HTTP/1.1
Accept-Language: en-us
Content-Type: text/xml
Translate: f
Content-Length: 380
Depth: 1
User-Agent: Microsoft Data Access Internet Publishing Provider DAV 1.1
Host: hercules:8082
Connection: Keep-Alive
<?xml version="1.0" ?>
<propfind xmlns="DAV:">
<prop>
<name/>
<parentname/>
<href/>
<ishidden/>
<iscollection/>
<isreadonly/>
<getcontenttype/>
<contentclass/>
<getcontentlanguage/>
<creationdate/>
<lastaccessed/>
<getlastmodified/>
<getcontentlength/>
<resourcetype/>
<isstructureddocument/>
<defaultdocument/>
<displayname/>
<isroot/>
</prop>
</propfind>
------------------------------------------------------------------------
------
Response:
HTTP/1.1 207 Multi-Status
Server: Zope/(Zope 2.4.1 (binary release, python 2.1, win32-x86),
python 2.1.0, win32) ZServer/1.1b1
Date: Tue, 23 Oct 2001 20:55:28 GMT
Ms-Author-Via: DAV
Content-Type: text/xml; charset="utf-8"
Connection: close
Date: Tue, 23 Oct 2001 20:55:28 GMT
Content-Length: 14199
<?xml version="1.0" encoding="utf-8"?>
<d:multistatus xmlns:d="DAV:">
<d:response>
<d:href>/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Tue, 23 Oct 2001 16:55:43
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:"></n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/acl_users</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Tue, 25 Sep 2001 20:09:54
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"></n:resourcetype>
<n:displayname xmlns:n="DAV:">acl_users</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/Control_Panel/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Sat, 20 Jan 2001 21:39:14
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:">Control_Panel</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/standard_html_header</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:">text/html</n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Sat, 20 Jan 2001 21:39:14
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:">80</n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"></n:resourcetype>
<n:displayname xmlns:n="DAV:">standard_html_header</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/standard_html_footer</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:">text/html</n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Sat, 20 Jan 2001 21:39:14
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:">53</n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"></n:resourcetype>
<n:displayname xmlns:n="DAV:">standard_html_footer</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/standard_error_message</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:">text/html</n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Sat, 20 Jan 2001 21:39:14
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:">1365</n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"></n:resourcetype>
<n:displayname xmlns:n="DAV:">standard_error_message</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/QuickStart/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Sat, 20 Jan 2001 21:39:14
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:">QuickStart</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/index_html</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:">text/html</n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Sat, 20 Jan 2001 21:39:14
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:">92</n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"></n:resourcetype>
<n:displayname xmlns:n="DAV:">index_html</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/squish-test/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Fri, 28 Sep 2001 18:41:54
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:">squish-test</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/MailHost</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Thu, 27 Sep 2001 17:18:04
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"></n:resourcetype>
<n:displayname xmlns:n="DAV:">MailHost</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/WebDAVaccess/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Mon, 22 Oct 2001 17:50:06
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:">WebDAVaccess</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/test/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Mon, 22 Oct 2001 17:49:35
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:">test</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/madhavi/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Mon, 22 Oct 2001 19:46:28
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:">madhavi</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/OnTheRootTest/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Tue, 23 Oct 2001 16:55:51
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:">OnTheRootTest</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
</d:multistatus>
------------------------------------------------------------------------
------
Request:
PROPFIND /WebDAVaccess HTTP/1.1
Accept-Language: en-us
Content-Type: text/xml
Translate: f
Content-Length: 380
Depth: 1
User-Agent: Microsoft Data Access Internet Publishing Provider DAV 1.1
Host: hercules:8082
Connection: Keep-Alive
<?xml version="1.0" ?>
<propfind xmlns="DAV:">
<prop>
<name/>
<parentname/>
<href/>
<ishidden/>
<iscollection/>
<isreadonly/>
<getcontenttype/>
<contentclass/>
<getcontentlanguage/>
<creationdate/>
<lastaccessed/>
<getlastmodified/>
<getcontentlength/>
<resourcetype/>
<isstructureddocument/>
<defaultdocument/>
<displayname/>
<isroot/>
</prop>
</propfind>
------------------------------------------------------------------------
------
Response:
HTTP/1.1 207 Multi-Status
Server: Zope/(Zope 2.4.1 (binary release, python 2.1, win32-x86),
python 2.1.0, win32) ZServer/1.1b1
Date: Tue, 23 Oct 2001 20:55:31 GMT
Ms-Author-Via: DAV
Content-Type: text/xml; charset="utf-8"
Content-Length: 4129
Date: Tue, 23 Oct 2001 20:55:31 GMT
Content-Location: http://hercules:8082/WebDAVaccess/
Connection: close
<?xml version="1.0" encoding="utf-8"?>
<d:multistatus xmlns:d="DAV:">
<d:response>
<d:href>/WebDAVaccess/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Mon, 22 Oct 2001 17:50:06
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:">WebDAVaccess</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/WebDAVaccess/is/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Thu, 11 Oct 2001 19:38:45
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:">is</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/WebDAVaccess/test1/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Wed, 17 Oct 2001 18:17:13
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:">test1</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/WebDAVaccess/test2/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Mon, 22 Oct 2001 17:50:06
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:">test2</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
</d:multistatus>
------------------------------------------------------------------------
------
Response:
HTTP/1.1 207 Multi-Status
Server: Zope/(Zope 2.4.1 (binary release, python 2.1, win32-x86),
python 2.1.0, win32) ZServer/1.1b1
Date: Tue, 23 Oct 2001 20:55:39 GMT
Ms-Author-Via: DAV
Content-Type: text/xml; charset="utf-8"
Content-Length: 935
Date: Tue, 23 Oct 2001 20:55:39 GMT
Content-Location: http://hercules:8082/WebDAVaccess/
Connection: close
<?xml version="1.0" encoding="utf-8"?>
<d:multistatus xmlns:d="DAV:">
<d:response>
<d:href>/WebDAVaccess/</d:href>
<d:propstat xmlns:n="http://www.zope.org/propsets/default">
<d:prop>
<n:title></n:title>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat xmlns:n="DAV:">
<d:prop>
<n:creationdate>1970-01-01T12:00:00Z</n:creationdate>
<n:displayname>WebDAVaccess</n:displayname>
<n:resourcetype><n:collection/></n:resourcetype>
<n:getcontenttype></n:getcontenttype>
<n:getcontentlength></n:getcontentlength>
<n:source></n:source>
<n:supportedlock>
<n:lockentry>
<d:lockscope><d:exclusive/></d:lockscope>
<d:locktype><d:write/></d:locktype>
</n:lockentry>
</n:supportedlock>
<n:lockdiscovery>
</n:lockdiscovery>
<n:getlastmodified>Mon, 22 Oct 2001 17:50:06 GMT</n:getlastmodified>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
</d:response>
</d:multistatus>
------------------------------------------------------------------------
------
Response:
HTTP/1.1 207 Multi-Status
Server: Zope/(Zope 2.4.1 (binary release, python 2.1, win32-x86),
python 2.1.0, win32) ZServer/1.1b1
Date: Tue, 23 Oct 2001 20:55:53 GMT
Ms-Author-Via: DAV
Content-Type: text/xml; charset="utf-8"
Content-Length: 935
Date: Tue, 23 Oct 2001 20:55:53 GMT
Content-Location: http://hercules:8082/WebDAVaccess/
Connection: close
<?xml version="1.0" encoding="utf-8"?>
<d:multistatus xmlns:d="DAV:">
<d:response>
<d:href>/WebDAVaccess/</d:href>
<d:propstat xmlns:n="http://www.zope.org/propsets/default">
<d:prop>
<n:title></n:title>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat xmlns:n="DAV:">
<d:prop>
<n:creationdate>1970-01-01T12:00:00Z</n:creationdate>
<n:displayname>WebDAVaccess</n:displayname>
<n:resourcetype><n:collection/></n:resourcetype>
<n:getcontenttype></n:getcontenttype>
<n:getcontentlength></n:getcontentlength>
<n:source></n:source>
<n:supportedlock>
<n:lockentry>
<d:lockscope><d:exclusive/></d:lockscope>
<d:locktype><d:write/></d:locktype>
</n:lockentry>
</n:supportedlock>
<n:lockdiscovery>
</n:lockdiscovery>
<n:getlastmodified>Mon, 22 Oct 2001 17:50:06 GMT</n:getlastmodified>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
</d:response>
</d:multistatus>
------------------------------------------------------------------------
------
Request:
PROPFIND / HTTP/1.1
Accept-Language: en-us
Content-Type: text/xml
Translate: f
Content-Length: 380
Depth: 1
User-Agent: Microsoft Data Access Internet Publishing Provider DAV 1.1
Host: hercules:8082
Connection: Keep-Alive
<?xml version="1.0" ?>
<propfind xmlns="DAV:">
<prop>
<name/>
<parentname/>
<href/>
<ishidden/>
<iscollection/>
<isreadonly/>
<getcontenttype/>
<contentclass/>
<getcontentlanguage/>
<creationdate/>
<lastaccessed/>
<getlastmodified/>
<getcontentlength/>
<resourcetype/>
<isstructureddocument/>
<defaultdocument/>
<displayname/>
<isroot/>
</prop>
</propfind>
------------------------------------------------------------------------
------
Response:
HTTP/1.1 207 Multi-Status
Server: Zope/(Zope 2.4.1 (binary release, python 2.1, win32-x86),
python 2.1.0, win32) ZServer/1.1b1
Date: Tue, 23 Oct 2001 20:55:58 GMT
Ms-Author-Via: DAV
Content-Type: text/xml; charset="utf-8"
Connection: close
Date: Tue, 23 Oct 2001 20:55:58 GMT
Content-Length: 14199
<?xml version="1.0" encoding="utf-8"?>
<d:multistatus xmlns:d="DAV:">
<d:response>
<d:href>/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Tue, 23 Oct 2001 16:55:43
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:"></n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/acl_users</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Tue, 25 Sep 2001 20:09:54
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"></n:resourcetype>
<n:displayname xmlns:n="DAV:">acl_users</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/Control_Panel/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Sat, 20 Jan 2001 21:39:14
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:">Control_Panel</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/standard_html_header</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:">text/html</n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Sat, 20 Jan 2001 21:39:14
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:">80</n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"></n:resourcetype>
<n:displayname xmlns:n="DAV:">standard_html_header</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/standard_html_footer</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:">text/html</n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Sat, 20 Jan 2001 21:39:14
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:">53</n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"></n:resourcetype>
<n:displayname xmlns:n="DAV:">standard_html_footer</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/standard_error_message</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:">text/html</n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Sat, 20 Jan 2001 21:39:14
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:">1365</n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"></n:resourcetype>
<n:displayname xmlns:n="DAV:">standard_error_message</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/QuickStart/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Sat, 20 Jan 2001 21:39:14
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:">QuickStart</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/index_html</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:">text/html</n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Sat, 20 Jan 2001 21:39:14
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:">92</n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"></n:resourcetype>
<n:displayname xmlns:n="DAV:">index_html</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/squish-test/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Fri, 28 Sep 2001 18:41:54
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:">squish-test</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/MailHost</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Thu, 27 Sep 2001 17:18:04
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"></n:resourcetype>
<n:displayname xmlns:n="DAV:">MailHost</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/WebDAVaccess/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Mon, 22 Oct 2001 17:50:06
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:">WebDAVaccess</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/test/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Mon, 22 Oct 2001 17:49:35
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:">test</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/madhavi/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Mon, 22 Oct 2001 19:46:28
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:">madhavi</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/OnTheRootTest/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Tue, 23 Oct 2001 16:55:51
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:">OnTheRootTest</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
</d:multistatus>
------------------------------------------------------------------------
------
Request:
PROPFIND / HTTP/1.1
Accept-Language: en-us
Content-Type: text/xml
Translate: f
Content-Length: 380
Depth: 1
User-Agent: Microsoft Data Access Internet Publishing Provider DAV 1.1
Host: hercules:8080
Connection: Keep-Alive
<?xml version="1.0" ?>
<propfind xmlns="DAV:">
<prop>
<name/>
<parentname/>
<href/>
<ishidden/>
<iscollection/>
<isreadonly/>
<getcontenttype/>
<contentclass/>
<getcontentlanguage/>
<creationdate/>
<lastaccessed/>
<getlastmodified/>
<getcontentlength/>
<resourcetype/>
<isstructureddocument/>
<defaultdocument/>
<displayname/>
<isroot/>
</prop>
</propfind>
------------------------------------------------------------------------
------
Request:
PROPFIND / HTTP/1.1
Accept-Language: en-us
Content-Type: text/xml
Translate: f
Content-Length: 380
Depth: 1
User-Agent: Microsoft Data Access Internet Publishing Provider DAV 1.1
Host: hercules:8080
Connection: Keep-Alive
<?xml version="1.0" ?>
<propfind xmlns="DAV:">
<prop>
<name/>
<parentname/>
<href/>
<ishidden/>
<iscollection/>
<isreadonly/>
<getcontenttype/>
<contentclass/>
<getcontentlanguage/>
<creationdate/>
<lastaccessed/>
<getlastmodified/>
<getcontentlength/>
<resourcetype/>
<isstructureddocument/>
<defaultdocument/>
<displayname/>
<isroot/>
</prop>
</propfind>
------------------------------------------------------------------------
------
Response:
HTTP/1.1 207 Multi-Status
Server: Zope/(Zope 2.4.1 (binary release, python 2.1, win32-x86),
python 2.1.0, win32) ZServer/1.1b1
Date: Tue, 23 Oct 2001 21:06:43 GMT
Ms-Author-Via: DAV
Content-Type: text/xml; charset="utf-8"
Connection: close
Date: Tue, 23 Oct 2001 21:06:43 GMT
Content-Length: 14199
<?xml version="1.0" encoding="utf-8"?>
<d:multistatus xmlns:d="DAV:">
<d:response>
<d:href>/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Tue, 23 Oct 2001 16:55:43
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:"></n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/acl_users</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Tue, 25 Sep 2001 20:09:54
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"></n:resourcetype>
<n:displayname xmlns:n="DAV:">acl_users</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/Control_Panel/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Sat, 20 Jan 2001 21:39:14
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:">Control_Panel</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/standard_html_header</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:">text/html</n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Sat, 20 Jan 2001 21:39:14
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:">80</n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"></n:resourcetype>
<n:displayname xmlns:n="DAV:">standard_html_header</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/standard_html_footer</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:">text/html</n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Sat, 20 Jan 2001 21:39:14
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:">53</n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"></n:resourcetype>
<n:displayname xmlns:n="DAV:">standard_html_footer</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/standard_error_message</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:">text/html</n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Sat, 20 Jan 2001 21:39:14
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:">1365</n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"></n:resourcetype>
<n:displayname xmlns:n="DAV:">standard_error_message</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/QuickStart/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Sat, 20 Jan 2001 21:39:14
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:">QuickStart</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/index_html</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:">text/html</n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Sat, 20 Jan 2001 21:39:14
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:">92</n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"></n:resourcetype>
<n:displayname xmlns:n="DAV:">index_html</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/squish-test/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Fri, 28 Sep 2001 18:41:54
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:">squish-test</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/MailHost</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Thu, 27 Sep 2001 17:18:04
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"></n:resourcetype>
<n:displayname xmlns:n="DAV:">MailHost</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/WebDAVaccess/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Mon, 22 Oct 2001 17:50:06
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:">WebDAVaccess</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/test/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Mon, 22 Oct 2001 17:49:35
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:">test</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/madhavi/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Mon, 22 Oct 2001 19:46:28
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:">madhavi</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/OnTheRootTest/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Tue, 23 Oct 2001 16:55:51
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:">OnTheRootTest</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
</d:multistatus>
------------------------------------------------------------------------
------
Request:
PROPFIND /WebDAVaccess HTTP/1.1
Accept-Language: en-us
Content-Type: text/xml
Translate: f
Content-Length: 380
Depth: 1
User-Agent: Microsoft Data Access Internet Publishing Provider DAV 1.1
Host: hercules:8080
Connection: Keep-Alive
<?xml version="1.0" ?>
<propfind xmlns="DAV:">
<prop>
<name/>
<parentname/>
<href/>
<ishidden/>
<iscollection/>
<isreadonly/>
<getcontenttype/>
<contentclass/>
<getcontentlanguage/>
<creationdate/>
<lastaccessed/>
<getlastmodified/>
<getcontentlength/>
<resourcetype/>
<isstructureddocument/>
<defaultdocument/>
<displayname/>
<isroot/>
</prop>
</propfind>
------------------------------------------------------------------------
------
Response:
HTTP/1.1 207 Multi-Status
Server: Zope/(Zope 2.4.1 (binary release, python 2.1, win32-x86),
python 2.1.0, win32) ZServer/1.1b1
Date: Tue, 23 Oct 2001 21:06:46 GMT
Ms-Author-Via: DAV
Content-Type: text/xml; charset="utf-8"
Content-Length: 4129
Date: Tue, 23 Oct 2001 21:06:45 GMT
Content-Location: http://hercules:8080/WebDAVaccess/
Connection: close
<?xml version="1.0" encoding="utf-8"?>
<d:multistatus xmlns:d="DAV:">
<d:response>
<d:href>/WebDAVaccess/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Mon, 22 Oct 2001 17:50:06
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:">WebDAVaccess</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/WebDAVaccess/is/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Thu, 11 Oct 2001 19:38:45
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:">is</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/WebDAVaccess/test1/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Wed, 17 Oct 2001 18:17:13
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:">test1</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/WebDAVaccess/test2/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Mon, 22 Oct 2001 17:50:06
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:">test2</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
</d:multistatus>
------------------------------------------------------------------------
------
Response:
HTTP/1.1 207 Multi-Status
Server: Zope/(Zope 2.4.1 (binary release, python 2.1, win32-x86),
python 2.1.0, win32) ZServer/1.1b1
Date: Tue, 23 Oct 2001 21:06:53 GMT
Ms-Author-Via: DAV
Content-Type: text/xml; charset="utf-8"
Content-Length: 935
Date: Tue, 23 Oct 2001 21:06:53 GMT
Content-Location: http://hercules:8080/WebDAVaccess/
Connection: close
<?xml version="1.0" encoding="utf-8"?>
<d:multistatus xmlns:d="DAV:">
<d:response>
<d:href>/WebDAVaccess/</d:href>
<d:propstat xmlns:n="http://www.zope.org/propsets/default">
<d:prop>
<n:title></n:title>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat xmlns:n="DAV:">
<d:prop>
<n:creationdate>1970-01-01T12:00:00Z</n:creationdate>
<n:displayname>WebDAVaccess</n:displayname>
<n:resourcetype><n:collection/></n:resourcetype>
<n:getcontenttype></n:getcontenttype>
<n:getcontentlength></n:getcontentlength>
<n:source></n:source>
<n:supportedlock>
<n:lockentry>
<d:lockscope><d:exclusive/></d:lockscope>
<d:locktype><d:write/></d:locktype>
</n:lockentry>
</n:supportedlock>
<n:lockdiscovery>
</n:lockdiscovery>
<n:getlastmodified>Mon, 22 Oct 2001 17:50:06 GMT</n:getlastmodified>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
</d:response>
</d:multistatus>
------------------------------------------------------------------------
------
Request:
PROPFIND /WebDAVaccess HTTP/1.1
Accept-Language: en-us
Content-Type: text/xml
Translate: f
Content-Length: 380
Depth: 1
User-Agent: Microsoft Data Access Internet Publishing Provider DAV 1.1
Host: hercules:8080
Connection: Keep-Alive
<?xml version="1.0" ?>
<propfind xmlns="DAV:">
<prop>
<name/>
<parentname/>
<href/>
<ishidden/>
<iscollection/>
<isreadonly/>
<getcontenttype/>
<contentclass/>
<getcontentlanguage/>
<creationdate/>
<lastaccessed/>
<getlastmodified/>
<getcontentlength/>
<resourcetype/>
<isstructureddocument/>
<defaultdocument/>
<displayname/>
<isroot/>
</prop>
</propfind>
------------------------------------------------------------------------
------
Response:
HTTP/1.1 207 Multi-Status
Server: Zope/(Zope 2.4.1 (binary release, python 2.1, win32-x86),
python 2.1.0, win32) ZServer/1.1b1
Date: Tue, 23 Oct 2001 21:07:05 GMT
Ms-Author-Via: DAV
Content-Type: text/xml; charset="utf-8"
Content-Length: 3117
Date: Tue, 23 Oct 2001 21:07:05 GMT
Content-Location: http://hercules:8080/WebDAVaccess/
Connection: close
<?xml version="1.0" encoding="utf-8"?>
<d:multistatus xmlns:d="DAV:">
<d:response>
<d:href>/WebDAVaccess/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Tue, 23 Oct 2001 21:06:58
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:">WebDAVaccess</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/WebDAVaccess/is/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Thu, 11 Oct 2001 19:38:45
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:">is</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/WebDAVaccess/test2/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Mon, 22 Oct 2001 17:50:06
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:">test2</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
</d:multistatus>
------------------------------------------------------------------------
------
Response:
HTTP/1.1 207 Multi-Status
Server: Zope/(Zope 2.4.1 (binary release, python 2.1, win32-x86),
python 2.1.0, win32) ZServer/1.1b1
Date: Tue, 23 Oct 2001 21:07:05 GMT
Ms-Author-Via: DAV
Content-Type: text/xml; charset="utf-8"
Content-Length: 946
Date: Tue, 23 Oct 2001 21:07:05 GMT
Content-Location: http://hercules:8080/WebDAVaccess/New%20Folder/
Connection: close
<?xml version="1.0" encoding="utf-8"?>
<d:multistatus xmlns:d="DAV:">
<d:response>
<d:href>/WebDAVaccess/New%20Folder/</d:href>
<d:propstat xmlns:n="http://www.zope.org/propsets/default">
<d:prop>
<n:title></n:title>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat xmlns:n="DAV:">
<d:prop>
<n:creationdate>1970-01-01T12:00:00Z</n:creationdate>
<n:displayname>New Folder</n:displayname>
<n:resourcetype><n:collection/></n:resourcetype>
<n:getcontenttype></n:getcontenttype>
<n:getcontentlength></n:getcontentlength>
<n:source></n:source>
<n:supportedlock>
<n:lockentry>
<d:lockscope><d:exclusive/></d:lockscope>
<d:locktype><d:write/></d:locktype>
</n:lockentry>
</n:supportedlock>
<n:lockdiscovery>
</n:lockdiscovery>
<n:getlastmodified>Tue, 23 Oct 2001 21:07:05 GMT</n:getlastmodified>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
</d:response>
</d:multistatus>
------------------------------------------------------------------------
------
Response:
HTTP/1.1 207 Multi-Status
Server: Zope/(Zope 2.4.1 (binary release, python 2.1, win32-x86),
python 2.1.0, win32) ZServer/1.1b1
Date: Tue, 23 Oct 2001 21:07:11 GMT
Ms-Author-Via: DAV
Content-Type: text/xml; charset="utf-8"
Content-Length: 935
Date: Tue, 23 Oct 2001 21:07:11 GMT
Content-Location: http://hercules:8080/WebDAVaccess/
Connection: close
<?xml version="1.0" encoding="utf-8"?>
<d:multistatus xmlns:d="DAV:">
<d:response>
<d:href>/WebDAVaccess/</d:href>
<d:propstat xmlns:n="http://www.zope.org/propsets/default">
<d:prop>
<n:title></n:title>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat xmlns:n="DAV:">
<d:prop>
<n:creationdate>1970-01-01T12:00:00Z</n:creationdate>
<n:displayname>WebDAVaccess</n:displayname>
<n:resourcetype><n:collection/></n:resourcetype>
<n:getcontenttype></n:getcontenttype>
<n:getcontentlength></n:getcontentlength>
<n:source></n:source>
<n:supportedlock>
<n:lockentry>
<d:lockscope><d:exclusive/></d:lockscope>
<d:locktype><d:write/></d:locktype>
</n:lockentry>
</n:supportedlock>
<n:lockdiscovery>
</n:lockdiscovery>
<n:getlastmodified>Tue, 23 Oct 2001 21:07:05 GMT</n:getlastmodified>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
</d:response>
</d:multistatus>
------------------------------------------------------------------------
------
Response:
HTTP/1.1 207 Multi-Status
Server: Zope/(Zope 2.4.1 (binary release, python 2.1, win32-x86),
python 2.1.0, win32) ZServer/1.1b1
Date: Tue, 23 Oct 2001 21:07:18 GMT
Ms-Author-Via: DAV
Content-Type: text/xml; charset="utf-8"
Content-Length: 935
Date: Tue, 23 Oct 2001 21:07:18 GMT
Content-Location: http://hercules:8080/WebDAVaccess/
Connection: close
<?xml version="1.0" encoding="utf-8"?>
<d:multistatus xmlns:d="DAV:">
<d:response>
<d:href>/WebDAVaccess/</d:href>
<d:propstat xmlns:n="http://www.zope.org/propsets/default">
<d:prop>
<n:title></n:title>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat xmlns:n="DAV:">
<d:prop>
<n:creationdate>1970-01-01T12:00:00Z</n:creationdate>
<n:displayname>WebDAVaccess</n:displayname>
<n:resourcetype><n:collection/></n:resourcetype>
<n:getcontenttype></n:getcontenttype>
<n:getcontentlength></n:getcontentlength>
<n:source></n:source>
<n:supportedlock>
<n:lockentry>
<d:lockscope><d:exclusive/></d:lockscope>
<d:locktype><d:write/></d:locktype>
</n:lockentry>
</n:supportedlock>
<n:lockdiscovery>
</n:lockdiscovery>
<n:getlastmodified>Tue, 23 Oct 2001 21:07:05 GMT</n:getlastmodified>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
</d:response>
</d:multistatus>
------------------------------------------------------------------------
------
Response:
HTTP/1.1 207 Multi-Status
Server: Zope/(Zope 2.4.1 (binary release, python 2.1, win32-x86),
python 2.1.0, win32) ZServer/1.1b1
Date: Tue, 23 Oct 2001 21:07:36 GMT
Ms-Author-Via: DAV
Content-Type: text/xml; charset="utf-8"
Content-Length: 935
Date: Tue, 23 Oct 2001 21:07:36 GMT
Content-Location: http://hercules:8080/WebDAVaccess/
Connection: close
<?xml version="1.0" encoding="utf-8"?>
<d:multistatus xmlns:d="DAV:">
<d:response>
<d:href>/WebDAVaccess/</d:href>
<d:propstat xmlns:n="http://www.zope.org/propsets/default">
<d:prop>
<n:title></n:title>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat xmlns:n="DAV:">
<d:prop>
<n:creationdate>1970-01-01T12:00:00Z</n:creationdate>
<n:displayname>WebDAVaccess</n:displayname>
<n:resourcetype><n:collection/></n:resourcetype>
<n:getcontenttype></n:getcontenttype>
<n:getcontentlength></n:getcontentlength>
<n:source></n:source>
<n:supportedlock>
<n:lockentry>
<d:lockscope><d:exclusive/></d:lockscope>
<d:locktype><d:write/></d:locktype>
</n:lockentry>
</n:supportedlock>
<n:lockdiscovery>
</n:lockdiscovery>
<n:getlastmodified>Tue, 23 Oct 2001 21:07:05 GMT</n:getlastmodified>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
</d:response>
</d:multistatus>
------------------------------------------------------------------------
------
Request:
PROPFIND / HTTP/1.1
Accept-Language: en-us
Content-Type: text/xml
Translate: f
Content-Length: 380
Depth: 1
User-Agent: Microsoft Data Access Internet Publishing Provider DAV 1.1
Host: hercules:8080
Connection: Keep-Alive
<?xml version="1.0" ?>
<propfind xmlns="DAV:">
<prop>
<name/>
<parentname/>
<href/>
<ishidden/>
<iscollection/>
<isreadonly/>
<getcontenttype/>
<contentclass/>
<getcontentlanguage/>
<creationdate/>
<lastaccessed/>
<getlastmodified/>
<getcontentlength/>
<resourcetype/>
<isstructureddocument/>
<defaultdocument/>
<displayname/>
<isroot/>
</prop>
</propfind>
------------------------------------------------------------------------
------
Response:
HTTP/1.1 207 Multi-Status
Server: Zope/(Zope 2.4.1 (binary release, python 2.1, win32-x86),
python 2.1.0, win32) ZServer/1.1b1
Date: Wed, 24 Oct 2001 16:48:17 GMT
Ms-Author-Via: DAV
Content-Type: text/xml; charset="utf-8"
Connection: close
Date: Wed, 24 Oct 2001 16:48:16 GMT
Content-Length: 14199
<?xml version="1.0" encoding="utf-8"?>
<d:multistatus xmlns:d="DAV:">
<d:response>
<d:href>/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Tue, 23 Oct 2001 16:55:43
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:"></n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/acl_users</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Tue, 25 Sep 2001 20:09:54
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"></n:resourcetype>
<n:displayname xmlns:n="DAV:">acl_users</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/Control_Panel/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Sat, 20 Jan 2001 21:39:14
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:">Control_Panel</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/standard_html_header</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:">text/html</n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Sat, 20 Jan 2001 21:39:14
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:">80</n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"></n:resourcetype>
<n:displayname xmlns:n="DAV:">standard_html_header</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/standard_html_footer</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:">text/html</n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Sat, 20 Jan 2001 21:39:14
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:">53</n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"></n:resourcetype>
<n:displayname xmlns:n="DAV:">standard_html_footer</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/standard_error_message</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:">text/html</n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Sat, 20 Jan 2001 21:39:14
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:">1365</n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"></n:resourcetype>
<n:displayname xmlns:n="DAV:">standard_error_message</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/QuickStart/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Sat, 20 Jan 2001 21:39:14
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:">QuickStart</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/index_html</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:">text/html</n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Sat, 20 Jan 2001 21:39:14
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:">92</n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"></n:resourcetype>
<n:displayname xmlns:n="DAV:">index_html</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/squish-test/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Fri, 28 Sep 2001 18:41:54
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:">squish-test</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/MailHost</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Thu, 27 Sep 2001 17:18:04
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"></n:resourcetype>
<n:displayname xmlns:n="DAV:">MailHost</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/WebDAVaccess/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Tue, 23 Oct 2001 21:07:36
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:">WebDAVaccess</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/test/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Mon, 22 Oct 2001 17:49:35
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:">test</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/madhavi/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Mon, 22 Oct 2001 19:46:28
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:">madhavi</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/OnTheRootTest/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Tue, 23 Oct 2001 16:55:51
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:">OnTheRootTest</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
</d:multistatus>
------------------------------------------------------------------------
------
Response:
HTTP/1.1 207 Multi-Status
Server: Zope/(Zope 2.4.1 (binary release, python 2.1, win32-x86),
python 2.1.0, win32) ZServer/1.1b1
Date: Wed, 24 Oct 2001 16:48:27 GMT
Ms-Author-Via: DAV
Content-Type: text/xml; charset="utf-8"
Connection: close
Date: Wed, 24 Oct 2001 16:48:27 GMT
Content-Length: 914
<?xml version="1.0" encoding="utf-8"?>
<d:multistatus xmlns:d="DAV:">
<d:response>
<d:href>/</d:href>
<d:propstat xmlns:n="http://www.zope.org/propsets/default">
<d:prop>
<n:title>Zope</n:title>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat xmlns:n="DAV:">
<d:prop>
<n:creationdate>1970-01-01T12:00:00Z</n:creationdate>
<n:displayname></n:displayname>
<n:resourcetype><n:collection/></n:resourcetype>
<n:getcontenttype></n:getcontenttype>
<n:getcontentlength></n:getcontentlength>
<n:source></n:source>
<n:supportedlock>
<n:lockentry>
<d:lockscope><d:exclusive/></d:lockscope>
<d:locktype><d:write/></d:locktype>
</n:lockentry>
</n:supportedlock>
<n:lockdiscovery>
</n:lockdiscovery>
<n:getlastmodified>Tue, 23 Oct 2001 16:55:43 GMT</n:getlastmodified>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
</d:response>
</d:multistatus>
------------------------------------------------------------------------
------
Request:
PROPFIND / HTTP/1.1
Accept-Language: en-us
Content-Type: text/xml
Translate: f
Content-Length: 380
Depth: 1
User-Agent: Microsoft Data Access Internet Publishing Provider DAV 1.1
Host: hercules:8080
Connection: Keep-Alive
<?xml version="1.0" ?>
<propfind xmlns="DAV:">
<prop>
<name/>
<parentname/>
<href/>
<ishidden/>
<iscollection/>
<isreadonly/>
<getcontenttype/>
<contentclass/>
<getcontentlanguage/>
<creationdate/>
<lastaccessed/>
<getlastmodified/>
<getcontentlength/>
<resourcetype/>
<isstructureddocument/>
<defaultdocument/>
<displayname/>
<isroot/>
</prop>
</propfind>
------------------------------------------------------------------------
------
Response:
HTTP/1.1 207 Multi-Status
Server: Zope/(Zope 2.4.1 (binary release, python 2.1, win32-x86),
python 2.1.0, win32) ZServer/1.1b1
Date: Wed, 24 Oct 2001 16:48:29 GMT
Ms-Author-Via: DAV
Content-Type: text/xml; charset="utf-8"
Connection: close
Date: Wed, 24 Oct 2001 16:48:29 GMT
Content-Length: 14199
<?xml version="1.0" encoding="utf-8"?>
<d:multistatus xmlns:d="DAV:">
<d:response>
<d:href>/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Tue, 23 Oct 2001 16:55:43
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:"></n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/acl_users</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Tue, 25 Sep 2001 20:09:54
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"></n:resourcetype>
<n:displayname xmlns:n="DAV:">acl_users</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/Control_Panel/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Sat, 20 Jan 2001 21:39:14
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:">Control_Panel</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/standard_html_header</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:">text/html</n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Sat, 20 Jan 2001 21:39:14
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:">80</n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"></n:resourcetype>
<n:displayname xmlns:n="DAV:">standard_html_header</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/standard_html_footer</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:">text/html</n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Sat, 20 Jan 2001 21:39:14
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:">53</n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"></n:resourcetype>
<n:displayname xmlns:n="DAV:">standard_html_footer</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/standard_error_message</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:">text/html</n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Sat, 20 Jan 2001 21:39:14
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:">1365</n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"></n:resourcetype>
<n:displayname xmlns:n="DAV:">standard_error_message</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/QuickStart/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Sat, 20 Jan 2001 21:39:14
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:">QuickStart</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/index_html</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:">text/html</n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Sat, 20 Jan 2001 21:39:14
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:">92</n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"></n:resourcetype>
<n:displayname xmlns:n="DAV:">index_html</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/squish-test/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Fri, 28 Sep 2001 18:41:54
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:">squish-test</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/MailHost</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Thu, 27 Sep 2001 17:18:04
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"></n:resourcetype>
<n:displayname xmlns:n="DAV:">MailHost</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/WebDAVaccess/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Tue, 23 Oct 2001 21:07:36
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:">WebDAVaccess</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/test/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Mon, 22 Oct 2001 17:49:35
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:">test</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/madhavi/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Mon, 22 Oct 2001 19:46:28
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:">madhavi</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/OnTheRootTest/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Tue, 23 Oct 2001 16:55:51
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:">OnTheRootTest</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
</d:multistatus>
------------------------------------------------------------------------
------
Request:
PROPFIND /WebDAVaccess HTTP/1.1
Accept-Language: en-us
Content-Type: text/xml
Translate: f
Content-Length: 380
Depth: 1
User-Agent: Microsoft Data Access Internet Publishing Provider DAV 1.1
Host: hercules:8080
Connection: Keep-Alive
<?xml version="1.0" ?>
<propfind xmlns="DAV:">
<prop>
<name/>
<parentname/>
<href/>
<ishidden/>
<iscollection/>
<isreadonly/>
<getcontenttype/>
<contentclass/>
<getcontentlanguage/>
<creationdate/>
<lastaccessed/>
<getlastmodified/>
<getcontentlength/>
<resourcetype/>
<isstructureddocument/>
<defaultdocument/>
<displayname/>
<isroot/>
</prop>
</propfind>
------------------------------------------------------------------------
------
Response:
HTTP/1.1 207 Multi-Status
Server: Zope/(Zope 2.4.1 (binary release, python 2.1, win32-x86),
python 2.1.0, win32) ZServer/1.1b1
Date: Wed, 24 Oct 2001 16:48:33 GMT
Ms-Author-Via: DAV
Content-Type: text/xml; charset="utf-8"
Content-Length: 3117
Date: Wed, 24 Oct 2001 16:48:33 GMT
Content-Location: http://hercules:8080/WebDAVaccess/
Connection: close
<?xml version="1.0" encoding="utf-8"?>
<d:multistatus xmlns:d="DAV:">
<d:response>
<d:href>/WebDAVaccess/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Tue, 23 Oct 2001 21:07:36
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:">WebDAVaccess</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/WebDAVaccess/is/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Thu, 11 Oct 2001 19:38:45
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:">is</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/WebDAVaccess/test2/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Tue, 23 Oct 2001 21:10:40
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:">test2</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
</d:multistatus>
------------------------------------------------------------------------
------
Request:
PROPFIND /WebDAVaccess HTTP/1.1
Accept-Language: en-us
Content-Type: text/xml
Translate: f
Content-Length: 380
Depth: 1
User-Agent: Microsoft Data Access Internet Publishing Provider DAV 1.1
Host: hercules:8080
Connection: Keep-Alive
<?xml version="1.0" ?>
<propfind xmlns="DAV:">
<prop>
<name/>
<parentname/>
<href/>
<ishidden/>
<iscollection/>
<isreadonly/>
<getcontenttype/>
<contentclass/>
<getcontentlanguage/>
<creationdate/>
<lastaccessed/>
<getlastmodified/>
<getcontentlength/>
<resourcetype/>
<isstructureddocument/>
<defaultdocument/>
<displayname/>
<isroot/>
</prop>
</propfind>
------------------------------------------------------------------------
------
Response:
HTTP/1.1 207 Multi-Status
Server: Zope/(Zope 2.4.1 (binary release, python 2.1, win32-x86),
python 2.1.0, win32) ZServer/1.1b1
Date: Wed, 24 Oct 2001 16:48:39 GMT
Ms-Author-Via: DAV
Content-Type: text/xml; charset="utf-8"
Content-Length: 3117
Date: Wed, 24 Oct 2001 16:48:39 GMT
Content-Location: http://hercules:8080/WebDAVaccess/
Connection: close
<?xml version="1.0" encoding="utf-8"?>
<d:multistatus xmlns:d="DAV:">
<d:response>
<d:href>/WebDAVaccess/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Tue, 23 Oct 2001 21:07:36
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:">WebDAVaccess</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/WebDAVaccess/is/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Thu, 11 Oct 2001 19:38:45
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:">is</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/WebDAVaccess/test2/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Tue, 23 Oct 2001 21:10:40
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:">test2</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
</d:multistatus>
------------------------------------------------------------------------
------
Response:
HTTP/1.1 207 Multi-Status
Server: Zope/(Zope 2.4.1 (binary release, python 2.1, win32-x86),
python 2.1.0, win32) ZServer/1.1b1
Date: Wed, 24 Oct 2001 16:48:44 GMT
Ms-Author-Via: DAV
Content-Type: text/xml; charset="utf-8"
Content-Length: 946
Date: Wed, 24 Oct 2001 16:48:44 GMT
Content-Location: http://hercules:8080/WebDAVaccess/New%20Folder/
Connection: close
<?xml version="1.0" encoding="utf-8"?>
<d:multistatus xmlns:d="DAV:">
<d:response>
<d:href>/WebDAVaccess/New%20Folder/</d:href>
<d:propstat xmlns:n="http://www.zope.org/propsets/default">
<d:prop>
<n:title></n:title>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat xmlns:n="DAV:">
<d:prop>
<n:creationdate>1970-01-01T12:00:00Z</n:creationdate>
<n:displayname>New Folder</n:displayname>
<n:resourcetype><n:collection/></n:resourcetype>
<n:getcontenttype></n:getcontenttype>
<n:getcontentlength></n:getcontentlength>
<n:source></n:source>
<n:supportedlock>
<n:lockentry>
<d:lockscope><d:exclusive/></d:lockscope>
<d:locktype><d:write/></d:locktype>
</n:lockentry>
</n:supportedlock>
<n:lockdiscovery>
</n:lockdiscovery>
<n:getlastmodified>Wed, 24 Oct 2001 16:48:44 GMT</n:getlastmodified>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
</d:response>
</d:multistatus>
------------------------------------------------------------------------
------
Response:
HTTP/1.1 207 Multi-Status
Server: Zope/(Zope 2.4.1 (binary release, python 2.1, win32-x86),
python 2.1.0, win32) ZServer/1.1b1
Date: Wed, 24 Oct 2001 16:48:50 GMT
Ms-Author-Via: DAV
Content-Type: text/xml; charset="utf-8"
Content-Length: 935
Date: Wed, 24 Oct 2001 16:48:50 GMT
Content-Location: http://hercules:8080/WebDAVaccess/
Connection: close
<?xml version="1.0" encoding="utf-8"?>
<d:multistatus xmlns:d="DAV:">
<d:response>
<d:href>/WebDAVaccess/</d:href>
<d:propstat xmlns:n="http://www.zope.org/propsets/default">
<d:prop>
<n:title></n:title>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat xmlns:n="DAV:">
<d:prop>
<n:creationdate>1970-01-01T12:00:00Z</n:creationdate>
<n:displayname>WebDAVaccess</n:displayname>
<n:resourcetype><n:collection/></n:resourcetype>
<n:getcontenttype></n:getcontenttype>
<n:getcontentlength></n:getcontentlength>
<n:source></n:source>
<n:supportedlock>
<n:lockentry>
<d:lockscope><d:exclusive/></d:lockscope>
<d:locktype><d:write/></d:locktype>
</n:lockentry>
</n:supportedlock>
<n:lockdiscovery>
</n:lockdiscovery>
<n:getlastmodified>Wed, 24 Oct 2001 16:48:44 GMT</n:getlastmodified>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
</d:response>
</d:multistatus>
------------------------------------------------------------------------
------
Response:
HTTP/1.1 207 Multi-Status
Server: Zope/(Zope 2.4.1 (binary release, python 2.1, win32-x86),
python 2.1.0, win32) ZServer/1.1b1
Date: Wed, 24 Oct 2001 16:49:07 GMT
Ms-Author-Via: DAV
Content-Type: text/xml; charset="utf-8"
Content-Length: 935
Date: Wed, 24 Oct 2001 16:49:07 GMT
Content-Location: http://hercules:8080/WebDAVaccess/
Connection: close
<?xml version="1.0" encoding="utf-8"?>
<d:multistatus xmlns:d="DAV:">
<d:response>
<d:href>/WebDAVaccess/</d:href>
<d:propstat xmlns:n="http://www.zope.org/propsets/default">
<d:prop>
<n:title></n:title>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat xmlns:n="DAV:">
<d:prop>
<n:creationdate>1970-01-01T12:00:00Z</n:creationdate>
<n:displayname>WebDAVaccess</n:displayname>
<n:resourcetype><n:collection/></n:resourcetype>
<n:getcontenttype></n:getcontenttype>
<n:getcontentlength></n:getcontentlength>
<n:source></n:source>
<n:supportedlock>
<n:lockentry>
<d:lockscope><d:exclusive/></d:lockscope>
<d:locktype><d:write/></d:locktype>
</n:lockentry>
</n:supportedlock>
<n:lockdiscovery>
</n:lockdiscovery>
<n:getlastmodified>Wed, 24 Oct 2001 16:48:44 GMT</n:getlastmodified>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
</d:response>
</d:multistatus>
------------------------------------------------------------------------
------
Request:
PROPFIND / HTTP/1.1
Accept-Language: en-us
Content-Type: text/xml
Translate: f
Content-Length: 380
Depth: 1
User-Agent: Microsoft Data Access Internet Publishing Provider DAV 1.1
Host: hercules:8080
Connection: Keep-Alive
<?xml version="1.0" ?>
<propfind xmlns="DAV:">
<prop>
<name/>
<parentname/>
<href/>
<ishidden/>
<iscollection/>
<isreadonly/>
<getcontenttype/>
<contentclass/>
<getcontentlanguage/>
<creationdate/>
<lastaccessed/>
<getlastmodified/>
<getcontentlength/>
<resourcetype/>
<isstructureddocument/>
<defaultdocument/>
<displayname/>
<isroot/>
</prop>
</propfind>
------------------------------------------------------------------------
------
Response:
HTTP/1.1 207 Multi-Status
Server: Zope/(Zope 2.4.1 (binary release, python 2.1, win32-x86),
python 2.1.0, win32) ZServer/1.1b1
Date: Wed, 24 Oct 2001 16:49:16 GMT
Ms-Author-Via: DAV
Content-Type: text/xml; charset="utf-8"
Connection: close
Date: Wed, 24 Oct 2001 16:49:16 GMT
Content-Length: 14199
<?xml version="1.0" encoding="utf-8"?>
<d:multistatus xmlns:d="DAV:">
<d:response>
<d:href>/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Tue, 23 Oct 2001 16:55:43
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:"></n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/acl_users</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Tue, 25 Sep 2001 20:09:54
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"></n:resourcetype>
<n:displayname xmlns:n="DAV:">acl_users</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/Control_Panel/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Sat, 20 Jan 2001 21:39:14
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:">Control_Panel</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/standard_html_header</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:">text/html</n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Sat, 20 Jan 2001 21:39:14
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:">80</n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"></n:resourcetype>
<n:displayname xmlns:n="DAV:">standard_html_header</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/standard_html_footer</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:">text/html</n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Sat, 20 Jan 2001 21:39:14
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:">53</n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"></n:resourcetype>
<n:displayname xmlns:n="DAV:">standard_html_footer</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/standard_error_message</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:">text/html</n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Sat, 20 Jan 2001 21:39:14
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:">1365</n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"></n:resourcetype>
<n:displayname xmlns:n="DAV:">standard_error_message</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/QuickStart/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Sat, 20 Jan 2001 21:39:14
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:">QuickStart</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/index_html</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:">text/html</n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Sat, 20 Jan 2001 21:39:14
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:">92</n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"></n:resourcetype>
<n:displayname xmlns:n="DAV:">index_html</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/squish-test/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Fri, 28 Sep 2001 18:41:54
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:">squish-test</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/MailHost</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Thu, 27 Sep 2001 17:18:04
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"></n:resourcetype>
<n:displayname xmlns:n="DAV:">MailHost</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/WebDAVaccess/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Wed, 24 Oct 2001 16:48:44
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:">WebDAVaccess</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/test/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Mon, 22 Oct 2001 17:49:35
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:">test</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/madhavi/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Mon, 22 Oct 2001 19:46:28
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:">madhavi</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
<d:response>
<d:href>/OnTheRootTest/</d:href>
<d:propstat>
<d:prop>
<n:getcontenttype xmlns:n="DAV:"></n:getcontenttype>
<n:creationdate xmlns:n="DAV:">1970-01-01T12:00:00Z</n:creationdate>
<n:getlastmodified xmlns:n="DAV:">Tue, 23 Oct 2001 16:55:51
GMT</n:getlastmodified>
<n:getcontentlength xmlns:n="DAV:"></n:getcontentlength>
<n:resourcetype xmlns:n="DAV:"><n:collection/></n:resourcetype>
<n:displayname xmlns:n="DAV:">OnTheRootTest</n:displayname>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat>
<d:prop>
<n:name xmlns:n="DAV:"/>
<n:parentname xmlns:n="DAV:"/>
<n:href xmlns:n="DAV:"/>
<n:ishidden xmlns:n="DAV:"/>
<n:iscollection xmlns:n="DAV:"/>
<n:isreadonly xmlns:n="DAV:"/>
<n:contentclass xmlns:n="DAV:"/>
<n:getcontentlanguage xmlns:n="DAV:"/>
<n:lastaccessed xmlns:n="DAV:"/>
<n:isstructureddocument xmlns:n="DAV:"/>
<n:defaultdocument xmlns:n="DAV:"/>
<n:isroot xmlns:n="DAV:"/>
</d:prop>
<d:status>HTTP/1.1 404 Not Found</d:status>
</d:propstat>
</d:response>
</d:multistatus>
------------------------------------------------------------------------
------
Response:
HTTP/1.1 207 Multi-Status
Server: Zope/(Zope 2.4.1 (binary release, python 2.1, win32-x86),
python 2.1.0, win32) ZServer/1.1b1
Date: Wed, 24 Oct 2001 16:49:27 GMT
Ms-Author-Via: DAV
Content-Type: text/xml; charset="utf-8"
Connection: close
Date: Wed, 24 Oct 2001 16:49:27 GMT
Content-Length: 914
<?xml version="1.0" encoding="utf-8"?>
<d:multistatus xmlns:d="DAV:">
<d:response>
<d:href>/</d:href>
<d:propstat xmlns:n="http://www.zope.org/propsets/default">
<d:prop>
<n:title>Zope</n:title>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat xmlns:n="DAV:">
<d:prop>
<n:creationdate>1970-01-01T12:00:00Z</n:creationdate>
<n:displayname></n:displayname>
<n:resourcetype><n:collection/></n:resourcetype>
<n:getcontenttype></n:getcontenttype>
<n:getcontentlength></n:getcontentlength>
<n:source></n:source>
<n:supportedlock>
<n:lockentry>
<d:lockscope><d:exclusive/></d:lockscope>
<d:locktype><d:write/></d:locktype>
</n:lockentry>
</n:supportedlock>
<n:lockdiscovery>
</n:lockdiscovery>
<n:getlastmodified>Tue, 23 Oct 2001 16:55:43 GMT</n:getlastmodified>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
</d:response>
</d:multistatus>
Thanks,
Madhavi
1
0