Re: DLR mysql not supported

2011-01-11 Thread Atul Rastogi
Hi Thanks for reply But I recompiled the gateway as per option mentioned by you in last line it gives Configure error Unable to find mysql client libraries whereas i have checked mysql is installed and is working Pl suggest what to do Thanks Atul On Mon, Jan 10, 2011 at 2:04 AM,

Re: DLR mysql not supported

2011-01-11 Thread Alejandro Guerrieri
You need the mysql-dev package, not just the client application. Depending on your platform OS, it usuall involves installing an rpm or deb package. Regards, Alex On Tue, Jan 11, 2011 at 10:00 AM, Atul Rastogi atulra...@gmail.com wrote: Hi Thanks for reply But I recompiled the gateway as

mobile bookmarks and vcal message

2011-01-11 Thread Vijay Shanker Dubey
Hello friends, I have few questions about the capabilities of kannel. 1. Can it help me sending to mobile bookmark with full path - e.g. including nonexisting folder, in other words: is it possible to create folder while sending bookmark to mobile ? 2. sending vCal. Please give me some pointer

Re: DLR mysql not supported

2011-01-11 Thread Kazi M
Dear Atul , if after installing the devel package ... the problems still persists then try downloading lower versions of mysql i m using 4.22 Atul Rastogi wrote: I am running gateway150 with centos 5.5 in test setup while trying to setup for DLR storage I am getting message DLR

Re: issue with DLR and destination Field

2011-01-11 Thread Nikos Balkanas
Hi, I don't think that your patch was ever commited. I submitted the dlr patch adding support for dest numbers. This depends on the use_dest parameter which is turned on for emi cimd smscs. There was some discussion about having it configurable, but at the time that depended only on the

Re: DLR mysql not supported

2011-01-11 Thread Alejandro Guerrieri
It should work perfectly fine with any mysql version, as long as you have the proper packages and client libraries in place. Regards, Alex On Tue, Jan 11, 2011 at 2:20 PM, Kazi M m.a.a.z.k.a@gmail.com wrote: Dear Atul , if after installing the devel package ... the problems still

SMPP Binds not UP

2011-01-11 Thread Bob O'Souna
My setup is: OpenSMPPBox - BearerBox Despite all efforts, a particular SMSC cannot bind to mine. the error is ERROR: Error reading from fd 10: ERROR: System error 104: Connection reset by peer ERROR: Invalid SMPP PDU received. DEBUG: Thread 878 (opensmppbox.c:smpp_to_bearerbox) terminates.

RE: DLR mysql not supported

2011-01-11 Thread Rene Kluwen
I remember I had to upgrade my mysql to 5.0 or something like that, time ago. From: users-boun...@kannel.org [mailto:users-boun...@kannel.org] On Behalf Of Alejandro Guerrieri Sent: Tuesday, 11 January, 2011 18:04 To: Kazi M Cc: users@kannel.org Subject: Re: DLR mysql not supported It

RE: SMPP Binds not UP

2011-01-11 Thread Rene Kluwen
Looks like an error on the remote end. Which is the smpp client? And what are their settings? == Rene -Original Message- From: users-boun...@kannel.org [mailto:users-boun...@kannel.org] On Behalf Of Bob O'Souna Sent: Tuesday, 11 January, 2011 18:53 To: users@kannel.org Subject: SMPP

Re: SMPP Binds not UP

2011-01-11 Thread Bob O\'Souna
Rene Kluwen rene.kluwen at chimit.nl writes: Looks like an error on the remote end. Which is the smpp client? And what are their settings? == Rene -Original Message- From: users-bounces at kannel.org [mailto:users-bounces at kannel.org] On Behalf Of Bob O'Souna Sent: Tuesday,

RE: SMPP Binds not UP

2011-01-11 Thread Rene Kluwen
system-id should be set to usern on the remote end. But not sure if this is your problem. == Rene -Original Message- From: users-boun...@kannel.org [mailto:users-boun...@kannel.org] On Behalf Of Bob O\'Souna Sent: Tuesday, 11 January, 2011 21:11 To: users@kannel.org Subject: Re: SMPP

Re: SMPP Binds not UP

2011-01-11 Thread Bob O\\\'Souna
Rene Kluwen rene.kluwen at chimit.nl writes: system-id should be set to usern on the remote end. But not sure if this is your problem. == Rene -Original Message- From: users-bounces at kannel.org [mailto:users-bounces at kannel.org] On Behalf Of Bob O\'Souna Sent: Tuesday,

RE: SMPP Binds not UP

2011-01-11 Thread Rene Kluwen
Probably, they are not using ssl. The sequence number is quite odd, so to see... for a first bind. But should also not be a problem. -Original Message- From: users-boun...@kannel.org [mailto:users-boun...@kannel.org] On Behalf Of Bob O\\\'Souna Sent: Tuesday, 11 January, 2011 21:34 To:

Error in sending sms to oversea mobile number by using Kannel gateway

2011-01-11 Thread Sambath Prum
I'm in Cambodia, and I'm currently able to use kannel gateway to send sms to local mobile numbers. However, I run into an error why trying to send SMS to oversea mobile number (Singapore mobile number). If I take out my sim card and place into a phone, I'm able to send the SMS to oversea. The

Re: Error in sending sms to oversea mobile number by using Kannel gateway

2011-01-11 Thread Emmanuel CHANSON
Hello, Maybe you can try by url-encode your request: *** http://localhost:13013/cgi-bin/sendsms?username=testerpassword=foobarfrom=

Modem

2011-01-11 Thread atulrasto
How to configure modem to work as smsc for sending and receiving sms I have a nokia phone with usb cable can it work Pl help Sent from my BlackBerry® wireless device

Re: DLR mysql not supported

2011-01-11 Thread atulrasto
It worked with Yum groupistall MySQL Database Yum install mysql-devel And ./configure --with-mysql I don't know why these things are not in user guide Thanks all Atul Sent from my BlackBerry® wireless device -Original Message- From: Rene Kluwen rene.klu...@chimit.nl Sender:

Re: Error in sending sms to oversea mobile number by using Kannel gateway

2011-01-11 Thread Sambath Prum
Dear Emmanuel, Yes, it works. I can send the SMS now. I use SMSLib library to send the SMS. So which kind of ending I set in order to get %2B in the phone number. Below is my code snippet (C#) to send the SMS. Service service = new Service; KannelHTTPGateway gatway = new KannelHTTPGateway

Re: Error in sending sms to oversea mobile number by using Kannel gateway

2011-01-11 Thread Emmanuel CHANSON
I don't think it is linked to SMS encoding (ie UCS or 7bit or 8 bit or..) but it is URL encoding, I think you have to hard code the fact that + is replaced by %2B in your request. Emmanuel 2011/1/12 Sambath Prum psb.samb...@gmail.com Dear Emmanuel, Yes, it works. I can send the SMS now. I

Re: Modem

2011-01-11 Thread Emmanuel CHANSON
Depends what is your phone, what do you want to do with? For instance Nokia Nseries can't forward SMS to kannel (as I see) because it does not support 'AT+CNMI' command Nokia 6230 for instance works well with Kannel :) BR Emmanuel 2011/1/12 atulra...@gmail.com How to configure modem to work

bearerbox error

2011-01-11 Thread Harbhag Singh Sohal
I am not able to send sms and when I checked the bearerbox.log I got the following 2011-01-12 12:38:07 [15333] [7] DEBUG: sms_router: handling message (0x8c84ea8 vs 0x8c84ea8) 2011-01-12 12:38:07 [15333] [7] DEBUG: Message routed successfully. 2011-01-12 12:38:07 [15333] [7] DEBUG: sms_router:

Re: Error in sending sms to oversea mobile number by using Kannel gateway

2011-01-11 Thread Sambath Prum
Dear Emmanuel, I just hard code the encoding in my system, and it works fine now. I really appreciate your help. Thank you. Sambath On Wed, Jan 12, 2011 at 12:07 PM, Emmanuel CHANSON emmanuelchan...@gmail.com wrote: I don't think it is linked to SMS encoding (ie UCS or 7bit or 8 bit or..)