microsoft.public.exchange.development
[Top] [All Lists]

Re: Custom field using WebDav ??

Subject: Re: Custom field using WebDav ??
From: "Henning Krause"
Date: Sun, 29 Oct 2006 18:04:06 +0100
Newsgroups: microsoft.public.exchange.development
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



<Prev in Thread] Current Thread [Next in Thread>
Privacy Policy