Pete SheillDeveloper on the CLR teamReceiving Team Foundation Events - Correction- July 15, 2005 The documentation for Visual Studio beta 2 gives the following example for receiving TFS events (work item change, checkin, build completed, etc.).SoapDocumentMethod(Action = "http:Microsoft.VisualStudio.BisNotify") WebMethod public void Notify(string bisEvent) ... In fact it should be: SoapDocumentMethod(Action = "http:Microsoft.VisualStudio.BisNotify", RequestNamespace = "http:Microsoft.VisualStudio.Bis") WebMethod public void Notify(string eventXml) ... Note that the parameter...http://blogs.msdn.com/psheill/archive/2005/07/15/439321.aspx |