On Sat, Mar 26, 2022, 19:06 Nick Couchman <[email protected]> wrote: > On Wed, Mar 23, 2022 at 12:10 PM Denis Bessa <[email protected]> wrote: > >> Hi, >> >> I have a Guacamole Server running on Kubernetes. It works perfectly, >> except for one thing: users can't upload more than 60 files throug the RDP >> connection. >> >> When they try to do so, they receive this error message: >> >> >> (An internal error has occurred within the Guacamole Server...) >> >> > Can you check the catalina.out file and see if there's any indication of > the error? > > >> Is there any limitations with the number of file uploads? >> >> > Probably, but I don't think it's 60. >
The Guacamole server uses a static limit of 64 simultaneous streams per connection: https://github.com/apache/guacamole-server/blob/master/src/libguac/guacamole/client-constants.h#L33 Streams exceeding that limit are rejected by the server until existing streams close. - Mike
