Fwd: Unicode Message is not Delivered properly on cell phones

2015-03-27 Thread Ammar Ali
Hello Everyone, When I'm sending UNICODE message through URL like: http://192.168.1.1:15010/cgi-bin/sendsms?username=tester2&password=tester2&to=9039238251&text=%E0%A4%AF%E0%A4%B9%20%E0%A4%B8%E0%A4%A8%E0%A5%8D%E0%A4%A6%E0%A5%87%E0%A4%B6%20%E0%A4%B9%E0%A5%88&from=454545&coding=2&charset=utf-8 It

RE: sms-service group is mandatory ??

2015-03-27 Thread Ajay Patel
Can anyone help me for below !!! Thanks & Regards, Ajay Patel From: Ajay Patel [mailto:ajay.pa...@elitecore.com] Sent: Wednesday, March 18, 2015 6:18 PM To: 'users@kannel.org' Subject: sms-service group is mandatory ?? Hi All, I have read many places that there should be 1 default

Re: Unicode Message is not Delivered properly on cell phones

2015-03-27 Thread spameden
2015-03-27 13:52 GMT+03:00 Ammar Ali : > Hello Everyone, > > When I'm sending UNICODE message through URL like: > > > http://192.168.1.1:15010/cgi-bin/sendsms?username=tester2&password=tester2&to=9039238251&text=%E0%A4%AF%E0%A4%B9%20%E0%A4%B8%E0%A4%A8%E0%A5%8D%E0%A4%A6%E0%A5%87%E0%A4%B6%20%E0%A4%B

Re: Unicode Message is not Delivered properly on cell phones

2015-03-27 Thread Ammar Ali
Hello Spameden, Yes, I'm currently use latest Kannel Version 1.4.4. I'm inserting this values in sqlbox_send_sms table: *momt=MTsender=123456receiver=9123456msgdata="unicode message"smsc_id=smsc1sms_type=2coding=2dlr_mask=31alt_dcs=1* *charset=utf-8* I notice one thing, when I'm inse

Re: Unicode Message is not Delivered properly on cell phones

2015-03-27 Thread spameden
msgdata needs to be urlencoded, you can use urlencode() php function to do this. 2015-03-27 16:04 GMT+03:00 Ammar Ali : > Hello Spameden, > > Yes, I'm currently use latest Kannel Version 1.4.4. I'm inserting this > values in sqlbox_send_sms table: > > > > > > > > > > > *momt=MTsender=123456receiv

Re: Unicode Message is not Delivered properly on cell phones

2015-03-27 Thread Ammar Ali
I also use this urlencode function for encoding but not getting proper message on cell phone. On Fri, Mar 27, 2015 at 6:49 PM, spameden wrote: > msgdata needs to be urlencoded, you can use urlencode() php function to do > this. > > 2015-03-27 16:04 GMT+03:00 Ammar Ali : > >> Hello Spameden, >> >

Re: Unicode Message is not Delivered properly on cell phones

2015-03-27 Thread Ammar Ali
Hello Spameden, I have one more issue regarding smsc connection to the kannel. My smsc connections are going on reconnection mode again and again. This is my SMSC configuration in kannel group = smsc smsc = "smpp" smsc-id = "smsc1" log-file = "mysmsc1.log" log-level = "0" host = "***.***.***.***

dlr-url information

2015-03-27 Thread Nestor DuraƱona
Hi I'm new in kannel, and I want to know how can I gather all the information of the delivery report when I send a message from kannel to a cell phone. I want to save that information in a database. Thanks.

Re: Unicode Message is not Delivered properly on cell phones

2015-03-27 Thread spameden
2015-03-27 16:31 GMT+03:00 Ammar Ali : > Hello Spameden, > > I have one more issue regarding smsc connection to the kannel. My smsc > connections are going on reconnection mode again and again. > Most likely you have either a network issue or problem with upstream SMSC, contact your upstream SMSC

Re: Unicode Message is not Delivered properly on cell phones

2015-03-27 Thread Ammar Ali
Hello Spameden, This will be valid value for alt-charset in SMSC group in kannel configuration alt-charset = "ASCII;windows-1252;UTF-8;ISO-8859-1;ISO-8859-7;GSM;UTF-16BE" Thanks Ammar Ali On Fri, Mar 27, 2015 at 8:00 PM, spameden wrote: > > > 2015-03-27 16:31 GMT+03:00 Ammar Ali : > >> H

Re: Unicode Message is not Delivered properly on cell phones

2015-03-27 Thread spameden
Try using charset="utf8" and coding=2 it should work. No need to specify alt-charset in the kannel's configuration. 2015-03-27 17:39 GMT+03:00 Ammar Ali : > Hello Spameden, > > > This will be valid value for alt-charset in SMSC group in kannel > configuration > > alt-charset = "ASCII;windows-125

Re: Unicode Message is not Delivered properly on cell phones

2015-03-27 Thread Ammar Ali
Hello Spameden, I have checked my code as well as mysql data. Everything is fine because in sqlbox insert table 'send_sms' msgdata has been inserted with urlencoded properly. Because I have urldecode this msgdata, It gives me correct message that I have inserted into mysql send_sms table. So, Pl