Passing Credentials Via Assembly Bindings - Enterprise Integration Server - English - Foundation 22.1 - OnBase - Premier - external - Standard - Premier - Standard - OnBase/Enterprise-Integration-Server/English/Foundation-22.1/Enterprise-Integration-Server/EIS-Live-Data-Services/Overview/Creating-and-Configuring-an-Activity-Library-for-External-AutoFill-Keyword-Sets-and-Keyword-Data-Sets/Passing-Credentials-Via-Assembly-Bindings - 2022-08-18

Enterprise Integration Server

Platform
OnBase
Product
Enterprise Integration Server
Release
Foundation 22.1
License
Premier
Standard

It is possible to pass authentication credentials to your project application by adding the required credentials to the <DLL Name>.dll.config file for your current version of Microsoft.NET. This can be particularly useful when configuring non-BizTalk Server projects for use with EIS.

Note:

This feature is only supported for use with the Hyland Adapter and the Lawson Adapter.

To pass authentication credentials to your project application, follow these steps:

  1. Open the <DLL Name>.dll.config file located in your project folder.
  2. Under the <endpointBehaviors> node, add the following text:
    <behavior name="CustomBehaviorName">
        <hylandcustomAuthentication UserName="UserName" UserPassword="Password" />
    </behavior>
    Note:

    Replace CustomBehaviorName with the desired name of your custom behavior, and UserName and Password with the credentials you want to pass to the project application.

  3. In the <endpoint address> node, set the behaviorConfiguration element equal to the name of the behavior you specified in step 2.
  4. Save and close the web.config file.