M Modern_Digital Member Licensed User Longtime User Oct 12, 2019 #1 Hi, I have code to change the setMaxMessagePayloadSize value in WebSocketOptions but for android not for ios : B4X: Dim jo As JavaObject = WebSocket1 jo = jo.GetField("options") 'WebSocketOptions jo.RunMethod("setMaxMessagePayloadSize", Array(4 * 1024 * 1024)) '4mb i want to convert this code to make it work in ios. thank you.
Hi, I have code to change the setMaxMessagePayloadSize value in WebSocketOptions but for android not for ios : B4X: Dim jo As JavaObject = WebSocket1 jo = jo.GetField("options") 'WebSocketOptions jo.RunMethod("setMaxMessagePayloadSize", Array(4 * 1024 * 1024)) '4mb i want to convert this code to make it work in ios. thank you.
Erel B4X founder Staff member Licensed User Longtime User Oct 12, 2019 #2 There is no similar configuration in the underlying SDK. I don't see any length limit. Have you encountered any error? Upvote 0
There is no similar configuration in the underlying SDK. I don't see any length limit. Have you encountered any error?
M Modern_Digital Member Licensed User Longtime User Oct 12, 2019 #3 Thank you Erel, no I did not encounter any error only I thought this feature is in the library iWebsocket and I do not want to get errors when I using it. Upvote 0
Thank you Erel, no I did not encounter any error only I thought this feature is in the library iWebsocket and I do not want to get errors when I using it.