2

ユーザーのOutlook連絡先を更新するためにユーザーの償還を試みています。私が影響を与えているユーザーはexchangeUserに渡され、「ターゲットユーザー」と呼ばれます。このコードは、自分でログインして実行すると機能します。

public OutlookFolders(string outlookRootFolder, string exchangeUser, string mailServer)
{
    var session = new RDOSessionClass();
    session.LogonExchangeMailbox(exchangeUser, mailServer);
    session.Stores.FindExchangePublicFoldersStore();
    var store = session.GetSharedMailbox(exchangeUser);
    //...
}

私ではなく、「ターゲットユーザー」ではない3番目のユーザー「テストユーザー」としてログインしようとしました。私のプログラムは、FindExchangePublicFoldersStoreに到達すると、実行時にパスワードプロンプトを表示します。資格情報を入力しないと、次のエラーで失敗します。

System.Runtime.InteropServices.COMException (0x8004011D): Error in 
    IMAPISession.OpenMsgStore(pbExchangeProviderPrimaryUserGuid):
    MAPI_E_FAILONEPROVIDER
ulVersion: 0
Error: Microsoft Exchange is not available.  Either there are network
    problems or the Exchange computer is down for maintenance.
Component: Microsoft Exchange Information Store
ulLowLevelError: 2147746069
ulContext: 1318

「ターゲットユーザー」のメールボックスと連絡先フォルダで「テストユーザー」の所有者権限を付与してみました。違いはないようです。これを機能させるには、他にどのような権限を設定する必要がありますか?

4

2 に答える 2

3

経験則では、問題のメールボックスにアクセスできるユーザーとしてコードを実行し、現在のユーザーに対して LogonExchangeMailbox を呼び出し、GetSharedMailbox を使用して他のユーザーのメールボックスを開きます。

于 2010-07-01T16:26:22.653 に答える
2

これがドミトリーの答えのコードです。また、ミラノのブログの機能も使用しています。

        public OutlookFolders(string exchangeUser, string mailServer)
        {
            var session = new RDOSessionClass();
            var userFullName = GetFullName("DOMAIN-NT\\" + Environment.UserName);
            session.LogonExchangeMailbox(userFullName, mailServer);
            session.Stores.FindExchangePublicFoldersStore();
            var store = session.GetSharedMailbox(exchangeUser);
            rootFolder = store.GetDefaultFolder((rdoDefaultFolders)OlDefaultFolders.olFolderContacts);
        }

        public static string GetFullName(string strLogin)
        {
            string str = "";
            string strDomain;
            string strName;

            // Parse the string to check if domain name is present.
            int idx = strLogin.IndexOf('\\');
            if (idx == -1)
            {
                idx = strLogin.IndexOf('@');
            }

            if (idx != -1)
            {
                strDomain = strLogin.Substring(0, idx);
                strName = strLogin.Substring(idx + 1);
            }
            else
            {
                strDomain = Environment.MachineName;
                strName = strLogin;
            }

            DirectoryEntry obDirEntry = null;
            try
            {
                obDirEntry = new DirectoryEntry("WinNT://" + strDomain + "/" + strName);
                PropertyCollection coll = obDirEntry.Properties;
                object obVal = coll["FullName"].Value;
                str = obVal.ToString();
            }
            catch (System.Exception ex)
            {
                str = ex.Message;
            }
            return str;
        }
于 2010-07-02T14:01:06.320 に答える