
Blazix IIS connector module:
Steps to install the connector.
The configuration file contains several commands, each command on one line. The commands are of the form
key: valueThe "key" can be one of "Host", "Port", "URL" or "ConnectorURL". The "URL" can be repeated multiple times.
The "Host" and "Port" keys specify where the Blazix server is running. If the Blazix server is running on the same machine as the IIS server, Host can be specified as "localhost".
The URL keys specify the URLs which are to be passed to the Blazix server. Typically all .jsp files will be passed to Blazix. In addition, any servlet URLs will also be passed to Blazix. If you are using Blazix Authentication, also specify "/j_security_check" and the URL which is to be used for reporting authentication failure.
The URL keys can start or end with the * character, which serves as a wildcard.
A sample BlazixIsapi.ini file is shown below
Host: myhost Port: 800 URL: *.jsp URL: /myservlet1 URL: /myservlet2 URL: /myapp/* URL: /j_security_check URL: /LoginFailed.html
The ConnectorURL key specifies the URL to the BlazixIsapi.dll. It defaults to /scripts/BlazixIsapi.dll, so it is not required if you have installed the DLL in the /scripts folder.