ECMA2 Framework
Home
  • Home
  • Using the Framework
    • Getting started
    • Definining the schema
    • Definining capabilites
    • Defining configuration parameters
    • Using the ProducerConsumerImportProvider
    • Building single-file assemblies
  • Additional resources
    • Example projects
      • Lithnet Okta Management Agent
      • Simple example
    • Troubleshooting
    • Change log
  • Advanced
    • API Reference
      • CapabilitiesConfigurationAttribute
      • CheckboxParameterAttribute
      • ConnectivityConfigurationAttribute
      • DataParameterAttribute
      • DividerParameterAttribute
      • DropdownParameterAttribute
      • Ecma2FrameworkOptions
      • EncryptedStringParameterAttribute
      • ExportContext
      • FileParameterAttribute
      • GlobalConfigurationAttribute
      • ICapabilitiesProvider
      • IConfigParameters
      • IConfigParametersProvider
      • IContextInitializer
      • ICSEntryChangeCollection
      • IEcmaStartup
      • ImportContext
      • IObjectExportProvider
      • IObjectImportProvider
      • IObjectPasswordProvider
      • ISchemaProvider
      • LabelParameterAttribute
      • MultilineTextboxParameterAttribute
      • ParameterAttribute
      • PartitionConfigurationAttribute
      • PasswordContext
      • ProducerConsumerImportProvider<TObject>
      • RunStepConfigurationAttribute
      • SchemaConfigurationAttribute
      • StringParameterAttribute
      • UIParameterAttribute
Powered by GitBook
On this page
  • Features
  • Examples
  • Getting started

Home

NextGetting started

Last updated 1 year ago

The Lithnet ECMA2 framework is a .NET library that provides a simplified interface for creating ECMA2 connectors for the Microsoft Identity Manager (MIM) synchronization engine.

It has native support for async operations, and provides a simplified interface for common operations such as creating and updating objects, and handling multivalued attributes.

The framework is available as a .

Features

  • Full async support

  • Support for dependency injection

  • Support for IOptions<T> pattern for configuration with validation

  • Strongly typed MIM configuration

  • Implements the producer/consumer pattern for high performance imports

  • Removes the need to manage paging of import results back to MIM

  • Exports are multithreaded by default

  • Manages object import/export exceptions automatically and reports them back to MIM

  • No need to implement IMAExtensible* interfaces. The framework contains a code generator that will create these for you

  • Support for single-file assemblies

Examples

Getting started

You can see a full working example by referencing the project, which is based on this framework.

For a smaller, simple starting point program, you can refer to the project in the GitHub repository.

Get started reading our .

NuGet package
Lithnet.Okta.ManagementAgent
Lithnet.Ecma2Framework.Example
guide