Interviewer - Server Admin > UNICOM Intelligence Interviewer - Server Admin architecture > Load balancing > UNICOM Intelligence Interviewer - Server Admin load balancing configuration > Configure each activity's web.config file
 
Configure each activity's web.config file
On each clustered server you must update each activity's web.config file to enable an HTTP handler. The handler runs MR script from DPM and returns the current processes' performance factor.
Procedure
Add the following entry to each activity's Web.config file. Make sure that the activity name is the same as the one you used for this activity in the configuration file.
<httpHandlers>
  <add verb="*" path="WebBalancer.ashx" type="PASW.Web.Utilities.WebLoadingHandler,DimensionNet,Version=3.0.2.0, Culture=neutral, PublicKeyToken=8174058f62942e31"/>
</httpHandlers>
<appSettings>
  <add key="ActivityName" value="CatiInterview"/>
</appSettings>
Note The key ActivityName is used to retrieve the activity's MR script set.
See also
UNICOM Intelligence Interviewer - Server Admin load balancing configuration