question

Upvotes
Accepted
1 1 1 4

ripcRead() failed: (11)

What does this error mean? Is there any way to find explanations of all the releated error code?

(ComponentName) RSSL_Adapter: (Severity) Error: RSSL Channel read failed on connection "RSSL_0x7f50fa3a65c0".  Channel will be closed.  (Internal debug info: "<Impl/ripcsrvr.c:5616> ripcRead() failed: (11)", errno: 11)
elektronrefinitiv-realtimetrep
icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Hello @tao.yang

Thank you for your participation in the forum. Is the reply below satisfactory in resolving your query? If yes please click the 'Accept' text next to the reply. This will guide all community members who have a similar question. Otherwise please post again offering further insight into your question.

Thanks,

AHS

Please be informed that a reply has been verified as correct in answering the question, and has been marked as such.
Thanks,
AHS

1 Answer

· Write an Answer
Upvotes
Accepted
4.4k 10 6 9

The "Channel read failed" error message means transport layer is unable to read data from buffer. It is possible that the API is reading data during the connection is down.

The number is error code from errno.h and errno-base.h. In this case, number 11 means:

EAGAIN      11  /* Try again */

Overall, the error means there is disconnection as API cannot read from channel.

There might be some condition on the network that cause the disconnection. You may need to check the server log as it may contains the information regarding the disconnection.

icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.