The system uses the Windows Communication Framework (WCF) for inter process communications.
The default settings used by the system should be adequate for most work, but in some cases tweaking these parameters using the application configuration files can be beneficial.
An example of when this should be done is in a very busy system with high load where the administration tool is viewing CICS trace data. The sheer volume of data might be too much for the default WCF buffer sizes. Changing maxReceivedMessageSize and MaxArrayLength in the monitor process would be appropriate.
For a WAS (IIS hosted) deployment, the SEP and Dispatcher parameters are in the appropriate web.config file.
The Listener and Monitor roles' default configuration files are in the following locations:
%ProgramFiles%\Micro Focus\Enterprise Developer\binAnyCPU\SEE
%ProgramFiles(x86)%\Micro Focus\Enterprise Developer \binAnyCPU\SEE
The following parameters can be configured for each role. The default values are used by the system if no overriding parameter is found in the configuration files.
<services> <!-- Sample settings for changing WCF service parameters --> <add key="NetNamedPipe.maxConnections" value="260" /> <add key="NetTcp.maxConnections" value="260" /> <add key="Throttling.maxConcurrentCalls" value="522" /> <add key="Throttling.maxConcurrentSessions" value="522" /> <add key="NetTcp.maxReceivedMessageSize" value="200010" /> <add key="NetTcp.ReaderQuotas.MaxArrayLength" value="150010" /> </services>