cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - Your Friends List is a way to easily have access to the community members that you interact with the most! X

Thingworx message size too large

seanccc
17-Peridot

Thingworx message size too large

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 

 

 

1 ACCEPTED SOLUTION

Accepted Solutions

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.

 

 

View solution in original post

2 REPLIES 2

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.

 

 

seanccc
17-Peridot
(To:zyuan1)

@zyuan1 ,

 

Thank you, I separate it into small packets and it works. 

Top Tags