Hi ,
I am try to Connect CRM Organisation Service to Create Some Record in Entity by using WebApi .
I am getting Exception on Following lines of Code during runtime :
exception {"Metadata contains a reference that cannot be resolved: 'hrrevdev.crm.dynamics.com/.../Organization.svc'."} System.Exception {System.InvalidOperationException}
Below Snippet of Code :
// Cast the proxy client to the IOrganizationService interface.
using (OrganizationServiceProxy organizationServiceProxy = new OrganizationServiceProxy(uri, null, credentials, null))
{ organizationService = (IOrganizationService)organizationServiceProxy; }
*This post is locked for comments