Configure the integration files
Before you can use the integration to ChangeMan ZMF, configure additional files on the application server.
To configure the integration files:
- Download the Deployment Automation plugin bundle from the Software Licensing and Downloads portal (requires login).
- Extract the ChangeMan ZMF zip file from the bundle.
-
Copy the zmf-core-CURRENT.jar from the ChangeMan ZMF zip file to the Deployment Automation Common Tomcat location:
-
In the ChangeMan ZMF zip file, navigate to the lib directory.
-
Copy the zmf-core-CURRENT.jar file from the zip file to the Common Tomcat's lib directory, for example:
<tomcat-install-directory>\webapps\da\WEB-INF\lib
-
-
Open the web.xml file in the Common Tomcat's WEB-INF directory, for example:
<tomcat-install-directory>\webapps\da\WEB-INF
-
In the web.xml file, add the following code before the </web-app> tag:
Copy code<servlet>
<servlet-name>ZMFALFEventRouter</servlet-name>
<servlet-class>com.serena.servlet.ZMFALFEventRouter</servlet-class>
<init-param>
<param-name>redirectURL</param-name>
<param-value>/</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>ZMFALFEventRouter</servlet-name>
<url-pattern>/servlet/ZMFALFEventRouter</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>ZMFALFEventRouter</servlet-name>
<url-pattern>/services/*</url-pattern>
</servlet-mapping> - Save the changes.
- Restart Common Tomcat.
Proceed with configuring the integration, as described in Set up integration with ChangeMan ZMF.