We are trying to get Integration with Dynamic CRM 2011 to Team Foundation 2012 via Web services. We need to integrate only case entity. We following below script to get communication but not get success, please review below script for reference.
CRMWebService.incident myIncident;
myIncident = (CRMWebService.incident)(principalResponse.BusinessEntityCollection.BusinessEntities[0]));
return myIncident;
public CRMWebService.incident GetIncident(int workItemID){}
When we tried above we got an a error as given below.
Error 1 The type or namespace name 'incident' does not exist in the namespace 'CRMWebService' (are you missing an assembly reference?) D:\_PROJECTS\TFS_TO_CRM\TFSAutomation\WorkItemsWebService\App_Code\Service.cs 71 23 D:\...\WorkItemsWebService\
Please suggest us solution on the same.