WebService Create New Task/Bug
Hi!
Where can I find the Webservice for tracking new Tasks(Bugs)?
I tried WorkItemTracking/v1.0/ClientService.asmx, but I could't find a method for new tasks?
Or have I write my own webservice?
Regards
Simon
Hi!
Where can I find the Webservice for tracking new Tasks(Bugs)?
I tried WorkItemTracking/v1.0/ClientService.asmx, but I could't find a method for new tasks?
Or have I write my own webservice?
Regards
Simon
Hi Simon, using the webservices directly is neither supported nor recommended by Microsoft, they recommend (and me also) use the object model instead.
You have a complete OM to work with work items, you can create and update every work item in your projects, and if you want to track new work items or changes to existing ones I would recommend you to use the eventing service avaliable in Team Foundation Server, which will allow you to create your own tracking web service, and subscribe it to the event of WorkItemChangedEvent, which is raised everytime you create or update a workitem, whrn this event is fired and if you have create the subscription it will call your own web service and send him the information about the update.
You can find more info about this and articles in MSDN, this forums, and also on the Visual Studio 2005 SDK, where you can find samples on that.
I hope this helps you.