Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Hide TRA FD

...

  1. Take a copy of the client-truststore.jks file from the wso2-obbi-1.3.0/resources/security directory.
  2. Export the public key from your .jks file using the following command.

    Code Block
    keytool -export -alias certalias -keystore newkeystore.jks -file <public key name>.pem
  3. Import the public key you extracted in the previous step to the client-truststore.jks file using the following command.

    Code Block
    keytool -import -alias certalias -file <public key name>.pem -keystore client-truststore.jks -storepass wso2carbon

    Note that wso2carbon is the keystore password of the default client-truststore.jks file.

    Now, you have an SSL certificate stored in a Java keystore and a public key added to the client-truststore.jks file. Note that both these files should be in the wso2-obbi-1.3.0/resources/security directory. You can now replace the default wso2carbon.jks keystore in your product with the newly created keystore by updating the relevant configuration files in your product.

Multiexcerpt
hiddentrue
MultiExcerptNameTRA&FD

Enabling Transaction Risk Analysis (TRA) and Fraud Detection

  1. Open the wso2-obkm-1.3.0/repository/conf/finance/open-banking.xml file and wso2-obam-1.3.0/repository/conf/finance/open-banking.xml file to enable Transaction Risk Analysis (TRA):

Code Block
<TRA>
   <IsEnabled>true</IsEnabled>
</TRA>
  1. Open the wso2-obkm-1.3.0/repository/conf/finance/open-banking.xml file and wso2-obam-1.3.0/repository/conf/finance/open-banking.xml file to enable fraud detection:

...

...

<FraudDetection>
   <IsEnabled>true</IsEnabled>
</FraudDetection>
  1. Open the wso2-obbi-1.3.0/resources/finance/scripts/startup.properties file and enable fraud detection dashboards:

...

Enabling performance tuning and starting the servers

...