|
|
Hello,
if by "Custom fields" you mean custom Outlook form fields... yes you can
create them. Just use the name of the field without any namespaces (PROPFIND
example)
<propfind>
<prop>
<mycustomproperty xmlns="" />
</prop>
</prop>
If you just want to create a property that won't be consumed by a custom
outlook form, just use your own namespace (again, PROPFIND example):
<propfind xmns="DAV:">
<prop>
<mycustomproperty xmlns="http://tempuri.org/" />
</prop>
</prop>
But you should replace the tempuri.org">http://tempuri.org with your own namespace (if
you own a domain, use that, for example).
Same goes with the PROPPATCH method.
Best regards,
Henning
<togauravdaga@xxxxxxxxx> wrote in message
news:1161946151.979781.117000@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Hi All,
I am trying to add custom attribute to Exchange resource using WebDav.
Well is it possible to add custom field using Webdav? If yes then how?
Any help in this regards will be highly appreciated.
Regards,
Gaurav Daga
|
|