PEGA 8.4.1
I have installed
PEGA 8.4.1 DB with SQLSeverWeb 2016.I am able to create prweb.war and PEGA.RULE.TABLES&PEGA.DATA.TABLES.Also,I have configured the tomcat 9 (context.xml).while starting the server I am getting below errors.
Problem during method invocation (contextInitialized)
java.lang.UnsatisfiedLinkError: Could not load library. Reasons: [no jansi in java.library.path, The system cannot find the path specified].
context.xml
I have installed
PEGA 8.4.1 DB with SQLSeverWeb 2016.I am able to create prweb.war and PEGA.RULE.TABLES&PEGA.DATA.TABLES.Also,I have configured the tomcat 9 (context.xml).while starting the server I am getting below errors.
Problem during method invocation (contextInitialized)
java.lang.UnsatisfiedLinkError: Could not load library. Reasons: [no jansi in java.library.path, The system cannot find the path specified].
context.xml
<Resource name="jdbc/PegaRULES"
auth="Container"
type="javax.sql.DataSource"
driverClassName="com.microsoft.sqlserver.jdbc.SQLServerDriver"
url="jdbc:sqlserver://localhost:1433;databaseName=PEGA_RULES_DATA_DB;SelectMethod=cursor;"
username="pegausr"
password ="Hcl1234"
maxActive="100"
minIdle="30"
maxWait="10000"
/>
<Resource name="jdbc/PRFileStore"
auth="Container"
type="javax.sql.DataSource"
driverClassName="com.microsoft.sqlserver.jdbc.SQLServerDriver"
url="jdbc:sqlserver://localhost:1433;databaseName=PEGA_RULES_DATA_DB;SelectMethod=cursor;"
username="pegausr"
password ="Hcl1234"
maxActive="100"
minIdle="30"
maxWait="10000"
/>
<Environment name="prconfig/database/databases/PegaDATA/dataSourceAdmin" value ="java:comp/env/jdbc/DATA_SCHEMA" type ="java.lang.String"/>
<Environment name="prconfig/database/databases/PegaRULES/dataSourceAdmin" value ="java:comp/env/jdbc/RULES_SCHEMA" type ="java.lang.String"/>
<Environment name="prconfig/database/databases/PegaRULES/defaultSchema" value ="RULES_SCHEMA" type ="java.lang.String"/>
<Environment name="prconfig/database/databases/PegaDATA/defaultSchema" value ="DATA_SCHEMA" type ="java.lang.String"/>
<Environment name="url/initialization/explicittempdir" value ="C:/Windows/Temp" type ="java.lang.String"/>