To install the API Server:
- Launch the OnBase API Server Setup installer by executing Hyland.ApiServer.Setup.exe. This executable is available from your service provider.
-
The Hyland
API Server Setup dialog is displayed.
Click Install to launch the installation wizard.
-
The Hyland API Server Setup welcome window is displayed.
-
Click Next. The IIS Settings window is displayed.
-
Select a Web Site to install the API Server to from the drop-down list. The Web Site list is populated with the web servers configured in IIS and available to the target machine.
Enter a name for the API Server in the Application Name field.
Enter a name for the application pool that will be created that you want to run the API Server in the Application Pool field.
-
Click Next. The IIS Settings window is displayed.
-
If you want to specify the credentials of the application pool running the API Server in IIS, select the Specify IIS Application Pool Credentials option.
Enter the user name and password of the user whose credentials you want to use for the application pool.
Note:If your solution requires the Temp File Service and you are using a UNC storage system, the user whose credentials you use for the application pool must have rights to the UNC shares. For more information see Supported Storage Systems.
-
Click Next. The Destination Folder window is displayed.
-
Enter the top-level installation directory in the field provided, or click Change to browse to it.
If Change is clicked, the Change destination folder window is displayed.
Enter a folder name in the Folder name field or select it from the Look in drop-down list, then click OK.
If the destination folder is not changed, the default location is used.
-
Click Next. The Ready to install window is displayed.
- Click Install to install the API Server. Click Back if you want to return to the previous window. Click Cancel if you want to exit the wizard without installing the API Server.
- When the installer finishes installing the API Server, click Finish. Click Close to close the dialog.
-
In Windows, launch the Internet Information Services (IIS) Manager as an administrator.
Note:
IIS is a Microsoft product. For more detailed instructions on using and configuring IIS settings, see the Microsoft documentation.
-
In the tree view, expand the site under which you installed the API Server application, locate the API Server application itself and open the Modules configuration.
Tip:
Changing any of these settings in IIS Manager on the installed application will make non-permanent changes to the web.config file of the API Server. If the API Server is modified or upgraded using the installer, any changes made will be removed. If it is possible, it is recommended to make these changes at the site level so that any application of that site will inherit the configurations.
-
Ensure the following items are present in the list of modules:
-
AnonymousAuthenticationModule
-
AspNetCoreModule
-
HttpCacheModule
-
UriCacheModule
If any of these modules are not present, click Configure Native Modules...
In the Configure Native Modules dialog, locate the missing module or modules, select them, and then click OK.
-
- Browse to the config directory in your API Server's installation directory. In a default installation, this directory is located at C:\Program Files\Hyland\ApiServer\config.
-
Open the 5_scim.json file of the API Server in a plain-text editor.
Note:
In Windows, the JSON file must be opened as an administrator.
-
Locate the JwtIssuerOptions block and update the values of the following settings to match your environment.
Setting
Value
Authority
The URL of the Hyland IdP server. For example, https://my.server.net/identityprovider, where my.server.net is replaced with your host domain.
Tip:Make sure the use of HTTP or HTTPS matches the configuration of your domain in IIS.
Audience
The URL of the resources directory on the Hyland IdP server. For example, https://my.server.net/identityprovider/resources, where my.server.net is replaced with your host domain.
Tip:Make sure the use of HTTP or HTTPS matches the configuration of your domain in IIS.
- Save and close the 5_scim.json file.
-
Open the 1_server.json file in a text editor.
Note:
In Windows, the JSON file must be opened as an administrator.
- Locate the Authentication block. In the Address setting, enter the URL of your Hyland IdP server.
- Locate the Tenant block. Uncomment the contents of the configuration block by deleting the /* at the start of the block and the */ at the end of the block.
-
Update the values of the following settings to match your environment.
Setting
Value
DataSource
The name of the data source of your OnBase database.
DataProvider
The database provider type. Set the value to SQL for SQL or ORACLE for Oracle.
ConnectionString
A valid connection string to the OnBase database for the database provider type (SQL or Oracle). The connection string must include Data Source, database, User Id, and Password information.
Tip:ADO connections strings are a method of connecting applications to databases. Complete details on connection strings and how to create them are available from Microsoft.
Note:Make sure you include the double-slash (\\) between the server and the database instance to account for JSON formatting. For example, Data Source=MyDB\\SQLInstance;
- Save and close the file and recycle your application pool for the changes to take effect.