Inforiver
On-Prem Inforiver Writeback Matrix
On-Prem Inforiver Writeback Matrix
  • 👋Inforiver Writeback Matrix On-Prem
  • Before You Start
    • đŸĒ„Basic Requirements
    • đŸĨŒEntra ID App
    • 📧SMTP Service
    • đŸ•šī¸Inforiver Credentials
    • đŸ“ŗVirtual Network (Optional)
  • Deployment
    • Microsoft Azure
      • Basics
      • Networking
      • SQL Database
      • Inforiver Workspace
      • SMTP
      • Final Deployment
    • Custom Visual Generation
    • Azure AD App Post Configuration
  • Architecture Concepts
    • Overview
    • O365 Permissions
    • External Connections
    • Azure Cost
  • Upgrade
    • Overview
    • Integrate Infobridge with Inforiver (for 2.x users)
    • Integrate EDITable with Inforiver (for 2.x users)
    • Update Inforiver Container Instances (for 3.x users)
    • Update EDITable Container Instance (for 3.x users)
    • Update Inforiver EDITable Container Instances (for 3.x users)
    • Update Inforiver EDITable Container Instances (for 4.x users)
  • How To Guides
    • Overview
    • Register Inforiver App with Certificate
    • Key Vault Integration
    • Custom Domain and SSL
    • Application Gateway Integration
    • Private App Service
    • Diagnostic Settings
    • Configuring Office 365 SMTP
    • Scaling Up Azure Database
    • Creation and Deletion of Database
    • Enabling App Service Logs
    • Scaling Up the App Service Plan
    • Scaling Redis Cache
    • Update Inforiver License
    • Update Azure AD Client & Other Environment Variables
  • Troubleshooting Steps
    • Overview
    • Fix for SQL Bulk Load issue
Powered by GitBook
On this page
  • Creating a Certificate
  • Registering an application
  • Environment variables settings
  1. How To Guides

Register Inforiver App with Certificate

PreviousOverviewNextKey Vault Integration

Last updated 9 days ago

Registering your application is essential for establishing a trust relationship between your application and the Microsoft identity platform. This guide instructs you to register your Inforiver application with a self-signed certificate.

Creating a Certificate

To create a self-signed public certificate, please follow the official documentation

Registering an application

The first step in registering an application with the self-signed certificate is to register a new application in your Azure AD.

  1. Log in to your Azure Portal.

  2. Click on Manage Azure Active Directory from the menu tab.

  3. Click App registrations in the left sub-menu.

  4. Click the New registration tab in the top menu bar as shown in the screenshot below.

  1. Enter an application name to be displayed to the users.

  2. In the section 'Who can use this application', select Accounts in this organizational directory only.

  3. You can skip the 'Redirect URI' section for now. We can provide this after getting the URL of the application.

  4. Click Register to register the application.

  1. Finally, upload your self-signed certificate to the certificate section, as described in the steps below.

  • Select Certificates & secrets > Certificates > Upload certificate.

  • Select the file you want to upload. It must be one of the following file types: .cer, .pem, or .crt.

  1. Select Add.

Environment variables settings

To make changes to your environment, go to your app service's Environment variables section.

  1. In the Environment variables section, add the following envs:

  • O365_APP_CERTIFICATE_CREDENTIALS

  • O365_APP_PRIVATE_KEY

  • O365_APP_CERTIFICATE_THUMBPRINT

  1. On O365_APP_CERTIFICATE_CREDENTIALS, the value should be the self-signed certificate body. The values should be given as shown below.

  1. The value for O365_APP_PRIVATE_KEY should be the self-signed certificate's private key. The values should be given as shown below.

  1. The value for O365_APP_CERTIFICATE_THUMBPRINT should be the thumbprint value of the self-signed certificate. This can be obtained from the Azure AD application - Certificate section.

Once all three environment variables have been added, save the settings, and the app service will restart to reflect the changes.

By following the above steps, you can run the Inforiver application registered with the certificate.

References:

Register app:

Create self-signed certificate:

https://learn.microsoft.com/en-us/entra/identity-platform/quickstart-register-app
https://learn.microsoft.com/en-us/entra/identity-platform/howto-create-self-signed-certificate
here.