Has anyone used delegates with exchnage web services? I would like one user to be able to control other users' calendars in Exchange. I'm finding this problem to be a little tricky, and I'd like to see how others have been able to get it to work properly.
相关问题
- Pass code to a method as an argument
- How to fix unresolved types when importing Exchang
- Get the result of Func<object> when object i
- Get to an Exchange folder by path using EWS
- execute method when iPhone enters landscape mode
相关文章
- exchange web service error - the remote server ret
- com.sun.mail.smtp.SMTPSenderFailedException: 550 5
- Find all subfolders of the Inbox folder using EWS
- Implicit method group conversion gotcha
-
Compare Delegates Action
- How do I declare a Func Delegate which returns a F
- Delegate: Method name expected error
- swift change theme using delegate and protocol on
I'm just getting started here, but i managed to get access to Resource calendars via a delegate account.
I used the recommendations from this article about delegate account and resource accounts. (Resource accounts are tricky because they are disabled in the AD, and you have to use a delegate account to get access to them)
After setting up the delegate account on the server, I set up the ExchangeServerBinding using the credentials of the delegate account:
(I'm using Microsofts prepared virtual server image for testing)
Then when accessing the mailbox, I set up a FindItemType request and use the smtp address of the account i want to access:
So in short:
Regards Jesper Hauge