I need to create an appointment with webdav and can successfully do this for the basic meeting properties. However, I need to know how to do this for a meeting that needs to have categories assigned to it. Any ideas on how to do this?
You need to include the categories property http://schemas.microsoft.com/exchange/keywords-utf8 in your Proppatch which is a mutlivalued property so something like "xmlns:e='http://schemas.microsoft.com/exchange/' " & _ "xmlns:x='XML:' " & _ "<e:keywords-utf8 b:dt=""mv.string"">" & _ "<x:v>Cat1</x:v>" & _ "<x:v>Cat2</x:v>" & _ "</e:keywords-utf8>" & _ Cheers Glen wrote in message news:1138047299.810330.59610@g47g2000cwa.googlegroups.com... >I need to create an appointment with webdav and can successfully do > this for the basic meeting properties. However, I need to know how to > do this for a meeting that needs to have categories assigned to it. > > Any ideas on how to do this? >