Simon
Guest
|
Posted:
Tue Nov 29, 2005 9:58 am Post subject:
can't display the distribution name in owa using WebDAV |
|
|
Hi,
I am using WebDAV to create contacts and distributions lists. Actually
they can be successfully created. However, i found that when i access through
the OWA, i found that the distribution list name is blank. I need to type in
the distribution name and click the save and close buttton to solve this.
However, i have a huge amount of users to migrate, so it's not possible for
me to add save one by one. Would you mind giving me some hints on how to add
it through the WebDAV. The following is the code for your reference:
strXMLNSInfo = "xmlns:a=""DAV:"" " & _
"xmlns:b=""urn:schemas-microsoft-com:datatypes"" " & _
"xmlns:c=""xml:"" " & _
"xmlns:d=""http://schemas.microsoft.com/mapi/id/{00062004-0000-0000-C000-000000000046}/"" " & _
"xmlns:e=""urn:schemas:groups:"" " & _
"xmlns:f=""http://schemas.microsoft.com/exchange/"" " & _
"xmlns:g=""http://schemas.microsoft.com/mapi/proptag/"" " & _
"xmlns:h=""urn:schemas:contacts:"">"
strBody = "<?xml version=""1.0""?>" & _
"<a:propertyupdate " & strXMLNSInfo & _
"<a:set>" & _
"<a:prop>" & _
"<e:content-class>urn:content-classes:group</e:content-class>"
& _
"<f:outlookmessageclass>IPM.DistList</f:outlookmessageclass>"
& _
"<h:fileas>DistriGroup</h:fileas>" & _
"<g:0x0037001E>DistriGroup</g:0x0037001E>" & _
"<g:0x0070001E>DistriGroup</g:0x0070001E>" & _
' i know that there must be some coding here to tell the
exchange that
' what is the distribution name, but i really don't know
that exact code.
"<d:0x8055 b:dt='mv.bin.base64'><c:v /></d:0x8055>" & _
"<d:0x8054 b:dt='mv.bin.base64'><c:v /></d:0x8054>" & _
' the above two code is copied from another site, could
somebody tell
'me what's the purpose of the above coding?
"</a:prop>" & _
"</a:set>" & _
"</a:propertyupdate>"
Please advise. Thanks very much.
|
|