Make sure that the FlexNet license server is installed beforehand because Cameo Collaborator for Teamwork Cloud uses a floating license. You will need to specify license server details when installing Web Application Platform.
Before installing Web Application Platform, make sure you know Teamwork Cloud, Authentication server and FLEXnet server data, such as the host name (or IP address) and port. You will need to enter this data during installation.
You have to download the following files:
webapp-<version_number>.war
collaborator-<version_number>.nwp
resourceresources-manager-<version number>.nwp
admin-console-<version_number>.nwp
nwp-manager-<version_number>.jar (may be provided in an archive)
For production use, Web Application Platform and Teamwork Cloud should be installed on different machines.
After installing Web Application Platform, it is recommended to disable the web container (e.g., Apache Tomcat) on the machine where Teamwork Cloud is installed.
To install the Web Application Platform
Download and install a Java application server or servlet container on which the Web Application Platform will run. For installation instructions, see the documentation of the server you intend to install.
Use a plain text editor to create the webappplatform.properties file.
In the webappplatform.properties file, copy and paste the following properties:
Code Block
linenumbers
true
# General properties
install.root=.
# Web Application Platform properties
wap.context=/webapp
# Specify a guest user name. You can create users using TWC Admin Console.
wap.guest.username=Guest
# Specify the guest user password.
wap.guest.password=Guest
# Authentication server properties
# Specify the Authentication server location. Use http or https depending on the Authentication server setup.
authentication.server.uri=https://<nm_authentication_server_ip>:8555/authentication
# Specify an optional redirect uri if the incoming request does not provide one.
# By default redirect uri is the authentication server location. Remove # for the property to work.
#authentication.redirect.uri=https://<nm_authentication_server_ip>/webapp/
# Specify a unique platform ID.
authentication.client.id=webApplicationPlatform
# Specify the authentication client password that platform will use to secure communication with the authentication server.
authentication.client.secret=CHANGE_ME
# Set to true to ignore Authentication server certificate validation. Otherwise, set to false.
# The value depends on the Authentication server setup.
authentication.server.ignore.certificate=true
# Teamwork Cloud server properties
# Specify the Teamwork Cloud administrator user name.
twc.admin.username=Administrator
# Specify the Teamwork Cloud administrator password.
twc.admin.password=Administrator
# Specify the Teamwork Cloud server address. Use http or https depending on the Teamwork Cloud server setup.
twc.url=https://<teamwork_cloud_ip>:8111
# Specify the maximum total number of connections.
twc.client.max.total.connections=20
# Specify the maximum number of connections for a route.
twc.client.max.connections.per.route=20
# Specify how long (in milliseconds) to wait for establishing the connection with the remote server before a timeout exception occurs.
twc.client.connect.timeout.ms=30000
# Specify how long (in milliseconds) to wait for the server to respond to various calls before a timeout exception occurs.
twc.client.socket.timeout.ms=120000
# Specify how long (in milliseconds) to wait for checking out a connection from the connection pool before an exception occurs.
twc.client.connection.request.timeout.ms=120000
# Set to true to ignore Teamwork Cloud certificate validation. Otherwise, set to false.
twc.client.ignore.certificate=true
# FlexNet server properties
# Specify the FlexNet licence server IP address.
flexnet.server.name=<server_ip>
# Specify the FlexNet license server port.
flexnet.server.port=<server_port>
# Platform mailing engine properties used to send notifications via e-mail
# Specyfy the e-mail server host name.
mail.host=<gate.company.com>
# Specify the e-mail server port.
mail.port=25
# Specify the sender's user name and password.
mail.username=<user_name>
mail.password=<password>
# Specify the e-mail protocol and encoding.
mail.protocol=smtp
mail.encoding=UTF-8
# Specify the sender's e-mail address.
mail.from.default=<info@company.com>
mail.from.enabled=false
mail.smtp.auth=false
mail.smtp.timeout=30000
Read the comments with property descriptions inside the file and specify the following:
Web Application Platform properties
Teamwork Cloud server properties
Authentication server properties
FlexNet server properties
Note
title
Specifying property values
Make sure you replace the placeholders in the angle brackets (<>) with actual values (e.g., Teamwork Cloud and Authentication server addresses)
Some properties are specified for you. You can leave their values unchanged.
Platform mailing engine properties are optional. You can specify them later to get email notifications about document changes.
Save and close the webappplatform.properties file.
Place the webappplatform.properties file into in the location that is on the classpath of the web application container you have installed.
Tip
title
Example
If you have installed Apache Tomcat 8.0 or above, you can choose from the following options (refer to server documentation for all available options):
Place the webappplatform.properties file in the <tomcat_home>/shared/conf directory. Then open the <tomcat_home>/conf/catalina.properties file and set the shared.loader property as shared.loader="<catalina_base>/shared/conf".
Place the webappplatform.properties file in a custom directory. Add the path to the directory to the list of shared classloader paths defined by the "shared.loader" property in the ${tomcat.home}/conf/catalina.properties file.
If you have installed a different web application server, refer to its user manual.
Rename the webapp-<version_number>.war file to webapp.war.
Start the web application server and deploy the webapp.war file.
Open a web browser and navigate to http(s)://<host>:<container_port>/<platform_root>/. You should see a blank page.
Extract the NWP manager archive file.
Copy the webapp.war file to any temporary folder.
Integrate the collaborator-<version number>.nwp,resourceresources-manager-<version number>.nwp, and admin-console-<version_number>.nwp plugins to the copied webapp.war file in one of the following ways:
In the command-line, execute one of the following commands:
Redeploy the webapp.war file with integrated plugins to the web application server.
When the installation is finished, update the authentication.redirect.uri.whitelist property in the authserver.properties file by adding the Web Application Platform address http(s)://<domain_name>/webapp as its value.
Once Web Application Platform with plugins is installed, access it by opening a web browser and navigating to http(s)://<domain_name>:<port>/webapp/resources. By default, the Web Application Platform uses the port 8443.