Installation and Patching

3Sixty connectors are packaged as independent jar files. This means they are easy to install and patch.

An example connection jar file will look like this:

simflofy-elasticsearch-connector-3.0.2-SNAPSHOT.jar

Adding or overwriting the jar file from this path will do the trick:

\tomcat\webapps\3sixty-admin\WEB-INF\lib

When patching a connector make sure to empty the following folder. This can avoid caching.

\tomcat\work\

The tomcat container caches static resources like jar files, so overwriting doesn't always work. A possible fix is adding the following can be added to the tomcat/conf/context.xml file to try to prevent caching entirely. However, this doesn't always work.

<Context>

<Resources antiResourceLocking="false" cachingAllowed="false" />

</Context>