Hi,
I'm trying for an agent desktop using Agent Interaction SDk webservices(.Net) similar to thin client toolbar
Connecting to GIS and accessing the Services available - Agent , Event & Interaction Services through the .Net Proxy (AIL Library).
For a certain period - CTI Application could not receive events in a session ,T-Server and GIS have the corresponding telephonic events,
The application is deployd in IIS and uses the default application pool and application is integrated with Ajax for partial page rendering to avoid postbacks.
Please find the portion of web.config settings,
<!-- Defines whether to use a single connection to GIS/.NET Server for all users
or to make a connection per user. Value values are "True" or "False". -->
<add key="SingleConnection" value="True"/>
<!-- The following three options determine how the app checks for events -->
<add key="CheckForEventsMode" value="WAIT"/>
<!-- WAIT or NOWAIT - note WAIT will consume an IIS/ASP.NET Thread-->
<add key="ThreadPoolSize" value="100"/>
<!-- If CheckForEventsMode is WAIT, there needs to be at least 1 thread per user, plus a pool to handle normal page requests (25/CPU) -->
<add key="EventPollingMode" value="DIRECT"/>
<!-- DIRECT, THREAD, PUSH -->
<add key="EventPollingTimeout" value="30"/>
<add key="EventPollingTimeoutMilliseconds" value="1"/>
for eg -For a incoming call the ringing, estblished did not reach the .Net CTI application and available in T-Server and GIS. After relaunching the application the events are notified appropriately.
Is the issue related to polling mode . IIS session timeout is set to 9 hours. Please suggest