5 Configuration for Attachments in OBAPI Mailbox or Interaction Module
By default the mailbox attachment will be integrated to OIPM. If the Bank wants to change this then below are the configuration steps.
- If bank want to use local database to save uploaded document i.e. other than OIPM
then below script need to be executed on OBAPI Admin schema. This
will point content service to the local data base for mailbox
attachment
specifically.
UPDATE DIGX_FW_CONFIG_ALL_B SET PROP_VALUE='com.ofss.digx.domain.content.entity.repository.adapter.LocalContentRepositoryAdapter' WHEREPROP_ID = 'IM_CONTENT_REPOSITORY_ADAPTER'
- If bank want to use OIPM server to manage uploaded document then below script need
to be executed on OBAPI Admin schema. This will point content
service to the OIPM server for mailbox attachment
specifically.
UPDATE DIGX_FW_CONFIG_ALL_B SET PROP_VALUE='com.ofss.digx.domain.content.entity.repository.adapter.RemoteContentRepositoryAdapter' WHEREPROP_ID = 'IM_CONTENT_REPOSITORY_ADAPTER'