Menu Close

Blog

Slide 1

Microsoft Business Applications Blogposts, YouTube Videos and Podcasts

Helping Businesses with Technology

Slide 2

Microsoft Business Applications Blogposts, YouTube Videos and Podcasts

Helping Businesses with Technology

Slide 3

Microsoft Business Applications Blogposts, YouTube Videos and Podcasts

Helping Businesses with Technology

previous arrow
next arrow

DYNAMICS 365 DEVELOPER TOOLKIT FOR VISUAL STUDIO 2013

Requirements

1)Visual studio 2013

2) Dynamics 365 SDK

3) Microsoft Dynamics 365 developer toolkit download

https://visualstudiogallery.msdn.microsoft.com/65199277-820a-4315-8783-82da19bd04d8/viewReviews/Reviews

4) Dynamics 365 instance.

To install the developer toolkit, download the developer toolkit for visual studio 2013 and open the visual studio select the new project and select the dynamics 365  then plugin library.

After following the steps on the plugin registration tool, it prompts for visual studio > tools > options> dynamics developer toolkit > then map the plugin registration tool and bin directory from the dynamics 365 sdk.

That’s it you are good to go…

Share this:

Dynamics 365

Dynamics 365

Intelligence business applications in the cloud

> SALES > CUSTOMER SERVICE > OPERATIONS > MARKETING >FIELD SERVICE > PROJECT SERVICE AUTOMATION

OFFICE 365 | AZURE IOT |POWER BI | CORTANA INTELLIGENCE


Digital Transformation


>Engage your customers

> Empower your employees

> Transform your products


> Optimize your operations

Share this:

ODATA RESOURCES PATH EXAMPLES

OData Resource Path Examples

Resource                                                       URL
Service                                  OrganizationData.svc

Entity Set                              OrgainzationData.svc/ContactSet

Entity                                    OrgainzationData.svc/ContactSet(“guid”)

Relationship                          OrgainzationData.svc/ContactSet (“guid”)/Contact_Appointments                                                              

Property                                OrgainzationData.svc/ContactSet(“guid”)/FirstName
                                             

Mulitple Properties               OrgainzationData.svc/ContactSet(“guid Key”)?$Select =                                                                 FirstName, Address1_City                                           

Share this:

HANDLING EXCEPTIONS IN MICROSOFT DYNAMICS CRM PLUG-INS

Handling faults

Required reference in your code

 Use Microsoft.Xrm.Sdk.OrganizationServiceFault
  catch(FaultException<Microsoft.Xrm.Sdk.OrganizationServiceFault> ex)

other Common exceptions and faults to handle

System.TimeoutException

 catch(System.TimeoutException ex)

System.Exception

 catch(System.Exception ex)

Other exceptions and faults to handle

 -securityTokenValidationException
 -ExpiredSecurityTokenException
 -SecurityAccessDeniedException
 -MessageSecurityException
 -SecurityNegotiationException
Microsoft Dynamics CRM Online
  SecurityAccessDeniedException : Using a valid Microsoft Account, but it is not associated with a CRM Online Organization.
MessageSecutiyException: Your Microsoft Account is not valid or did not authenticate.

Share this: