NumOutInterpOverride Property

NumOutInterpOverride Property

Gets and sets the number of SALT interpreters that Telephony Application Services (TAS) creates to service outgoing calls.

obj.NumOutInterpOverride = integer

Part

Description

obj

An instance of the TAS class.

integer

An unsigned integer specifying the number of SALT interpreters that TAS should create for placing outgoing calls. Values can range from 0 to 500.

Qualifiers

Qualifier

Value

Description

Registry

True

If True, this property value is read from the Registry.

Restart

False

If False, changes to this property take effect without requiring the service to restart.

DefaultValue

0

Default value for this property.

MinValue

0

Minimum value for this property.

MaxValue

500

Maximum value for this property.

Remarks

This property is not exposed in the Microsoft Speech Server Management Console (MMC) snap-in. Values that do not appear in the MMC are generally more advanced configuration options, changeable only through VBScript. Changes to these settings should be tested in a safe environment before implementing them on live production servers. Changing these settings can cause extensive changes to the entire system.

By default, the number of SALT interpreters is managed dynamically by the SALT interpreter manager, based on the load on the system. Setting NumOutInterpOverride to any value other than the default fixes the number of SALT interpreters, thus overriding the SALT interpreter manager's default dynamic nature. Note that setting this property to anything other than the default value also overrides Application Domain recycling due to memory pressure, as set by the LoadMemoryLimit property.

Windows Management Instrumentation (WMI) Script Example

myComputer = "localhost"

' Use a Locator object to connect to WMI.
Set locator = CreateObject("WbemScripting.SWbemLocator")
Set namespace = locator.ConnectServer(myComputer, "root/MSS")

' Get the TAS instance.
Set tel = namespace.Get("TAS=@")

' Display the current value.
WScript.Echo tel.NumOutInterpOverride

' Set the property value.
tel.NumOutInterpOverride = 250

' Update the class instance in WMI.
tel.Put_

Member Of

TAS class