Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...


Section


Column

This page describes how to configure Microsoft's IIS web server and  such and frevvo such that IIS forwards requests on to frevvo, and responds back to the user.

 is frevvo is written in Java, and needs a Java Application Server (servlet container) to run. As IIS does not provide services of a Java Application Server, it is not possible to deploy  directly deploy frevvo directly into IIS. It is possible, however, to configure IIS to proxy requests for  to for frevvo to an application server where  is where frevvo is deployed. If you are not using the standalone  distribution standalone frevvo distribution with Tomcat, please consult your application server's documentation to determine whether it is possible to integrate with IIS and how to achieve it. Also note that this is a guideline on how enable the interaction between  and between frevvo and IIS.


Column
width240px

On this page:

Table of Contents
maxLevel2


...

Note

It is very important that you first follow the basic  basic frevvo Quick Start Guide and verify that  works that frevvo works by itself by pointing a browser to http://localhost:8082/frevvo/web/login.

...

  • Stop Tomcat. 
  • In a text editor open FREVVO_HOME/tomcat/conf/server.xml 
  • Ensure that the AJP Connector is enabled by uncommenting out the section.   
  • Specify a value for the secret attribute (recommended) or if you are using the connector on a trusted network you can set secretRequired="false" instead. 
    • If you are using the recommended boncode connector, when you set the secret attribute you also need to set the RequestSecret attribute in the boncode connector file, BonCodeAJP13.settings, to the same value. (Refer to this article for additional details and troubleshooting.)
Code Block
languagehtml/xml
<Connector port="8009" protocol="AJP/1.3" redirectPort="8443" 
               useBodyEncodingForURI="true" tomcatAuthentication="false"
               address="YOUR_TOMCAT_IP_ADDRESS" secret="YOUR_TOMCAT_AJP_SECRET"/>

...

2. Customers using LDAP SSO that see a "Value update failed" or “Update control failed" error intermittently occur on forms should reconfigure the AJP (IIS to Tomcat) connector with these settings to resolve the error:

Image Modified