Community Tip - Did you know you can set a signature that will be added to all your posts? Set it here! X
Hi,
With Java SDK I got error message:
22:10:38.183 [main] ERROR c.t.c.client.things.VirtualThing - Unable To Update Subscribed Events For DeviceTestThing : Thingworx message size too large: 18873
22:10:41.216 [main] ERROR c.t.c.client.things.VirtualThing - Unable To Update Subscribed Events For DeviceTestThing : Thingworx message size too large: 37541
The message in the event contains about 300 lines, is there a way to adjust the message size ?
Regards,
Sean
Solved! Go to Solution.
If you are sending a 300 line string message to TWX, why don't you just separate it to several strings and then send them out? You can merge these inputs together following the seq # later. It's like sending out a large file through TCP and the content is delivered as smaller packages.
Or if it's a text file or others, why don't you sent it through FTP, use the File repository to receive the document.
If you are sending a 300 line string message to TWX, why don't you just separate it to several strings and then send them out? You can merge these inputs together following the seq # later. It's like sending out a large file through TCP and the content is delivered as smaller packages.
Or if it's a text file or others, why don't you sent it through FTP, use the File repository to receive the document.