https://github.com/CONNECT-Solution/CONNECT
You can Download CONNECT as a pre-compiled binary. Please note that each CONNECT release has its own version of the Admin GUI, which has only been tested for compatibility with those specific CONNECT versions. These CONNECT and Admin GUI files are clearly grouped together on our download page.
Depending on which release you wish to build, you can get installation instructions from the following wiki page - /wiki/spaces/CONNECTWIKI/pages/117529193. Software requirements and deployment instructions for each application server, binary or source code installation instructions are available through the installation instructions of each release's link.
An in-depth summary can be found here for details on building a customized CONNECT EAR. In short, the EAR is sectioned into various Maven profiles which will add the chosen services into the compiled EAR. They are as follows:
CONNECT is not currently designed for Carequality exchange although ongoing NHIN and Carequality specification harmonization efforts could eventually lead to CONNECT being a suitable platform for Carequality implementors.
TLS settings are not configured via CONNECT but CONNECT does provide some TLS override features such as /wiki/spaces/CONNECTWIKI/pages/118035664
Each service may have a respective property file to configure a proxy to be used when communicating with a service. By default, there may be up to four pre-configured beans: NoOp, Java, Secured and Unsecured beans.
Injection points into CONNECT are controlled by Spring Bean lookups. Injection can be done in one of 2 ways: Java or Web Services.
For Java injections, simply point the bean for the service you wish to replace in its respective property file to your custom implementation. For example, to change the Document Submission Adapter, the "adapterdocsubmission" alias inside the DocumentSubmissionProxyConfig.xml file would be changed to your custom bean. By default, there are example beans for most services with the "java" postfix - in this case "adapterdocsubmissionjava". This pre-defined bean may be repurposed by changing the "class" to your own java class file.
For webservice injections, the bean alias would be set to either the secure or unsecure beans already defined in the respective XML file. Instead of injecting a custom java class, the appropriate endpoint inside of the internalExchangeInfo.xml file must be changed to point to the URL of where your custom service is deployed. As an example, if we wanted to change the Document Submission Adapter endpoint, we would find the "adapterxdrsecured" service name (Or "adapterxdr" if you are using an unsecured service) and change its URL to point to the custom service. It should be noted that these custom services must implement their respective WSDLs
Currently, the CONNECT gateway is designed to operate in two modes, entity (standard) and passthrough. Entity (Standard) allows for further processing by the gateway including policy checks, mpi queries, and fan-out capabilities. Passthrough sends the message directly from gateway to adapter and vice versa.
When building CONNECT, you may specify the appropriate maven profiles (DQ, PD, DS, DDS, admingui, etc.), which will compile and bundle the services into the resulting EAR file. Simply use the respective profiles only for the services you wish to deploy.
Admin GUI is meant to serve as an extension to CONNECT in order to manage the gateway, certificates, properties, and perform basic queries for information about the gateway. Admin GUI is also capable of serving a cross query client, as well as an interface for viewing Audit and Failure logs. Admin GUI may be deployed either on the same servlet container, as well as on a different server entirely (There may be some additional setup steps in order to configure your Admin GUI onto an external server).
A full user manual on the Admin GUI can be found here.
CONNECT facilitate custom overrides for an exchange partner. You can define them in exchangeInfo.xml. Refer to /wiki/spaces/CONNECTWIKI/pages/544899100
CONNECT can download from web services registry from both UDDI and FHIR directroies. You can configure the download in exchangeInfo.xml. For more information see /wiki/spaces/CONNECTWIKI/pages/278528020 and Sample exchangeInfo
/wiki/spaces/CONNECTWIKI/pages/94306306
See link to forum post on how a community member switched to use Oracle instead of MySQL - Switching-from-MySQL-to-Oracle-database-for-Connect-4-0
Follow the Steps below to run CONNECT Oracle Scripts for a fresh install:
1. Run dropall_oracle.sql
2. Run nhincdb_oracle.sql
3. Run populateTestData_oracle.sql
4. Run loadTestDocumentData_oracle.sql (PLEASE NOTE this script can't be run from SQL Plus due to line limitation, you have to use SQLDeveloper or some other COTS product like TOAD, PL/SQL Developer)
See link to forum post on how a community member setup a JKS Keystore with WAS - Using-PKCS-KeyStore-in-WAS-instead-of-JKS-KeyStore
See link to forum post on how to use a CA signed certificate instead of self signed certificate in WebSphere Application Server 8.5 stand alone installation for CONNECT - Using-CA-Signed-Certificate-for-Connect-4-0-in-WAS-8-5
See link to forum post on how to use a create a custom secure and unsecure ports in WebSphere Application Server 8.5 for CONNECT Validation Suite (SOAP-UI) Testing
CONNECT currently is tested on Wildfly, JBoss, WebSphere and WebLogic. However there seems no reason why CONNECT would not work on Tomcat. See link to forum post on how some of our community members have successfully installed CONNECT on Tomcat and associated tips/changes needed in the configuration files - Deploying-Connect-4-on-tomcat
CONNECT uses Java JEE standard for developing all the Web/Web Service modules. The JEE web application/Enterprise application uses DTD/SCHEMA to verify the XML deployment descriptors used, which are specific to each application server vendor and these DTD/SCHEMA are hosted by the application vendor and referenced from CONNECT Web/Web Service applications. We recently noticed that one of the application server vendor's site (hosting these DTD/SCHEMAs) was down causing the CONNECT system to be down. For example, the sun.com site which was hosting some DTD/SCHEMA was down and due to this CONNECT was not deploying/working for one of the CONNECT users. Implementation teams can resolve this issue by doing any of the following:
1. Creating a ticket with the application server vendor.
2. Internally hosting DTD/SCHEMA site and put all the referenced DTD/SCHEMAs there.