Hi every body, We can successfuly PROPPATCH categories in Contacts or other PIM items using <e:keywords-utf8 dt:dt='mv.string'><x:v>A</x:v><x:v>B</x:v></e:keywords-utf8> (where e is xmlns http://schemas.microsoft.com/exchange/) The same Proppatch can also successsfuly modify the values of A,B to X or can be set to a blank String using <e:keywords-utf8 dt:dt='mv.string'> <x:v /> </e:keywords-utf8> But i am not able to find a way to completly delete this property once it was set so that it doesn't contain any Field (not even blank or null string). Does anyone have an Idea of how to remove this property completely. Thanks n Regards Sarabjit S. Rupaal
Hello, you can use the proppatch with a property-removal body: <propertyupdate xmlns="DAV:"> <remove> <prop> <e:keywords-utf8 /> </prop> </remove> </propertyupdate> See http://msdn.microsoft.com/library/default.asp?url=/library/en-us/e2k3/e2k3/_webdav_remove_element.asp Greetings, Henning Krause wrote in message news:1147081567.332569.298440@e56g2000cwe.googlegroups.com... > Hi every body, > > We can successfuly PROPPATCH categories in Contacts or other PIM items > using > <e:keywords-utf8 > dt:dt='mv.string'><x:v>A</x:v><x:v>B</x:v></e:keywords-utf8> > (where e is xmlns http://schemas.microsoft.com/exchange/) > > The same Proppatch can also successsfuly modify the values of A,B to X > or can be set to a blank String using > <e:keywords-utf8 dt:dt='mv.string'> <x:v /> </e:keywords-utf8> > > But i am not able to find a way to completly delete this property once > it was set so that it doesn't contain any Field (not even blank or null > string). > > Does anyone have an Idea of how to remove this property completely. > > Thanks n Regards > Sarabjit S. Rupaal >