HI,
I am trying to do CRUD operations in MS Dynamics 365 Online Free trail using Organization service. I'm trying to connect to the CRM using CrmServiceClient, but i can't .i am getting an error here it is .
"Unable to automatically step into the server, connecting to the server machine failed. The visual studio 2015 remote debugger(MSVSMON.EXE) does not appear to be running on the remote computer .This may be firewall is preventing communication to the remote computer.please see help for configuring remote debugging".
i tried to generate early bound classes using crmsvcutil, there also getting error like Unable to log into CRM. I am beginner in coding , please help me friends.
var connectionString = "AuthType=Office365;Username=****@**.onmicrosoft.com; Password=******;Url=https://*****.crm.dynamics.com";
var crmSvc = new CrmServiceClient(connectionString);
using (var serviceProxy = crmSvc.OrganizationServiceProxy)
{
var accountToCreate = new Entity("account");
accountToCreate["name"] = "Cle";
//create an account
var accountGuid = serviceProxy.Create(accountToCreate);
*This post is locked for comments