Yes, NeuTrafiX supports sending concatenated messages, using message_payload, UDH, and dynamically.
In case you get a failure on a seller when using message_payload or sending a long message normally in short_message, we recommend you send using UDH.
UDH Guide:
On SMPP:submit_sm the UDHI (User Data Header Indicator) in the esm_class parameter :
esm_class = 0x40 x1xxxxxx is set in the esm_class field to indicate UDHI is true
The concatenation UDH values are inserted at the start of the message body.
For example:
Message 1 (UDH+153 chars length message):
esm_class = 0x40 x1xxxxxx
short_message = 0x05 0x00 0x03 0x05 0x02 0x01 Barcelona are to appeal against Uefa's proposal to ban Andres Iniesta for an additional Champions League match for allegedly provoking a yellow card.
Message 2 (UDH+rest of the message):
esm_class = 0x40 x1xxxxxx
short_message = 0x05 0x00 0x03 0x05 0x02 0x02 26-year-old Spain midfielder was booked in the quarter-final against Shakhtar Donetsk, meaning he missed the return leg but would then be available.
Concatenation UDH structure:
Remark: The maximum number of characters per concatenated message depends on the encoding:
153 characters for 7-bit encoding (e.g. Latin-1/9 and GSM8)
134 characters for 8-bit encoding (Binary)
67 characters for 16-bit encoding (Unicode)