1

I was wondering if someone can tell me if there is any changes in how events are sent and received in tfs 2012. I searched the website and it looks like it's pretty much the same except another UI is added in 2012. Is there any other interior changes? Thanks for the help!

rene
  • 41,474
  • 78
  • 114
  • 152

1 Answers1

1

Mostly the same, new UI, that's the right description. Even on the server side things have remained mostly the same, but some types have moved from one assembly to the other, so there are some implementation changes that are otherwise invisible to a normal user.

jessehouwing
  • 106,458
  • 22
  • 256
  • 341
  • So is it safe to assume that the way i'm handling tfs events right now(i have a wcf service listen to events -> send to tibco queue to log) will need no changes should we switch to tfs 2012? I'm asking especially in terms of the code needed to complete this. Thanks for the answer! – Some_random_coder Jan 29 '14 at 14:13
  • That still works, though the SOAP webservice is "the old way". In 2010 the ISubscriber interface was introduced to allow you to execute these things in process http://msdn.microsoft.com/en-us/library/microsoft.teamfoundation.framework.server.isubscriber.aspx – jessehouwing Jan 29 '14 at 14:27
  • Thanks for the answer. Do you happen to have an example of isubscriber in action? All i found was this: http://exsertus.files.wordpress.com/2013/09/blog-1.png. – Some_random_coder Jan 29 '14 at 18:03
  • And most importantly, does Isubscriber method work in tfs 2012? – Some_random_coder Jan 29 '14 at 19:15
  • Isubscriber works on TFS 2010 all the way up to 2013. The TFS Aggregator project dives deeply into it: http://tfsaggregator.codeplex.com – jessehouwing Jan 29 '14 at 21:49