Receiving Team Foundation events - one more correction
If you've written any web services that listen for Team Foundation events for any previous beta releases, you'll want to update your web method for RC. We made one (hopefully last) change to the Action and RequestNamespace. The "02" became an "03". If you don't change this, you will not get notified and you will see an error about an "unrecognized Soap Action". Here is one valid way to write the webmethod:
[SoapDocumentMethod(Action = "http://schemas.microsoft.com/TeamFoundation/2005/06/Services/Notification/03/Notify",
RequestNamespace="http://schemas.microsoft.com/TeamFoundation/2005/06/Services/Notification/03"
)]
[WebMethod]
public void Notify(string eventXml)
{
...
}