These settings are persisted in the WebConnectionConfiguration section of the Web.config file and be set there.
<webConnectionConfiguration> <!-- NOTE: These settings apply only to the Web Connection Managed Module! --> <add key="Timeout" value="60" /> <add key="PostBufferLimit" value="0" /> <add key="TempPath" value="c:\temp\wc\" /> <add key="TempFilePrefix" value="WC_" /> <add key="MessagingMechanism" value="File" /> <add key="AdminAccount" value="ANY" /> <add key="AdminPage" value="~/admin/admin.asp" /> <add key="ExeFile" value="c:\wwapps\wc3\WebDemo.exe" /> <add key="UpdateFile" value="c:\temp\updates\WebDemo.exe" /> <add key="LogDetail" value="False" /> <add key="ValidateRequest" value="False" /> <add key="ComServerProgId" value="WebDemo.WebDemoServer" /> <add key="ComServerLoadingMode" value="LoadBased" /> <add key="ServerCount" value="2" /> <add key="AutoStartServers" value="False" /> <add key="MessageDisplayFooter" value="<small>Error generated by Web Connection IIS Connector Module</small>" /> </webConnectionConfiguration>
public class AppConfiguration : wwAppConfiguration
| Member | Description | |
|---|---|---|
![]() |
AdminAccount | The account that is allowed access to the administration functions when authenticated. |
![]() |
AdminPage | The adminstration page in the application. Allows use of ~ for the application path. |
![]() |
AutoStartServers | Determines whether servers are automatically started when the first hit comes into the module. Useful primarily for file based operation which starts up the EXE server |
![]() |
ComServerLoadingMode | Deterimines how servers are processing requests. Round Robin simply goes through each of the servers one after the other while LoadBased always starts with the first server. |
![]() |
ComServerProgId | The ProgId of the COM server to be loaded |
![]() |
ExeFile | Name of the EXE file for the server application. |
![]() |
LogDetail | Determines whether request data is logged in detail. |
![]() |
MessageDisplayFooter | A default footer message displayed on the bottom of the Module's generic messages |
![]() |
MessagingMechanism | Determines how messaging works in Web Connection |
![]() |
PostBufferLimit | Max size of the POST buffer - if bigger request is aborted |
![]() |
ServerCount | Determines how many Com instance of the server are loaded in Com messaging mode. |
![]() |
TempFilePrefix | The temp file prefix for file based message files |
![]() |
TempPath | The Path where message files are written for file based messaging |
![]() |
Timeout | The request timeout in seconds |
![]() |
UpdateFile | The Update EXE file from which the Exe file can be hot swapped |