Gmail Agenda Documenten Reader Het internet meer »
Onlangs bekeken groepen | Help | Aanmelden
Google Discussiegroepen Startpagina
WebDAV & Tasks: A Solution
Er zijn momenteel te veel onderwerpen in deze discussiegroep die als eerste worden weergegeven. Als je dit onderwerp als eerste wilt weergeven, moet je deze optie verwijderen van een ander onderwerp.
Er is een fout opgetreden bij het verwerken van je verzoek. Probeer het opnieuw.
Markeren
  5 berichten - Alles uitvouwen  -  Alles naar het vertalen Vertaald (alle originelen weergeven)
De groep waarnaar je een bericht verzendt, is een Usenet-groep. Berichten die je in deze groep verzendt, zijn zichtbaar voor iedereen op het Internet
Je antwoord is niet verzonden.
Uw bericht is geplaatst
 
Van:
Aan:
Cc:
Reactie op:
Cc toevoegen | Reactie toevoegen | Onderwerp bewerken
Onderwerp:
Validatie:
Typ ter verificatie de tekens uit de onderstaande afbeelding of de getallen die je hoort wanneer je klikt op het pictogram voor toegankelijkheid. Luister en typ de nummers die je hoort
 
Matt Choudoir  
Profiel weergeven   Naar het vertalen Vertaald (origineel weergeven)
 Meer opties 11 sep 2003, 17:31
Nieuwsgroepen: microsoft.public.exchange2000.development
Van: "Matt Choudoir" <mchoud...@startech-comp.com>
Datum: Thu, 11 Sep 2003 10:29:46 -0500
Lokaal: do 11 sep 2003 17:29
Onderwerp: WebDAV & Tasks: A Solution
Over the past couple days I have been trying, like a lot of people here, to
add tasks to the Exchange Store using WebDAV.  Well this morning I think I
may have figured it out.

1)  Problem 1:  Using code found in this newsgroup I was successfull in
adding a task to exchange but could not get the Due Date, Start Date, etc to
show up - even using property IDs found at CDOLive.

    Resolution:  After ripping into Outlook using OutlookSpy I discovered
that the property IDs (and schema GUID) listed on CDOLive were incorrect -
at least for Outlook XP.  Interestingly enough, Outlook XP still includes
values at the properties listed on CDOLive - probably for backwards
compatability.  The following is an updated list of properties with their
schema GUIDs that is currently working for me:

http://schemas.microsoft.com/mapi/id/{00062003-0000-0000-C000-000000000046}/

0x8105    Due Date
0x8104    Start Date

http://schemas.microsoft.com/mapi/id/{00062008-0000-0000-C000-000000000046}/

0x8517    Due Date
0x8516    Start Date
0x8503    Reminder Enabled    (boolean)
0x8560    Reminder Date
0x8502    Reminder Date    (Not sure why there are two properties...)
0x811C    Task Completed    (boolean)

2)    Problem 2:  After I figured out how to reference and set these
properties I ran into another problem.  I could not get the property data
types to be set correctly.

    Resolution:  After changing the namespace for the data types from the
one listed by several sources as
(urn:uuid:c2f41010-65b3-11d1-a29f-00aa00c14882) to one found in MSDN
(urn:schemas-microsoft-com:datatypes) everything worked fine.

Here is a listing of the xml, with the new changes, that I am using to
successfully create a new Task in Exchange:

<?xml version='1.0'?>
<d:propertyupdate xmlns:d="DAV:"
 xmlns:e="urn:schemas:httpmail:"
 xmlns:f="http://schemas.microsoft.com/exchange/"
 xmlns:b="urn:schemas-microsoft-com:datatypes"

xmlns:h1="http://schemas.microsoft.com/mapi/id/{00062003-0000-0000-C000-0000
00000046}/"

xmlns:h2="http://schemas.microsoft.com/mapi/id/{00062008-0000-0000-C000-0000
00000046}/">
<d:set>
<d:prop>
<d:contentclass>urn:content-classes:task</d:contentclass>
<f:outlookmessageclass>IPM.Task</f:outlookmessageclass>
<e:subject>Test</e:subject>
<e:textdescription>This is a test task</e:textdescription>
<h2:0x8517 b:dt="dateTime.tz">2003-09-12T13:30:00.00Z</h2:0x8517>
<h1:0x8105 b:dt="dateTime.tz">2003-09-12T13:30:00.00Z</h1:0x8105>
<h2:0x8516 b:dt="dateTime.tz">2003-09-11T18:45:00.00Z</h2:0x8516>
<h1:0x8104 b:dt="dateTime.tz">2003-09-11T18:45:00.00Z</h1:0x8104>
<h2:0x8503 b:dt="boolean">1</h2:0x8503>
<h2:0x8560 b:dt="dateTime.tz">2003-09-12T12:50:00.00Z</h2:0x8560>
<h2:0x8502 b:dt="dateTime.tz">2003-09-12T12:50:00.00Z</h2:0x8502>
<h1:0x811C b:dt="boolean">0</h1:0x811C>
</d:prop>
</d:set>
</d:propertyupdate>

I hope this helps everyone here.  Please let me know if you have any
problems with it, or any questions.

Matt Choudoir
Applications Analyst
StarTech Computing, Inc.
651-385-0607
mchoud...@startech-comp.com
www.startech-comp.com


    Doorsturen  
Je moet je aanmelden voordat je berichten kunt plaatsen.
Als je een bericht wilt verzenden, moet je eerst deelnemen aan deze discussiegroep.
Werk je bijnaam bij op de pagina met abonnementsinstellingen voordat je een bericht plaatst.
Je hebt geen toestemming om berichten te plaatsen.
Dave Mills  
Profiel weergeven   Naar het vertalen Vertaald (origineel weergeven)
 Meer opties 11 sep 2003, 18:33
Nieuwsgroepen: microsoft.public.exchange2000.development
Van: "Dave Mills" <d...@exchange-mail.org>
Datum: Thu, 11 Sep 2003 09:32:19 -0700
Lokaal: do 11 sep 2003 18:32
Onderwerp: Re: WebDAV & Tasks: A Solution
BTW, there's a document on MSDN that has a good portion of this information
as well (in fact, it references the CDOLive website as a source for more
information).  The URL is:

http://msdn.microsoft.com/library/en-us/pr2ksdk/html/copyingtaskstoex...

It doesn't include the reminder property values or the task complete values,
but does include the percent complete values.

- Dave

"Matt Choudoir" <mchoud...@startech-comp.com> wrote in message

news:%23sgUJmHeDHA.560@tk2msftngp13.phx.gbl...

http://schemas.microsoft.com/mapi/id/{00062003-0000-0000-C000-000000000046}/

> 0x8105    Due Date
> 0x8104    Start Date

http://schemas.microsoft.com/mapi/id/{00062008-0000-0000-C000-000000000046}/

xmlns:h1="http://schemas.microsoft.com/mapi/id/{00062003-0000-0000-C000-0000
> 00000046}/"

xmlns:h2="http://schemas.microsoft.com/mapi/id/{00062008-0000-0000-C000-0000


    Doorsturen  
Je moet je aanmelden voordat je berichten kunt plaatsen.
Als je een bericht wilt verzenden, moet je eerst deelnemen aan deze discussiegroep.
Werk je bijnaam bij op de pagina met abonnementsinstellingen voordat je een bericht plaatst.
Je hebt geen toestemming om berichten te plaatsen.
Independentsoft  
Profiel weergeven   Naar het vertalen Vertaald (origineel weergeven)
 Meer opties 12 sep 2003, 21:21
Nieuwsgroepen: microsoft.public.exchange2000.development
Van: "Independentsoft" <i...@independentsoft.de>
Datum: Fri, 12 Sep 2003 21:19:23 +0200
Lokaal: vr 12 sep 2003 21:19
Onderwerp: Re: WebDAV & Tasks: A Solution
Try WebDAV .NET from www.independentsoft.de

Regards

"Matt Choudoir" <mchoud...@startech-comp.com> wrote in message

news:%23sgUJmHeDHA.560@tk2msftngp13.phx.gbl...

http://schemas.microsoft.com/mapi/id/{00062003-0000-0000-C000-000000000046}/

> 0x8105    Due Date
> 0x8104    Start Date

http://schemas.microsoft.com/mapi/id/{00062008-0000-0000-C000-000000000046}/

xmlns:h1="http://schemas.microsoft.com/mapi/id/{00062003-0000-0000-C000-0000
> 00000046}/"

xmlns:h2="http://schemas.microsoft.com/mapi/id/{00062008-0000-0000-C000-0000


    Doorsturen  
Je moet je aanmelden voordat je berichten kunt plaatsen.
Als je een bericht wilt verzenden, moet je eerst deelnemen aan deze discussiegroep.
Werk je bijnaam bij op de pagina met abonnementsinstellingen voordat je een bericht plaatst.
Je hebt geen toestemming om berichten te plaatsen.
Nishant  
Profiel weergeven   Naar het vertalen Vertaald (origineel weergeven)
 Meer opties 17 sep 2003, 01:24
Nieuwsgroepen: microsoft.public.exchange2000.development
Van: "Nishant" <nishantj1...@yahoo.com>
Datum: Tue, 16 Sep 2003 16:23:45 -0700
Lokaal: wo 17 sep 2003 01:23
Onderwerp: WebDAV & Tasks: A Solution
I am still not able to get the Task from exchange working
with webdav. Can anybody give some more clue regarding
this?

>-----Original Message-----
>Over the past couple days I have been trying, like a lot
of people here, to
>add tasks to the Exchange Store using WebDAV.  Well this
morning I think I
>may have figured it out.

>1)  Problem 1:  Using code found in this newsgroup I was
successfull in
>adding a task to exchange but could not get the Due Date,
Start Date, etc to
>show up - even using property IDs found at CDOLive.

>    Resolution:  After ripping into Outlook using

OutlookSpy I discovered
>that the property IDs (and schema GUID) listed on CDOLive
were incorrect -
>at least for Outlook XP.  Interestingly enough, Outlook
XP still includes
>values at the properties listed on CDOLive - probably for
backwards
>compatability.  The following is an updated list of

properties with their

12T13:30:00.00Z</h2:0x8517>
><h1:0x8105 b:dt="dateTime.tz">2003-09-

12T13:30:00.00Z</h1:0x8105>
><h2:0x8516 b:dt="dateTime.tz">2003-09-

11T18:45:00.00Z</h2:0x8516>
><h1:0x8104 b:dt="dateTime.tz">2003-09-

11T18:45:00.00Z</h1:0x8104>
><h2:0x8503 b:dt="boolean">1</h2:0x8503>
><h2:0x8560 b:dt="dateTime.tz">2003-09-

12T12:50:00.00Z</h2:0x8560>
><h2:0x8502 b:dt="dateTime.tz">2003-09-

12T12:50:00.00Z</h2:0x8502>


    Doorsturen  
Je moet je aanmelden voordat je berichten kunt plaatsen.
Als je een bericht wilt verzenden, moet je eerst deelnemen aan deze discussiegroep.
Werk je bijnaam bij op de pagina met abonnementsinstellingen voordat je een bericht plaatst.
Je hebt geen toestemming om berichten te plaatsen.
Siegfried Weber [MVP]  
Profiel weergeven   Naar het vertalen Vertaald (origineel weergeven)
 Meer opties 9 okt 2003, 14:20
Nieuwsgroepen: microsoft.public.exchange2000.development
Van: "Siegfried Weber [MVP]" <siegfrie...@notmail.com>
Datum: Thu, 9 Oct 2003 13:05:21 +0200
Lokaal: do 9 okt 2003 13:05
Onderwerp: Re: WebDAV & Tasks: A Solution
"Matt Choudoir" <mchoud...@startech-comp.com> wrote in message:

http://schemas.microsoft.com/mapi/id/{00062003-0000-0000-C000-000000000046}/

> 0x8105    Due Date
> 0x8104    Start Date

I don't see any difference on http://www.cdolive.com/cdo10.htm except that
the page lists the property set ID's for CDO 1.21 and not for MAPI/ADO/CDOEX
(but that's a known issue and the mentioned MSKB article shows the
resolution for it).


http://schemas.microsoft.com/mapi/id/{00062008-0000-0000-C000-000000000046}/

> 0x8517    Due Date
> 0x8516    Start Date
> 0x8503    Reminder Enabled    (boolean)

Those are also listed on the above mentioned page correctly.

> 0x8560    Reminder Date

This is actually the reminder next time property (not listed on the above
mentioned page)

> 0x8502    Reminder Date    (Not sure why there are two properties...)

And this is the real reminder date (listed on the page mentioned above.

> 0x811C    Task Completed    (boolean)

Also listed on the page mentioned above.

Also don't forget to set the Task status (0x8101) to complete, the date
completed (0x810F), the percent complete (0x8102). There's probably more but
that's what worked for me...

--
Cheers,

Siegfried Weber


    Doorsturen  
Je moet je aanmelden voordat je berichten kunt plaatsen.
Als je een bericht wilt verzenden, moet je eerst deelnemen aan deze discussiegroep.
Werk je bijnaam bij op de pagina met abonnementsinstellingen voordat je een bericht plaatst.
Je hebt geen toestemming om berichten te plaatsen.
Einde van berichten
« Terug naar Discussies « Nieuwer onderwerp     Ouder onderwerp »

Discussiegroep maken - Google Discussiegroepen - Google Startpagina - Servicevoorwaarden - Privacybeleid
©2010 Google