Resource Mailbox Auto Accept using webdav
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
Resource Mailbox Auto Accept using webdav

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





Posted: Thu Dec 08, 2005 12:38 am    Post subject: Resource Mailbox Auto Accept using webdav Reply with quote

Hi All,

I notice Outlook has a feature to AutoAccept meetings for resources ... not
sure why it only works if the Resource Calendar is open in outlook....but
thats what I'm seeing. So what I'm looking for is a way to force an accept of
a meeting thru Webdav.... has anyone done this ? Would like to know how and
is some sample code was available that would be great.

Ed

Back to top
Edbrown
Guest





Posted: Thu Dec 08, 2005 1:59 am    Post subject: Re: Resource Mailbox Auto Accept using webdav Reply with quote

Hi Glen,

Thanks for the response.....Again.......you have helped us so much in the
past. We are however, stuck with WebDav since we have no access to the
actual Exchange server. Since I have created and submitted the appointments
in Webdav already using the published Microsoft example, it shouldn't be too
much harder to accept the appointment then publish to the resource calendar.
The question what actual properties need to be set on this appointment in
order for it to be an accepted appointment before publishing to the resources
calendar. Any ideas ?

Thanks again,

Ed

"Glen Scales [MVP]" wrote:

Quote:
Oultook has a feature called Direct Booking which is what i think your
referring to have a look at
http://www.slipstick.com/calendar/skedresource.htm for more information.
With this feature an invite is never actually sent to the resource mailbox
outlook actually connects to that mailbox and creates the appointment.

You could code the same type of feature using WebDAV but you might be better
of just using one of the autoaccept event sinks either the Microsoft one
http://www.microsoft.com/downloads/details.aspx?FamilyID=3D0884E6-C603-491D-BF57-ACF03E046BFE&displaylang=en
or the open source one on sourceforge.
http://autoaccept-sink.sourceforge.net/

Cheers
Glen

"Edbrown" <Edbrown@discussions.microsoft.com> wrote in message
news:86EC49AA-0395-4143-B46C-3D112F387159@microsoft.com...
Hi All,

I notice Outlook has a feature to AutoAccept meetings for resources ...
not
sure why it only works if the Resource Calendar is open in outlook....but
thats what I'm seeing. So what I'm looking for is a way to force an accept
of
a meeting thru Webdav.... has anyone done this ? Would like to know how
and
is some sample code was available that would be great.

Ed


Back to top
Glen Scales [MVP]
Guest





Posted: Thu Dec 08, 2005 1:59 am    Post subject: Re: Resource Mailbox Auto Accept using webdav Reply with quote

There are few ways you could go about tackling this one way would be to
actually send that appointment invitation to the resource mailbox and then
use some code to connect to the resource mailbox and use the OWA accept
function which will process the appointment properly and send the response.
eg something like ive posted here
http://gsexdev.blogspot.com/2004/09/processing-meeting-requests-remotely.html
Doing it manually could work as well by just creating a copy of the
appointment in that mailbox it would be a little harder and actually getting
the attendee status to work properly might take a bit of time and
experimentation. Some (not a complete list) of the properties you would need
to set

urn:schemas:calendar:uid
urn:schemas:calendar:meetingstatus

<mapi:apptstateflags dt:dt=""int"">3</mapi:apptstateflags> (this will set
the meeting status to 3)

and there are a bunch of named properties
http://schemas.microsoft.com/mapi/id/{00062002-0000-0000-C000-000000000046}/0x8218
(set this to 3 to indicate an accept)
http://schemas.microsoft.com/mapi/id/{00062002-0000-0000-C000-000000000046}/0x8205
http://schemas.microsoft.com/mapi/id/{00062002-0000-0000-C000-000000000046}/0x8220

have a look at
http://groups.google.com/group/microsoft.public.win32.programmer.messaging/browse_frm/thread/d3df2646c8f922aa/d2efbf2ea19112c3?lnk=st&q=0x8218&rnum=2#d2efbf2ea19112c3
for a discussion on these

Cheers
Glen


"Edbrown" <Edbrown@discussions.microsoft.com> wrote in message
news:F0D2D69E-E06A-4739-8C76-BE8479B8423A@microsoft.com...
Quote:
Hi Glen,

Thanks for the response.....Again.......you have helped us so much in the
past. We are however, stuck with WebDav since we have no access to the
actual Exchange server. Since I have created and submitted the
appointments
in Webdav already using the published Microsoft example, it shouldn't be
too
much harder to accept the appointment then publish to the resource
calendar.
The question what actual properties need to be set on this appointment in
order for it to be an accepted appointment before publishing to the
resources
calendar. Any ideas ?

Thanks again,

Ed

"Glen Scales [MVP]" wrote:

Oultook has a feature called Direct Booking which is what i think your
referring to have a look at
http://www.slipstick.com/calendar/skedresource.htm for more information.
With this feature an invite is never actually sent to the resource
mailbox
outlook actually connects to that mailbox and creates the appointment.

You could code the same type of feature using WebDAV but you might be
better
of just using one of the autoaccept event sinks either the Microsoft one
http://www.microsoft.com/downloads/details.aspx?FamilyID=3D0884E6-C603-491D-BF57-ACF03E046BFE&displaylang=en
or the open source one on sourceforge.
http://autoaccept-sink.sourceforge.net/

Cheers
Glen

"Edbrown" <Edbrown@discussions.microsoft.com> wrote in message
news:86EC49AA-0395-4143-B46C-3D112F387159@microsoft.com...
Hi All,

I notice Outlook has a feature to AutoAccept meetings for resources ...
not
sure why it only works if the Resource Calendar is open in
outlook....but
thats what I'm seeing. So what I'm looking for is a way to force an
accept
of
a meeting thru Webdav.... has anyone done this ? Would like to know
how
and
is some sample code was available that would be great.

Ed




Back to top
Glen Scales [MVP]
Guest





Posted: Thu Dec 08, 2005 1:59 am    Post subject: Re: Resource Mailbox Auto Accept using webdav Reply with quote

Oultook has a feature called Direct Booking which is what i think your
referring to have a look at
http://www.slipstick.com/calendar/skedresource.htm for more information.
With this feature an invite is never actually sent to the resource mailbox
outlook actually connects to that mailbox and creates the appointment.

You could code the same type of feature using WebDAV but you might be better
of just using one of the autoaccept event sinks either the Microsoft one
http://www.microsoft.com/downloads/details.aspx?FamilyID=3D0884E6-C603-491D-BF57-ACF03E046BFE&displaylang=en
or the open source one on sourceforge.
http://autoaccept-sink.sourceforge.net/

Cheers
Glen

"Edbrown" <Edbrown@discussions.microsoft.com> wrote in message
news:86EC49AA-0395-4143-B46C-3D112F387159@microsoft.com...
Quote:
Hi All,

I notice Outlook has a feature to AutoAccept meetings for resources ...
not
sure why it only works if the Resource Calendar is open in outlook....but
thats what I'm seeing. So what I'm looking for is a way to force an accept
of
a meeting thru Webdav.... has anyone done this ? Would like to know how
and
is some sample code was available that would be great.

Ed
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