Hi,
I have created proxy in asp.net and calling it from java. thanks for your support. Now, I want to query workitem history to get all change events. For an example. If I change assignee of the bug , as it shows in history column of Studio 2010, I want to query history , which should result xyz workitem has changed from old value to new value. I have tried to query WorkItems as following :
String queryWorkItemByDate = "SELECT * FROM WorkItems WHERE [System.TeamProject] = '" + projectName + "' and [System.WorkItemType] = 'Bug' and [System.ChangedDate] >= '6/22/2010 6:00:00 PM'";
But, this query gives current state of work item not history. How can I query WorkItem History using object model ?
Regards.
Riddhi Shah