webConnectionConfiguration Settings

Main configuration class for the Web Connection Module that holds operational settings.

These settings are persisted in the WebConnectionConfiguration section of the Web.config file and be set there.

  <webConnectionConfiguration>
    <add key="Timeout" value="10" />
    <add key="PollTimeout" value="100" />
    <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.asp" />
    <add key="UpdateFile" value="c:\temp\server\wcdemo.exe" />
    <add key="LogDetail" value="False" />
    <add key="ValidateRequest" value="True" /> 
    <add key="ComServerProgId" value="wcdemo.wcdemoserver" />
    <add key="ComServerLoadingMode" value="LoadBased" />
    <add key="ServerCount" value="2" />
    <add key="ExeFile" value="c:\wwapps\wc3\wcdemo.exe" />
    <add key="AutoStartServers" value="True" />
    <add key="MessageDisplayFooter" value="<small>Page generated by Web Connection IIS Connector Module</small>" />
    <add key="FileServerAutoStartAccountMode" value="Interactive" />
    <add key="UseCustomManifestLoading" value="False" />
  </webConnectionConfiguration>
System.Object
  Westwind.Tools.wwAppConfiguration
    Westwind.WebConnection.AppConfiguration
public class AppConfiguration : wwAppConfiguration

Class Members

MemberDescription

AdminAccount

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.

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

Requirements

Namespace: Westwind.WebConnection
Assembly: webconnectionmodule.dll

© West Wind Technologies, 1996-2024 • Updated: 03/06/16
Comment or report problem with topic