I trying to enumerate and make a graph from a user's contact list. I am using WebDAV to access the exchange store. I have a situation where I am unable to determine what information is being referred to. My contact setup: ============= Contacts Folder has 3 Distribution list (2 of them have the same name). - First List (with href http://server/Exchange/user1/Contacts/First%20List.EML) - First List (with href http://server/Exchange/user1/Contacts/First%20List-2.EML) - Second List (with href http://server/Exchange/user1/Contacts/Second%20List.EML) - First List (with href http://server/Exchange/user1/Contacts/First%20List.EML) Note that the distribution list "Second List" contains one of the 2 "First List" dist lists. I can successfully issue a WebDAV SEARCH on http://server/Exchange/user1/Contacts to pull details about all the distribution lists. Doing a http GET on http://server/Exchange/user1/Contacts/Second%20List.EML?cmd=viewmembers, gives me the following XML - <xml id="memberlist"> - <cdldata> <href>http://server/Exchange/user1/Contacts/Second%20List.EML</href> <error /> <membertext /> <unresolvedcount>0</unresolvedcount> - <member> <memberid>0</memberid> <icon>/exchweb/img/icon-contact-dl.gif</icon> <dn>First List</dn> <email /> </member> </cdldata> </xml> >From this information, its ambuiguous to say which First List is being referred to here. Is there another command that will give me more information (like the URL instead of the DN ??) that I can use ? Am I missing something else ? regards