stopped-extension-dll-no-implement ation in forefront identity manager 2010
Hi, I have created one extension rule in .net it builds successfully but when we copy and paste the .dll file in this C:\Program Files\Microsoft Forefront Identity Manager\2010\Synchronization Service\Extensions. first we run HRMA full import this gives 1 record added second we run full sync of HRMA this giving some status:stopped-extension-dll-no-implementation and does not add any record in metaverse. Public Sub MapAttributesForExport(ByVal FlowRuleName As String, ByVal mventry As MVEntry, ByVal csentry As CSEntry) Implements IMASynchronization.MapAttributesForExport Select Case FlowRuleName Case "ExportFirstName" If mventry("firstName").Value = "Lovely" Then csentry( "mDBUseDefaults").Value = "Sunita" End If ' TODO: remove the following statement and add your scripted export attribute flow here 'Throw New EntryPointNotImplementedException() 'Case Else ' TODO: remove the following statement and add your default script here 'Throw New EntryPointNotImplementedException() End Select End Sub ' TODO: Add export attribute flow code here Regards Anil Kumar
June 8th, 2012 7:44am

If this is after an import, can I assume that you are projecting new identities into the metaverse and have import attribute flow rules defined in the MA? The code snipped you provided is for export rules, not import. Check the code in MapAttributesForImport(), and double-check that the DLLs referenced in the MA and the metaverse provisioning (if applicable) match the names of the compiled DLLs. If you don't see the problem, please post the full event log error message or the detailed view of the error message from within the FIM interface. Chris
Free Windows Admin Tool Kit Click here and download it now
June 8th, 2012 9:26am

You might also check that all the required interface methods are implemented. Verify each of these are included in your code. -Deprovision -FilterForDisconnection -Initialize -MapAttributesForExport -MapAttributesForImport -MapAttributesForJoin -ResolveJoinSearch -ShouldProjectToMV -Terminate Even if they're not used, the IMASynchronization Interface requires these be present. In VS you can right-click and Interface and choose the 'implement' option to have these stubbed out for you, or just create a new VS solution from the Sync Service manager. Frank C. Drewes III - Architect - Oxford Computer Group
June 10th, 2012 1:37am

This topic is archived. No further replies will be accepted.

Other recent topics Other recent topics