Share via


Example: CLM Enroll Request

The following examples show how to provision a CLM Enroll request. The first example demonstrates how to do this with the use of CLMUtils.CreateEnrollRequest. The second shows a more manual approach.

CLMUtils.CreateEnrollRequest

    Sub Provision(ByVal mventry As MVEntry)
        Implements IMVSynchronization.Provision
    
        Try
            If CLMMA.Connectors.Count = 0 And
                mventry("objectGUID").IsPresent Then
                CLMUtils.CreateEnrollRequest(CLMMA,
                  New Guid(mventry("objectGUID").BinaryValue),
                  "CLM Sample Profile Template")
            End If
        
        ' Log and rethrow any exception
        Catch ex As Exception
            Logging.Logging.LogException(ex,
                "Provision",
                "Caught exception",
                False)
            Throw
        End Try
    
    End Sub 'IMVSynchronization.Provision
    void IMVSynchronization.Provision (MVEntry mventry)
    {
        try
        {
            if (CLMMA.Connectors.Count == 0 &&
                mventry["objectGUID"].IsPresent)
            {
                CLMUtils.CreateEnrollRequest(CLMMA,
                    new Guid(mventry["objectGUID"].BinaryValue),
                    "CLM Sample Profile Template");
            }
        }
    
        // Log and rethrow any exception
        catch(Exception ex)
        {
            Logging.Logging.LogException(ex,
                "Provision",
                "Caught exception",
                false);
            throw;
        }
    }

Provision Enroll Request

    Sub Provision(ByVal mventry As MVEntry)
        Implements IMVSynchronization.Provision
    
        Try
            If CLMMA.Connectors.Count = 0 And
                mventry("objectGUID").IsPresent Then
    
                Dim targetCLMMA As ConnectedMA =
                    mventry.ConnectedMAs("CertificateLifecycleManagerMA")
                Dim csentry As CSEntry =
                    targetCLMMA.Connectors.StartNewConnector("clmRequest")
                
                csentry.DN = targetCLMMA.EscapeDNComponent("CN=" +
                    Guid.NewGuid().ToString())
                
                csentry("req_type").IntegerValue = 1
                csentry("req_type_name").Value = "Enroll"
                csentry("req_target_user_uuid").BinaryValue =
                    mventry("objectGUID").BinaryValue
                csentry("req_profile_template_name").Value =
                    "Smart Card User Template"
                csentry("req_profile_template_uuid").BinaryValue =
                    New Guid().ToByteArray()
                ' Guid of profile template you can get from
                ' CLMUtils.GetProfileUuidFromProfileTemplateName
                ' or manually 
                csentry.CommitNewConnector()
            End If
        
        ' Log and rethrow any exception
        Catch ex As Exception
            Logging.Logging.LogException(ex,
                "Provision",
                "Caught exception",
                False)
            Throw
        End Try
    
    End Sub 'IMVSynchronization.Provision
    void IMVSynchronization.Provision(MVEntry mventry)
    {
        try
        {
            if (CLMMA.Connectors.Count == 0 &&
                mventry["objectGUID"].IsPresent)
            {
                ConnectedMA targetCLMMA = mventry.ConnectedMAs[
                    "CertificateLifecycleManagerMA"];
                CSEntry csentry =
                    targetCLMMA.Connectors.StartNewConnector("clmRequest");
    
                csentry.DN = targetCLMMA.EscapeDNComponent("CN=" +
                    Guid.NewGuid().ToString());
    
                csentry["req_type"].IntegerValue = 1;
                csentry["req_type_name"].Value = "Enroll";
                csentry["req_target_user_uuid"].BinaryValue =
                    mventry["objectGUID"].BinaryValue;
                csentry["req_profile_template_name"].Value =
                    "Smart Card User Template";
                csentry["req_profile_template_uuid"].BinaryValue =
                    new Guid(/*Guid of profile template you can get from
                        CLMUtils.GetProfileUuidFromProfileTemplateName
                        or manually */).ToByteArray();
                csentry.CommitNewConnector();
            }
        }
    
        // Log and rethrow any exception
        catch (Exception ex)
        {
            Logging.Logging.LogException(ex,
                "Provision",
                "Caught exception",
                false);
            throw;
        }
    }

Send comments about this topic to Microsoft

Build date: 2/16/2009