Ureader.com  
Microsoft software help and Community
   home   |   control panel login   |   archive   |  
 
Exchange
2000.active.directory
2000.admin
2000.announcements
2000.app.conversion
2000.applications
2000.clients
2000.clustering
2000.connectivity
2000.development
2000.documentation
2000.general
2000.information.store
2000.interop
2000.kms
2000.misc
2000.protocols
2000.realtime.collabo.
2000.setup
2000.transport
2000.win2000
admin
application.conversion
applications
clients
clustering
connectivity
design
development
misc
mobility
setup
tools
  
 
date: Tue, 27 Dec 2005 10:47:34 -0800,    group: microsoft.public.exchange2000.development        back       


WebDAV - where is meeting uid in response message frm meeting atte   
I am creating a meeting request according to Microsoft's documentation:

create appointment 
get meeting uid
create meeting using meeting uid

But, I do not see the value of the uid that is created in either the 
appointment, meeting request, or meeting response XML that is returned upon a 
query.

I am looking for a way to determine, among the list of message responses in 
a mailbox, which message responses are for which meetings.  What identifiers 
can I use to correlate appointments, meetings and meeting requests?

Thanks!

-- Liz
date: Tue, 27 Dec 2005 10:47:34 -0800   author:   liz-kma

Re: WebDAV - where is meeting uid in response message frm meeting atte   
You might want to try using the MAPI named property 
http://schemas.microsoft.com/mapi/id/{6ED8DA90-450B-101B-98DA-00AA003F1305}/0x23 
this should exist on both the appointment and the responses. Its a binary 
property so you need to convert it to hex if you want to use it any queries.

Cheers
Glen

"liz-kma"  wrote in message 
news:0D8D6575-13FB-4D4A-9113-81EBF4BEE4B5@microsoft.com...
>I am creating a meeting request according to Microsoft's documentation:
>
> create appointment
> get meeting uid
> create meeting using meeting uid
>
> But, I do not see the value of the uid that is created in either the
> appointment, meeting request, or meeting response XML that is returned 
> upon a
> query.
>
> I am looking for a way to determine, among the list of message responses 
> in
> a mailbox, which message responses are for which meetings.  What 
> identifiers
> can I use to correlate appointments, meetings and meeting requests?
>
> Thanks!
>
> -- Liz
date: Wed, 28 Dec 2005 12:24:10 +1100   author:   Glen Scales [MVP]

Re: WebDAV - where is meeting uid in response message frm meeting   
Hi Glen,

Thanks for the info!

So, to confirm, I can submit a query like:

<?xml version='1.0'?>
<a:propfind xmlns:a='DAV:'>
<a:prop 
xmlns:b='http://schemas.microsoft.com/mapi/id/{6ED8DA90-450B-101B-98DA-00AA003F1305}/'>
<b:0x23/>
</a:prop>
</a:propfind>

I am returned the xml:

<?xml version=\"1.0\"?>
<a:multistatus xmlns:b=\"urn:uuid:c2f41010-65b3-11d1-a29f-00aa00c14882/\" 
xmlns:c=\"xml:\" 
xmlns:d=\"http://schemas.microsoft.com/mapi/id/{6ED8DA90-450B-101B-98DA-00AA003F1305}/\" xmlns:a=\"DAV:\">
<a:response>
<a:href>http://mail.kmainc.com/exchange/kmatest2/Inbox/Accepted:%20Presentation%20with%20Michael%20Andrews.EML</a:href>
<a:propstat>
<a:status>HTTP/1.1 200 OK</a:status>
<a:prop>
<d:0x23 
b:dt=\"bin.base64\">BAAAAIIA4AB0xbcQGoLgCAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAHZDYWwtVWlkAQAAAENEMDAwMDAwOEI5NTExRDE4MkQ4MDBDMDRGQjE2MjVEREQzNzkyMTI3NjNFOTE0NTlBQjE5MDQ1Mzg1N0I2RTgA</d:0x23>
</a:prop>
</a:propstat>
</a:response>
</a:multistatus>

and the mapi id that would be shared between the appointment and meeting 
responses is:

base 64
BAAAAIIA4AB0xbcQGoLgCAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAHZDYWwtVWlkAQAAAENEMDAwMDAwOEI5NTExRDE4MkQ4MDBDMDRGQjE2MjVEREQzNzkyMTI3NjNFOTE0NTlBQjE5MDQ1Mzg1N0I2RTgA

Thanks,
Liz


"Glen Scales [MVP]" wrote:

> You might want to try using the MAPI named property 
> http://schemas.microsoft.com/mapi/id/{6ED8DA90-450B-101B-98DA-00AA003F1305}/0x23 
> this should exist on both the appointment and the responses. Its a binary 
> property so you need to convert it to hex if you want to use it any queries.
> 
> Cheers
> Glen
> 
> "liz-kma"  wrote in message 
> news:0D8D6575-13FB-4D4A-9113-81EBF4BEE4B5@microsoft.com...
> >I am creating a meeting request according to Microsoft's documentation:
> >
> > create appointment
> > get meeting uid
> > create meeting using meeting uid
> >
> > But, I do not see the value of the uid that is created in either the
> > appointment, meeting request, or meeting response XML that is returned 
> > upon a
> > query.
> >
> > I am looking for a way to determine, among the list of message responses 
> > in
> > a mailbox, which message responses are for which meetings.  What 
> > identifiers
> > can I use to correlate appointments, meetings and meeting requests?
> >
> > Thanks!
> >
> > -- Liz 
> 
> 
>
date: Wed, 28 Dec 2005 07:33:02 -0800   author:   liz-kma

Re: WebDAV - where is meeting uid in response message frm meeting   
yep looks good to me

Cheers
Glen

"liz-kma"  wrote in message 
news:8B89DA10-C942-4E07-A0CC-6DAF28C2F887@microsoft.com...
> Hi Glen,
>
> Thanks for the info!
>
> So, to confirm, I can submit a query like:
>
> <?xml version='1.0'?>
> <a:propfind xmlns:a='DAV:'>
> <a:prop
> xmlns:b='http://schemas.microsoft.com/mapi/id/{6ED8DA90-450B-101B-98DA-00AA003F1305}/'>
> <b:0x23/>
> </a:prop>
> </a:propfind>
>
> I am returned the xml:
>
> <?xml version=\"1.0\"?>
> <a:multistatus xmlns:b=\"urn:uuid:c2f41010-65b3-11d1-a29f-00aa00c14882/\"
> xmlns:c=\"xml:\"
> xmlns:d=\"http://schemas.microsoft.com/mapi/id/{6ED8DA90-450B-101B-98DA-00AA003F1305}/\" 
> xmlns:a=\"DAV:\">
> <a:response>
> <a:href>http://mail.kmainc.com/exchange/kmatest2/Inbox/Accepted:%20Presentation%20with%20Michael%20Andrews.EML</a:href>
> <a:propstat>
> <a:status>HTTP/1.1 200 OK</a:status>
> <a:prop>
> <d:0x23
> b:dt=\"bin.base64\">BAAAAIIA4AB0xbcQGoLgCAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAHZDYWwtVWlkAQAAAENEMDAwMDAwOEI5NTExRDE4MkQ4MDBDMDRGQjE2MjVEREQzNzkyMTI3NjNFOTE0NTlBQjE5MDQ1Mzg1N0I2RTgA</d:0x23>
> </a:prop>
> </a:propstat>
> </a:response>
> </a:multistatus>
>
> and the mapi id that would be shared between the appointment and meeting
> responses is:
>
> base 64
> BAAAAIIA4AB0xbcQGoLgCAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAHZDYWwtVWlkAQAAAENEMDAwMDAwOEI5NTExRDE4MkQ4MDBDMDRGQjE2MjVEREQzNzkyMTI3NjNFOTE0NTlBQjE5MDQ1Mzg1N0I2RTgA
>
> Thanks,
> Liz
>
>
> "Glen Scales [MVP]" wrote:
>
>> You might want to try using the MAPI named property
>> http://schemas.microsoft.com/mapi/id/{6ED8DA90-450B-101B-98DA-00AA003F1305}/0x23
>> this should exist on both the appointment and the responses. Its a binary
>> property so you need to convert it to hex if you want to use it any 
>> queries.
>>
>> Cheers
>> Glen
>>
>> "liz-kma"  wrote in message
>> news:0D8D6575-13FB-4D4A-9113-81EBF4BEE4B5@microsoft.com...
>> >I am creating a meeting request according to Microsoft's documentation:
>> >
>> > create appointment
>> > get meeting uid
>> > create meeting using meeting uid
>> >
>> > But, I do not see the value of the uid that is created in either the
>> > appointment, meeting request, or meeting response XML that is returned
>> > upon a
>> > query.
>> >
>> > I am looking for a way to determine, among the list of message 
>> > responses
>> > in
>> > a mailbox, which message responses are for which meetings.  What
>> > identifiers
>> > can I use to correlate appointments, meetings and meeting requests?
>> >
>> > Thanks!
>> >
>> > -- Liz
>>
>>
>>
date: Thu, 29 Dec 2005 14:27:21 +1100   author:   Glen Scales [MVP]

Google
 
Web ureader.com


    COPYRIGHT 2007, YARDI TECHNOLOGY LIMITED, ALL RIGHT RESERVE  |   contact us