Replies: 2 comments 2 replies
-
Which version are you using? We recently added client side chunking which should support sending larger messages. |
Beta Was this translation helpful? Give feedback.
1 reply
-
Are you sure you are connecting to an OPC-UA endpoint? I find it unlikely that any server responds with a 1GB message. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I try to run any of the examples against a PLCIM Advanced V 4.0 OPC Simulator, but I get the error message:
After tweaking my configuration to use the configs
opcua.ReceiveBufferSize(1347633490)
andopcua.MaxMessageSize(1347633490)
, I get another error:I tried to debug the code and drilled it down to
TcpDial
->Handshake
->Send “HELF”
and then in the followingReceive()
, it gets 8 header bytes (string "HMMTRASP"), which is parsed to a header having "HMM" message type with the mentioned size of 1347633490. Then, when trying to read the message body withReadAtLeast()
using this size, only 37 bytes are read, followed by an EOF.Maybe this is a misconfiguration issue of the simulator, but I actually don't know where to start.
I hope that someone could give me any hint.
Thank you in advance
Mathias
Beta Was this translation helpful? Give feedback.
All reactions