Is it possibly to access the folders and items of other Exchange accounts other than the one of the logged in user?

Can I do this via Exchange Web Services Managed API?

link|improve this question

77% accept rate
contos? Did you mean accounts? – w69rdy Sep 24 '10 at 12:55
Are you using EWS directly or are you using it through EWS Managed API? – Alfred Myers Sep 24 '10 at 16:22
@w69rdy:yes i meant accounts. – Luke Sep 27 '10 at 8:00
@Alfred Myers I use EWS Managed API – Luke Sep 27 '10 at 8:01
feedback

1 Answer

up vote 7 down vote accepted
+50

Yes it is possible, but you should know the password of the other user or grab in some ways this credentials (NetworkCredential object). The typical first lines of you code could be

ExchangeService myService = new ExchangeService (ExchangeVersion.Exchange2007_SP1);
myService.Credentials = new NetworkCredential ("user@mycorp.local", "P@ssword00");

so you can access Exchange Server Web Services with the account which is other as the current user. See ExchangeService object description for more information.

If you are an admin you can make user impersonation by SMTP address.

link|improve this answer
@Alfred Myers & @user457261: You don't wrote any comment. Is the information which I wrote what you are need? – Oleg Oct 3 '10 at 22:40
Thanks for your answer, but i was looking for a way without having to know every password. Like using a superuser who can access all accounts. – Luke Oct 8 '10 at 11:53
2  
@Luke: The last sentences from my answer describe how to do this. As a "superadmin" you can impersonate any user by SMTP address only without having any information about his password. Look at msdn.microsoft.com/en-us/library/dd633680(EXCHG.80).aspx one more time. – Oleg Oct 8 '10 at 18:54
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.