6

これを Exchange 開発フォーラムに投稿しようとしましたが、返信がなかったので、ここで試してみます。フォーラムへのリンク

作成または更新する必要があるサブスクリプションがあるかどうかを確認するために、15 分ごとに起動する Windows サービスがあります。Exchange 2007 SP1 に対してマネージ API v1.1 を使用しています。メールボックスを監視したいすべてのユーザーを格納するテーブルがあります。「Listening Service」に通知が届いたときに、ユーザーを検索してメッセージにアクセスし、作成中のアプリケーションにログインできるようにします。テーブルには、サブスクリプション情報を格納する次の列があります。

  1. サブスクリプション ID - VARCHAR(MAX)
  2. ウォーターマーク - VARCHAR(MAX)
  3. LastStatusUpdate - DATETIME

私のサービスは、必要なデータを照会する関数を呼び出します (実行している関数に基づいて)。ユーザーがまだサブスクリプションを持っていない場合、サービスが移動してサブスクリプションを作成します。偽装を使用してメールボックスにアクセスしています。これは、ユーザーがサブスクリプションを作成または更新する必要があるときに起動される「ActiveSubscription」メソッドです。

private void ActivateSubscription(User user)
{
  if (user.ADGUID.HasValue)
  {
    PrincipalContext ctx = new PrincipalContext(ContextType.Domain, Settings.ActiveDirectoryServerName, Settings.ActiveDirectoryRootContainer);

    using (UserPrincipal up = UserPrincipal.FindByIdentity(ctx, IdentityType.Guid, user.ADGUID.Value.ToString()))
    {
      ewService.ImpersonatedUserId = new ImpersonatedUserId(ConnectingIdType.SID, up.Sid.Value);
    }
  }
  else
  {
    ewService.ImpersonatedUserId = new ImpersonatedUserId(ConnectingIdType.SmtpAddress, user.EmailAddress);
  }

  PushSubscription pushSubscription = ewService.SubscribeToPushNotifications(
    new FolderId[] { WellKnownFolderName.Inbox, WellKnownFolderName.SentItems },
    Settings.ListenerService, 30, user.Watermark,
    EventType.NewMail, EventType.Created);

  user.Watermark = pushSubscription.Watermark;
  user.SubscriptionID = pushSubscription.Id;
  user.SubscriptionStatusDateTime = DateTime.Now.ToLocalTime();

  _users.Update(user);
}

また、次のコマンドレットを実行して、EWS にアクセスしているユーザーに Exchange Server で偽装できるようにしました。

Get-ExchangeServer | where {$_.IsClientAccessServer -eq $TRUE} | ForEach-Object {Add-ADPermission -Identity $_.distinguishedname -User (Get-User -Identity mailmonitor | select-object).identity -extendedRight ms-Exch-EPI-Impersonation}

上記の「ActivateSubscription」コードは期待どおりに機能します。とか、そう思いました。テストしていたとき、メールボックスを監視していて、うまく機能しました。私が回避しなければならなかった唯一の問題は、アイテムが受信トレイ内の新しいメールであるときにサブスクリプションが 2 回発生し、NewMail イベントと Created イベントの通知を受け取ったことです。メッセージが Listening サービスにまだ記録されていないことを確認する回避策を実装しました。それはすべてうまくいきました。

本日、2 つのメールボックスを同時に監視するテストを開始しました。2 つのメールボックスは私のもので、別の開発者のメールボックスです。私たちは最も奇妙な振る舞いを見つけました。サブスクリプションは期待どおりに機能しました。サブスクリプションの受信部分は正常に機能しますが、リスニング サービスから送信された電子メールには通知が送信されませんでした。Exchange のメールボックスのプロパティを見ると、彼のメールボックスと私のメールボックスに違いは見られません。Outlook のオプション/設定も比較しました。彼のメールボックスではなく、私のメールボックスで機能する理由がわかりません。

サブスクリプションを作成するときに欠けているものはありますか? サブスクリプションが期待どおりに機能するため、あるとは思いませんでした。

私のリスニング サービスのコードは問題なく動作します。問題がないことを確認するために誰かがそれを見たい場合に備えて、以下のコードを配置しました。

前もってありがとう、テリー

リスニング サービス コード:

/// <summary>
/// Summary description for PushNotificationClient
/// </summary>
[WebService(Namespace = "http://tempuri.org/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
[System.ComponentModel.ToolboxItem(false)]
// To allow this Web Service to be called from script, using ASP.NET AJAX, uncomment the following line. 
// [System.Web.Script.Services.ScriptService]
public class PushNotificationClient : System.Web.Services.WebService, INotificationServiceBinding
{
  ExchangeService ewService = new ExchangeService(ExchangeVersion.Exchange2007_SP1);

  public PushNotificationClient()
  {
    //todo: init the service.
    SetupExchangeWebService();
  }

  private void SetupExchangeWebService()
  {
    ewService.Credentials = Settings.ServiceCreds;
    try
    {
      ewService.AutodiscoverUrl(Settings.AutoDiscoverThisEmailAddress);
    }
    catch (AutodiscoverRemoteException e)
    {
      //log auto discovery failed
      ewService.Url = Settings.ExchangeService;
    }
  }

  public SendNotificationResultType SendNotification(SendNotificationResponseType SendNotification1)
  {
    using (var _users = new ExchangeUser(Settings.SqlConnectionString))
    {
      var result = new SendNotificationResultType();

      var responseMessages = SendNotification1.ResponseMessages.Items;
      foreach (var responseMessage in responseMessages)
      {
        if (responseMessage.ResponseCode != ResponseCodeType.NoError)
        {
          //log error and unsubscribe.
          result.SubscriptionStatus = SubscriptionStatusType.Unsubscribe;
          return result;
        }

        var sendNoficationResponse = responseMessage as SendNotificationResponseMessageType;
        if (sendNoficationResponse == null)
        {
          result.SubscriptionStatus = SubscriptionStatusType.Unsubscribe;
          return result;
        }

        var notificationType = sendNoficationResponse.Notification;
        var subscriptionId = notificationType.SubscriptionId;
        var previousWatermark = notificationType.PreviousWatermark;

        User user = _users.GetById(subscriptionId);
        if (user != null)
        {
          if (user.MonitorEmailYN == true)
          {
            BaseNotificationEventType[] baseNotifications = notificationType.Items;

            for (int i = 0; i < notificationType.Items.Length; i++)
            {
              if (baseNotifications[i] is BaseObjectChangedEventType)
              {
                var bocet = baseNotifications[i] as BaseObjectChangedEventType;
                AccessCreateDeleteNewMailEvent(bocet, ref user);
              }
            }

            _PreviousItemId = null;
          }
          else
          {
            user.SubscriptionID = String.Empty;
            user.SubscriptionStatusDateTime = null;
            user.Watermark = String.Empty;
            _users.Update(user);

            result.SubscriptionStatus = SubscriptionStatusType.Unsubscribe;
            return result;
          }

          user.SubscriptionStatusDateTime = DateTime.Now.ToLocalTime();
          _users.Update(user);
        }
        else
        {
          result.SubscriptionStatus = SubscriptionStatusType.Unsubscribe;
          return result;
        }
      }

      result.SubscriptionStatus = SubscriptionStatusType.OK;
      return result;
    }
  }

  private string _PreviousItemId;
  private void AccessCreateDeleteNewMailEvent(BaseObjectChangedEventType bocet, ref User user)
  {
    var watermark = bocet.Watermark;
    var timestamp = bocet.TimeStamp.ToLocalTime();
    var parentFolderId = bocet.ParentFolderId;

    if (bocet.Item is ItemIdType)
    {
      var itemId = bocet.Item as ItemIdType;
      if (itemId != null)
      {
        if (string.IsNullOrEmpty(_PreviousItemId) || (!string.IsNullOrEmpty(_PreviousItemId) && _PreviousItemId != itemId.Id))
        {
          ProcessItem(itemId, ref user);
          _PreviousItemId = itemId.Id;
        }
      }
    }

    user.SubscriptionStatusDateTime = timestamp;
    user.Watermark = watermark;
    using (var _users = new ExchangeUser(Settings.SqlConnectionString))
    {
      _users.Update(user);
    }

  }

  private void ProcessItem(ItemIdType itemId, ref User user)
  {
    try
    {
      ewService.ImpersonatedUserId = new ImpersonatedUserId(ConnectingIdType.SmtpAddress, user.EmailAddress);
      EmailMessage email = EmailMessage.Bind(ewService, itemId.Id);
      using (var _entity = new SalesAssistantEntityDataContext(Settings.SqlConnectionString))
      {
        var direction = EmailDirection.Incoming;
        if (email.From.Address == user.EmailAddress)
        {
          direction = EmailDirection.Outgoing;
        }


        int? bodyType = (int)email.Body.BodyType;

        var _HtmlToRtf = new HtmlToRtf();
        var message = _HtmlToRtf.ConvertHtmlToText(email.Body.Text);

        bool? IsIncoming = Convert.ToBoolean((int)direction);

        if (IsIncoming.HasValue && IsIncoming.Value == false)
        {
          foreach (var emailTo in email.ToRecipients)
          {
            _entity.InsertMailMessage(email.From.Address, emailTo.Address, email.Subject, message, bodyType, IsIncoming);
          }
        }
        else
        {
          if (email.ReceivedBy != null)
          {
            _entity.InsertMailMessage(email.From.Address, email.ReceivedBy.Address, email.Subject, message, bodyType, IsIncoming);
          }
          else
          {
            var emailToFind = user.EmailAddress;
            if (email.ToRecipients.Any(x => x.Address == emailToFind))
            {
              _entity.InsertMailMessage(email.From.Address, emailToFind, email.Subject, message, bodyType, IsIncoming);
            }
          }
        }
      }
    }
    catch(Exception e)
    {
      //Log exception 
      using (var errorHandler = new ErrorHandler(Settings.SqlConnectionString))
      {
        errorHandler.LogException(e, user.UserID, user.SubscriptionID, user.Watermark, user.SubscriptionStatusDateTime);
      }
      throw e;
    }
  }

}
4

1 に答える 1

2

2つの答えがあります。最初に、ユーザーごとに ExchangeService のインスタンスを 1 つ作成する必要があります。私があなたのコードを理解しているように、インスタンスを1つ作成して偽装を切り替えるだけですが、これはサポートされていません。私はあなたのものにかなり似ているwindowsserviceを開発しました。私は、CRM と Exchange の間でメールを同期しています。そのため、起動時にユーザーごとにインスタンスを作成し、アプリケーションが実行されている限りそれをキャッシュします。

次にキャッシュモードについて。cache-mode を使用する場合と使用しない場合の違いは、単なるタイミングのずれです。キャッシュ モードでは、Outlook は時々同期します。そして、キャッシュされていないので、間に合います。キャッシュ モードを使用していて、Exchange サーバーでイベントをすぐに取得したい場合は、Outlook の [送受信] ボタンを押して同期を強制することができます。

それがあなたを助けることを願っています...

于 2013-03-28T14:50:10.047 に答える