Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

To make sure Make a few changes to configuration so that your new SHRINE instance can communicate with the i2b2 instance, there are a couple of places that we will address. First, you will need to make sure the PM , and CRC cell urls are correctly defined within the shrine.conf file. These urls are what SHRINE uses to communicate with the i2b2 backend. In the shrine.conf template we assume you have just one i2b2 instance that performs all three roles. 

  • In the shrine {} section set the i2b2BaseUrl to the top-level Url for your i2b2 wildfly server. This value will be substituted as needed in shrine.conf. 
Code Block
languagebash
themerdark
shrine {
  i2b2BaseUrl = "http://i2b2.example.com:9090" //The local i2b2's URL as observed from this tomcat server
  ...
}


If your i2b2 server uses publicly verifiable certificates enable SHRINE to use TLS server verification when communicating with their local i2b2 server with these settings in shrine.conf

Code Block
languagejs
themeRDark
shrine.pmEndpoint.tls.trustManager = "VerifyServerCerts"
shrine.adapter.crcEndpoint.tls.trustManager = "VerifyServerCerts"


Next Next, you will need to add the SHRINE project into the pm_project_data table within the i2b2 database:

...