V8.x and earlier
Configure your Cora SeQuence sites with SSL to secure your Cora SeQuence environment. The prerequisite steps are mandatory for each Cora SeQuence site.
Prerequisites
You need to perform the prerequisite steps for all Cora SeQuence sites.
- Install the necessary SSL certificate on IIS.
- Configure the Bindings Settings on the site settings in IIS. Cora SeQuence sites can only have a single binding.
Setting Value Type HTTPS Port 443 (or any other valid and available port) SSL certificate Relevant SSL certificate Host name Valid host name
Edit the web. config file (non-SharePoint, 8.2 and later)
- Open the
web.config
file, and edit the appropriate settings.- Set
<security mode="Transport">
in<system.serviceModel><bindings><webHttpBinding><binding name="webHttpBinding">
. - (Optional) If you are using Windows authentication, set
<transport clientCredentialType="Windows" />
in<system.service Model><bindings><webHttpBinding><binding name="webHttpBinding">
. - (Optional) For all other forms of authentication, set
<transport clientCredentialType="None" />
in<system.serviceModel><bindings><webHttpBinding><binding name="webHttpBinding">
.
- Set
Flowtime on SharePoint
This procedure extends the existing web application to an additional site using HTTPS.
- Log in to SharePoint Central Administration.
- From the top toolbar, select Manage Web Applications > Flowtime > Extend.
- In the Extend Web Application to Another IIS Web Site wizard, configure the necessary settings and click OK.
Setting Value Create a new IIS web site Select this option. Port 443 Host Header Path Path where the site will be hosted. Use Secure Sockets Layer (SSL) Yes URL The URL that matches the SSL certificate. Zone Select the appropriate zone. - In IIS manager, right-click the new site and select Add Virtual Directory.
- In the Alias textbox, type Shared Resources. In the Physical Path selection box, click the ellipsis button.
- Navigate to the Cora SeQuence installation path and select the Shared Resources folder.
- Click OK
- Copy the
web.config
file from the original Flowtime site and replace theweb.config
file in the new extended site. - Repeat steps 4-8 for every SharePoint server in your SharePoint farm.
ProcessTOGO
Edit the ProcessTOGOweb.config
file.
- Under the
<serviceBehaviors>
node, in the<serviceMetadata>
attribute, change<serviceMetadata httpGetEnabled="true"></serviceMetadata>
to<serviceMetadata httpsGetEnabled="true"></serviceMetadata>
.