Bad_TcpMessageTooLarge message size exceeds configured limit #1128
Replies: 5 comments
-
You would need to request less data - this error is because the message coming from the server is larger than the configured limits. |
Beta Was this translation helpful? Give feedback.
-
Thanks for you fast response. I was under the assumption the server would chunk the data and I can use continuation points to even retrieve large data sets. Isn't this the case? Thanks for you support! |
Beta Was this translation helpful? Give feedback.
-
That is how it works, but the server is currently returning a response larger than allowed by the negotiated channel parameters. Is this a HistoryReadRequest? How many |
Beta Was this translation helpful? Give feedback.
-
Yes it is a |
Beta Was this translation helpful? Give feedback.
-
In If that doesn't work the server isn't doing its job right and you may need to try increasing the channel limits. Look at the |
Beta Was this translation helpful? Give feedback.
-
Describe the bug
When performing a history read we are receiving the following exception:
Bad_TcpMessageTooLarge message size exceeds configured limit
We already tried to set
setMaxResponseMessageSize
to a larger value (e.g.50000
) but it did not change the behaviour.Expected behavior
Should work without exception
Logs and Packet Captures
Additional context
Milo version
0.6.9
OPC UA Server is Siemens WinCC
Beta Was this translation helpful? Give feedback.
All reactions