Updated "Unit testing Dynamics CRM C# interfaces code using NUnit and Moq" code sample

Back in January, after I published my How to unit test C# Dynamics CRM interface code - part III post on how to use NUnit and Moq to test Dynamics CRM interfacing code, I uploaded my project files to the MSDN code gallery. Earlier this week I revisited my original »

Documenting a Dynamics CRM custom workflow activity with Doxygen

In this post I will show how to document a Dynamics CRM 2011 custom workflow activity assembly and use Doxygen to generate a compiled HTML (CHM) help file. (Doxygen can actually generate documentation in a variety of different formats, but I'm partial to CHM files because they're entirely self-contained.) For »

Posting/processing JSON in a Dynamics CRM 2011 custom workflow activity

With the proliferation of RESTful APIs, JSON is frequently used as a message format for interoperability. My MSDN "Posting/processing JSON in a CRM 2011 custom workflow activity" code sample shows how to POST JSON messages to a REST endpoint and process the response in a Dynamics CRM »

Sending SMS messages and making robocalls from Dynamics CRM

In this post I will show how to send SMS messages and make automated phone calls from Dynamics CRM using Tropo, a cloud voice and SMS messaging API. Tropo is not the only player in this space, but I think it has the best set of features, and it's completely »

Displaying Dynamics CRM FetchXML results in ASPX with XSLT

Last week I wrote a post that showed how to retrive the raw SOAP response from a Dynamics CRM query in C#, but I didn't show how to do anything useful with it. In today's post I will show a practical example of how to execute a FetchXML request against »