Matthias247 / jawampa

Web Application Messaging Protocol (WAMP v2) support for Java
Apache License 2.0
148 stars 57 forks source link

Large Byte Array Serialization #81

Closed samielhini closed 8 years ago

samielhini commented 8 years ago

It seems that if I try to serialize a large byte array in a publish message the subscriber side disconnects and fails.

Matthias247 commented 8 years ago

There's a maximum websocket frame length configured for Netty that will cause a connection close if exceeded. You can override the limit. See #67 for details.

samielhini commented 8 years ago

Wonderful! Thanks!