Hello All, I am trying to send concatenated message using sql box using udh and text.
If i use kannel xml post or xml post headers concatenated messages are sent and delivered properly. while using sql box if we do not add udh and send url encoded long message like the follows its sent properly: INSERT INTO send_sms ( sql_id, momt, sender, receiver, msgdata, sms_type, smsc_id,dlr_url,dlr_mask,coding) VALUES ( 1212132,'MT', 'sender', '2782xxxxxxx','Barcelona%20are%20to%20appeal%20against%20Uefa%27s%20proposal%20to%20ban%20Andres%20Iniesta%20for%20an%20additional%20Champions%20League%20match%20for%20allegedly%20provoking%20a%20yellow%20card.The%2026-year-old%20Spain%20midfielder%20was%20booked%20in%20the%20quarter-final%20against%20Shakhtar%20Donetsk%2C%20meaning%20he%20missed%20the%20return%20leg%20but%20would%20then%20be%20available.', 2,'smsc',31,0); But if we add udh and send concatenated message as the follows then it delivers messages separately i.e. its not combining that message into one. Here is my insert query INSERT INTO send_sms ( sql_id, momt, sender, receiver,udhdata, msgdata, sms_type, smsc_id,dlr_mask) VALUES ( 10121,'MT', 'senderId', '2782xxxxxxx', '%05%00%03%0e%02%01','Barcelona%20are%20to%20appeal%20against%20Uefas%20proposal%20to%20ban%20Andres%20Iniesta%20for%20an%20additional%20Champions%20League%20match%20for%20allegedly%20provoking%20a%20yellow%20card.The', 2,'smsc',31); INSERT INTO send_sms ( sql_id, momt, sender, receiver,udhdata, msgdata, sms_type, smsc_id,dlr_url,dlr_mask) VALUES (9204116,'MT', '27820070120 ', '2782xxxxxxx', '%05%00%03%0e%02%02','26-year-old%20Spain%20midfielder%20was%20booked%20in%20the%20quarter-final%20against%20Shakhtar%20Donetsk%2C%20meaning%20he%20missed%20the%20arcelona%20are%20to%20appeal%20against%20Uefa%27s%20proposal%20to%20ban%20Andres%20Iniesta%20for%20an%20additional%20Champions%20League%20match%20for%20allegedly%20provoking%20a%20yellow%20card.Thereturn%20leg%20but%20would%20then%20be%20available', 2,'smsc',31); I need to send concatenated messages with udh and not depend on kannel's concatenation. Is there anything wrong with the above queries or i need to add some more parameters?