The information in this article applies to:
SUMMARYA Common Programming Interface for Communications (CPIC) application may produce event 3017: CPI-C conversation_ID unknown, in the Windows NT application event log. The CPIC application appears to be working fine, but this error may be produced every time the application is called. MORE INFORMATIONThe application sends data to the host. After the application has finished sending the data, it changes the direction by issuing Receive verb. The host responds by returning data to the client AND deallocating the session. This can be seen in the node message trace snippet below:
The CEB indicates that the host no longer cares about any conversation
related matters. When the client receives this chunk of data, you need to
inspect the return code on the verb. In this case, it's a
CM_DEALLOCATED_NORMAL, which means the conversation has been deallocated
normally, and no longer exists.
The application then issues a Deallocate verb as shown below:
The SNA Server, appropriately, responds with a Parameter Check because the
conversation no longer exist, as shown below:
Summary of the Parameter CheckThe application does not need to issue the CMDEAL CPIC verb.RESOLUTIONChange the application so it does not include the CMDEAL, and the event 3017s should stop. Additional query words:
Keywords : |
Last Reviewed: September 23, 1999 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |