Configuration Database Information - Intergraph Smart 3D Web API - Installation & Upgrade - Hexagon

Intergraph Smart 3D and Smart 3D Admin Web API Installation and Configuration

Language
English
Product
Intergraph Smart 3D Web API
Subproduct
Smart 3D Web APIs
Search by Category
Installation & Upgrade
Smart 3D Version
13.1

The API configuration is stored in a MS-SQL or ORACLE database. The database information depends on whether you are using Integrated Windows Authentication (IWA). For example:

  • Using IWA:

    Server=DatabaseServer,Database=WebApiDb,

    UseIntergratedWindowsAuthentication=True,ProviderUser=,Password=

    Server=(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=SERVERNAME)(PORT=1521)))(CONNECT_DATA=(SERVICE_NAME=SERVICENAME))),

    Database=WebApiDb, UseIntergratedWindowsAuthentication=True,ProviderUser=,Password=

  • Not using IWA:

    Server=DatabaseServer,Database=WebApiDb,

    UseIntergratedWindowsAuthentication=False,

    ProviderUser=user,Password=*****

Where:

  • DatabaseProvider - Database provider information. The API accepts MSSQL or Oracle as a valid input. For example:

    "DatabaseProvider": "MSSQL"

  • DbConnectionString - The API configuration database connection string. The format is not standard SQL/ORACLE connection string format.

    • Server - Database server name (instance name for MSSQL or full datasource string for Oracle)

    • Database - Database to write API configuration to.

    • UseIntergratedWindowsAuthentication - Set it to TRUE if user currently logged in has write access to the database.

    • ProviderUser - If the above value is set to false, provide user information for writing the configuration to the database.

    • Password - User password.