Discussion on:

Message 80 of 503
0 Votes
+ -
Let's see how it looks
I am not a coder. I am not a coder. I am not a coder. But I know how to copy and paste, and use the "samp" tag. namespace Microsoft.Crm.Sdk.Utility
{
public class CrmServiceUtility
{
public static CrmService GetCrmService()
{
return GetCrmService(null, null);
}

public static CrmService GetCrmService(string organizationName)
{
return GetCrmService(null, organizationName);
}

///
/// Set up the CRM Service.
///
/// My Organization
/// CrmService configured with AD Authentication
public static CrmService GetCrmService(string crmServerUrl, string organizationName)
{
Updated - 24th Jan 2011