Hi, I have a problem on DDS.
I set string lenth in idl is 65536, but when I publish data, it said: string too long, truncated to 1024.
Here is my idl struct setting,
struct datamsg {
string<8> ID;
string<128> file_name;
string<65536> data;
long timestamp;
};
please tell me how to fix it, thanks.
Karen