MSIR.0596 Cancelling request due to lost Janus Sockets connection ID (sock num), print was captured: Difference between revisions

From m204wiki
Jump to navigation Jump to search
(Automatically generated page update)
mNo edit summary
Line 1: Line 1:
This message indicates that the application attempted some print output (for example, the User Language PRINT statement) and the print output was captured by a lost Janus Sockets connection.  
This message indicates that the application attempted some print output (for example, the User Language PRINT statement) and the print output was captured by a lost Janus Sockets connection.  


The request is cancelled.  
The request is cancelled.  


The socket number of the connection is shown as ''''sock_num''''. If you wish the request to not be cancelled, see the ''Janus Sockets Reference Manual'' for methods to allow this situation to be handled; for example, you can use the following:<pre> $SOCK_CAPTURE(''''sock_num'''', 'LOSTOK')</pre> to indicate that the loss of a connection should not cause request cancellation.
The socket number of the connection is shown as '''''sock_num'''''. If you want the request to not be cancelled, see the [[Janus Sockets]] documentation for methods to allow this situation to be handled. For example, you can use the following to indicate that the loss of a connection should not cause request cancellation:
<p class="code"> $SOCK_CAPTURE('''''sock_num''''', 'LOSTOK') </p>  


[[Category:Sirius Mods messages]]
[[Category:Sirius Mods messages]]

Revision as of 22:23, 22 April 2014

This message indicates that the application attempted some print output (for example, the User Language PRINT statement) and the print output was captured by a lost Janus Sockets connection.

The request is cancelled.

The socket number of the connection is shown as sock_num. If you want the request to not be cancelled, see the Janus Sockets documentation for methods to allow this situation to be handled. For example, you can use the following to indicate that the loss of a connection should not cause request cancellation:

$SOCK_CAPTURE(sock_num, 'LOSTOK')