我正在尝试订阅 CheckinEvent,由于某种原因,我的 Notify 方法没有被调用。这是我的合同——
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.ServiceModel;
using System.ServiceModel.Web;
using System.Text;
namespace TFSubscriber
{
[ServiceContract(Namespace = "http://schemas.microsoft.com/TeamFoundation/2005/06/Services/Notification/03")]
public interface IRollupService
{
[OperationContract(Action = "http://schemas.microsoft.com/TeamFoundation/2005/06/Services/Notification/03/Notify")]
[XmlSerializerFormat(Style = OperationFormatStyle.Document)]
void Notify(string eventXml, string tfsIdentityXml);
}
}
我的实现非常简单,空的方法。我在我的 Notify 方法中放置了一个断点,它没有被调用。
这就是我订阅 CheckinEvent 的方式 -
C:\Program Files\Microsoft Team Foundation Server2010\Tools>bissubscribe.exe /eventType CheckInEvent /address http://localhost:4556/Rollupservice.svc /collection http://localhost:8080/tfs/defaultcollection
我已经将一个解决方案添加到源代码管理中,并且我正在检查一些文件并且断点没有被命中。我究竟做错了什么?