//Uri of Organization ServiceUri clientUri = new Uri("http://crm/My/XRMServices/2011/Organization.svc");//Credentials to connectClientCredentials clientCredentials = new ClientCredentials();clientCredentials = new ClientCredentials();clientCredentials.UserName.UserName = "My\\olavoneto";clientCredentials.UserName.Password = "P@ssw0rd";//Identifier of incident to retrieveGuid incidentId = new Guid("FE69CAF4-1693-E211-B951-00155D01C805");//Connect to Serviceusing (OrganizationServiceProxy serviceP
↧