WebDav Change Flag Property
Exchange Server Forum Index Exchange Server
Discussion forums for Microsoft Exchange Server users.
Microsoft Outlook
 
 FAQFAQ   MemberlistMemberlist     RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 
 
Google
 
Web ExchangeServerHelp.com
WebDav Change Flag Property

 
Post new topic   Reply to topic    Exchange Server Forum Index -> Development
Author Message
Joey
Guest





Posted: Wed Sep 14, 2005 12:59 am    Post subject: WebDav Change Flag Property Reply with quote

I found this email describing how to change the subject of an email:

http://support.microsoft.com/?id=310283

Does anyone know how to change the flags on the right hand side of the email
list in outlook or outlook web access through webdav. I want to flag an
email witha red flag.

Thanks!

Back to top
Michael
Guest





Posted: Wed Sep 14, 2005 8:59 am    Post subject: Re: WebDav Change Flag Property Reply with quote

You have to set property "http://schemas.microsoft.com/mapi/proptag/x10950003" to value "3".

Michael
-------------------------------
If you need WebDAV API for Exchange server,
use our component WebDAV .NET for Exchange.
Check out http://www.independentsoft.com


"Joey" <joey@newsgroup.nospam> wrote in message news:A2ABBB82-67AF-4582-A34B-7B0D670FD602@microsoft.com...
Quote:
I found this email describing how to change the subject of an email:

http://support.microsoft.com/?id=310283

Does anyone know how to change the flags on the right hand side of the email
list in outlook or outlook web access through webdav. I want to flag an
email witha red flag.

Thanks!
Back to top
Joey
Guest





Posted: Wed Sep 14, 2005 4:59 pm    Post subject: Re: WebDav Change Flag Property Reply with quote

Thanks for the help again Michael,

Where do you get information like that. I tried to look through all the MS
documentation and couldn't find it.

Sorry for the lack of understanding but I have only been retrieving messages
up to this point. Woudl my Query string look like this then in vb.net?

sQuery = "<?xml version='1.0'?>" & _
"<a:propertyupdate xmlns:a='DAV:' " & _
"xmlns:m='urn:schemas:mapi:'>" & _
"<a:set><a:prop>" & _
"<m:0x10950003>" & "3" & "</m:0x10950003>" & _
"</a:prop></a:set>" & _
"</a:propertyupdate>"

And then I just give it the full url of the email? Does the number
represent just a flagged email or can you change it to change the color?

Thanks again!



"Michael" wrote:

Quote:
You have to set property "http://schemas.microsoft.com/mapi/proptag/x10950003" to value "3".

Michael
-------------------------------
If you need WebDAV API for Exchange server,
use our component WebDAV .NET for Exchange.
Check out http://www.independentsoft.com


"Joey" <joey@newsgroup.nospam> wrote in message news:A2ABBB82-67AF-4582-A34B-7B0D670FD602@microsoft.com...
I found this email describing how to change the subject of an email:

http://support.microsoft.com/?id=310283

Does anyone know how to change the flags on the right hand side of the email
list in outlook or outlook web access through webdav. I want to flag an
email witha red flag.

Thanks!


Back to top
Henning Krause [MVP - Exc
Guest





Posted: Wed Sep 14, 2005 4:59 pm    Post subject: Re: WebDav Change Flag Property Reply with quote

Hello Joey,

you can get these properties with trial & error (generate an item within
outlook and see what the properties look like). Unfortunately, not all MAPI
properties are returned by WebDAV. You can then stick to Outlook Spy
(http://www.dimastr.com/outspy/).
Also, if you are working with Exchange & Outlook: Always remember that
Outlook uses MAPI internally, so the MAPI documentation is also helpful.
Finally, the Web is of crucial importance... for example, Siegfried Weber
has done a lot on those undocumented MAPI properties:
http://www.cdolive.com/cdo10.htm

To your query, your m: namespace is wrong. Instead of
xmlns:m="'urn:schemas:mapi:"
use
xmlns:m="http://schemas.microsoft.com/mapi/proptag/"

Greetings,
Henning Krause
MVP - Exchange
http://www.infinitec.de


"Joey" <joey@newsgroup.nospam> wrote in message
news:66EA46FA-B83F-4E95-A325-D2503F276F55@microsoft.com...
Quote:
Thanks for the help again Michael,

Where do you get information like that. I tried to look through all the
MS
documentation and couldn't find it.

Sorry for the lack of understanding but I have only been retrieving
messages
up to this point. Woudl my Query string look like this then in vb.net?

sQuery = "<?xml version='1.0'?>" & _
"<a:propertyupdate xmlns:a='DAV:' " & _
"xmlns:m='urn:schemas:mapi:'>" & _
"<a:set><a:prop>" & _
"<m:0x10950003>" & "3" & "</m:0x10950003>" & _
"</a:prop></a:set>" & _
"</a:propertyupdate>"

And then I just give it the full url of the email? Does the number
represent just a flagged email or can you change it to change the color?

Thanks again!



"Michael" wrote:

You have to set property
"http://schemas.microsoft.com/mapi/proptag/x10950003" to value "3".

Michael
-------------------------------
If you need WebDAV API for Exchange server,
use our component WebDAV .NET for Exchange.
Check out http://www.independentsoft.com


"Joey" <joey@newsgroup.nospam> wrote in message
news:A2ABBB82-67AF-4582-A34B-7B0D670FD602@microsoft.com...
I found this email describing how to change the subject of an email:

http://support.microsoft.com/?id=310283

Does anyone know how to change the flags on the right hand side of the
email
list in outlook or outlook web access through webdav. I want to flag
an
email witha red flag.

Thanks!
Back to top
Joey
Guest





Posted: Thu Sep 15, 2005 12:08 am    Post subject: Re: WebDav Change Flag Property Reply with quote

Well, Thanks for all your help. Your right that outlook spy is very cool. I
just spent an hour trying to figure out how to get the flag to turn into a
check mark and it seems like it is based on a few different values. Has
anybody ever tagged an email with the check and if so what was your sql
string? I tried this but it didn't work.

sQuery = "<?xml version=""1.0""?>" & _
"<a:propertyupdate xmlns:a=""DAV:"" " & _
"xmlns:m=""http://schemas.microsoft.com/mapi/proptag/"">" & _
"<a:set><a:prop>" & _
"<m:0x10900003>1</m:0x10900003>" & _
"<m:0x10910040b
b:dt=""dateTime.tz"">2005-11-04T13:30:00.00Z</m:0x10910040>" & _
"</a:prop></a:set>" & _
"</a:propertyupdate>"

Is there a way to tag an email with a icon other than the standard flags?
Like a custom flag?

Thanks!

"Henning Krause [MVP - Exchange]" wrote:

Quote:
Hello Joey,

you can get these properties with trial & error (generate an item within
outlook and see what the properties look like). Unfortunately, not all MAPI
properties are returned by WebDAV. You can then stick to Outlook Spy
(http://www.dimastr.com/outspy/).
Also, if you are working with Exchange & Outlook: Always remember that
Outlook uses MAPI internally, so the MAPI documentation is also helpful.
Finally, the Web is of crucial importance... for example, Siegfried Weber
has done a lot on those undocumented MAPI properties:
http://www.cdolive.com/cdo10.htm

To your query, your m: namespace is wrong. Instead of
xmlns:m="'urn:schemas:mapi:"
use
xmlns:m="http://schemas.microsoft.com/mapi/proptag/"

Greetings,
Henning Krause
MVP - Exchange
http://www.infinitec.de


"Joey" <joey@newsgroup.nospam> wrote in message
news:66EA46FA-B83F-4E95-A325-D2503F276F55@microsoft.com...
Thanks for the help again Michael,

Where do you get information like that. I tried to look through all the
MS
documentation and couldn't find it.

Sorry for the lack of understanding but I have only been retrieving
messages
up to this point. Woudl my Query string look like this then in vb.net?

sQuery = "<?xml version='1.0'?>" & _
"<a:propertyupdate xmlns:a='DAV:' " & _
"xmlns:m='urn:schemas:mapi:'>" & _
"<a:set><a:prop>" & _
"<m:0x10950003>" & "3" & "</m:0x10950003>" & _
"</a:prop></a:set>" & _
"</a:propertyupdate>"

And then I just give it the full url of the email? Does the number
represent just a flagged email or can you change it to change the color?

Thanks again!



"Michael" wrote:

You have to set property
"http://schemas.microsoft.com/mapi/proptag/x10950003" to value "3".

Michael
-------------------------------
If you need WebDAV API for Exchange server,
use our component WebDAV .NET for Exchange.
Check out http://www.independentsoft.com


"Joey" <joey@newsgroup.nospam> wrote in message
news:A2ABBB82-67AF-4582-A34B-7B0D670FD602@microsoft.com...
I found this email describing how to change the subject of an email:

http://support.microsoft.com/?id=310283

Does anyone know how to change the flags on the right hand side of the
email
list in outlook or outlook web access through webdav. I want to flag
an
email witha red flag.

Thanks!


Back to top
Joey
Guest





Posted: Thu Sep 15, 2005 12:59 am    Post subject: Re: WebDav Change Flag Property Reply with quote

Nevermind,

I got it. Would like to know if the custom icon is a possiblity tho?

Later!

"Joey" wrote:

Quote:
Well, Thanks for all your help. Your right that outlook spy is very cool. I
just spent an hour trying to figure out how to get the flag to turn into a
check mark and it seems like it is based on a few different values. Has
anybody ever tagged an email with the check and if so what was your sql
string? I tried this but it didn't work.

sQuery = "<?xml version=""1.0""?>" & _
"<a:propertyupdate xmlns:a=""DAV:"" " & _
"xmlns:m=""http://schemas.microsoft.com/mapi/proptag/"">" & _
"<a:set><a:prop>" & _
"<m:0x10900003>1</m:0x10900003>" & _
"<m:0x10910040b
b:dt=""dateTime.tz"">2005-11-04T13:30:00.00Z</m:0x10910040>" & _
"</a:prop></a:set>" & _
"</a:propertyupdate>"

Is there a way to tag an email with a icon other than the standard flags?
Like a custom flag?

Thanks!

"Henning Krause [MVP - Exchange]" wrote:

Hello Joey,

you can get these properties with trial & error (generate an item within
outlook and see what the properties look like). Unfortunately, not all MAPI
properties are returned by WebDAV. You can then stick to Outlook Spy
(http://www.dimastr.com/outspy/).
Also, if you are working with Exchange & Outlook: Always remember that
Outlook uses MAPI internally, so the MAPI documentation is also helpful.
Finally, the Web is of crucial importance... for example, Siegfried Weber
has done a lot on those undocumented MAPI properties:
http://www.cdolive.com/cdo10.htm

To your query, your m: namespace is wrong. Instead of
xmlns:m="'urn:schemas:mapi:"
use
xmlns:m="http://schemas.microsoft.com/mapi/proptag/"

Greetings,
Henning Krause
MVP - Exchange
http://www.infinitec.de


"Joey" <joey@newsgroup.nospam> wrote in message
news:66EA46FA-B83F-4E95-A325-D2503F276F55@microsoft.com...
Thanks for the help again Michael,

Where do you get information like that. I tried to look through all the
MS
documentation and couldn't find it.

Sorry for the lack of understanding but I have only been retrieving
messages
up to this point. Woudl my Query string look like this then in vb.net?

sQuery = "<?xml version='1.0'?>" & _
"<a:propertyupdate xmlns:a='DAV:' " & _
"xmlns:m='urn:schemas:mapi:'>" & _
"<a:set><a:prop>" & _
"<m:0x10950003>" & "3" & "</m:0x10950003>" & _
"</a:prop></a:set>" & _
"</a:propertyupdate>"

And then I just give it the full url of the email? Does the number
represent just a flagged email or can you change it to change the color?

Thanks again!



"Michael" wrote:

You have to set property
"http://schemas.microsoft.com/mapi/proptag/x10950003" to value "3".

Michael
-------------------------------
If you need WebDAV API for Exchange server,
use our component WebDAV .NET for Exchange.
Check out http://www.independentsoft.com


"Joey" <joey@newsgroup.nospam> wrote in message
news:A2ABBB82-67AF-4582-A34B-7B0D670FD602@microsoft.com...
I found this email describing how to change the subject of an email:

http://support.microsoft.com/?id=310283

Does anyone know how to change the flags on the right hand side of the
email
list in outlook or outlook web access through webdav. I want to flag
an
email witha red flag.

Thanks!


Back to top
 
Post new topic   Reply to topic    Exchange Server Forum Index -> Development All times are GMT
Page 1 of 1

 
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum




Windows Server Dedicated Servers
Contact Us
New Topics Powered by phpBB