RE: Message ID response from SMS Submit Request

2012-11-22 Thread satya
You already have that in %d I believe. Original Message Subject: Message ID response from SMS Submit Request From: Christopher Burke christopher.bu...@simulity.com Date: Fri, November 23, 2012 5:38 am To: "users@kannel.org" users@kannel.org Hi, Is it possible to get as a

Re: message id through sendsms url

2009-05-27 Thread Julien Buratto
Hi Piyush, if you are using smpp tlv and your carrier provides one, yes, otherwise you need to play with dlr-url and dlr-mask to customize your own sms messages with a specific id that you can track back when the dlr comes back from the smsc... Julien 2009/5/27 Piyush piy...@ibibo.com: Hi,

Re: message id through sendsms url

2009-05-27 Thread Alejandro Guerrieri
No, the request is asynchronous, you need to use DLR's instead. Regards, Alejandro On Wed, May 27, 2009 at 3:37 PM, Piyush piy...@ibibo.com wrote: Hi, Can it be possible to get message id instead of 0: accepted for delivery in response when I call sendsms url. Thanks in advance Piyush

RE: message id through sendsms url

2009-05-20 Thread Abdulraheem Obaisi
+0200 From: a...@drlinux.no To: piy...@ibibo.com; users@kannel.org Subject: Re: message id through sendsms url Piyush wrote: Hi, When I call... http://XX.XXX.X.XXX:13013/cgi-bin/sendsms?username=xpassword=xto=xxtext=hellofrom=xdlr-mask=31 it returns 0: accepted

Re: message id through sendsms url

2009-05-19 Thread Alejandro Guerrieri
Piyush, Sadly, you cannot do it like that. This is because Kannel operates asynchronously, so it won't be able to return the message id until the smsc has accepted it. Think about it: the link with the smsc could be down, yet kannel would accept the message (and place it in it's internal queue).

Re: message id through sendsms url

2009-05-19 Thread Arne K. Haaje
Piyush wrote: Hi, When I call... http://XX.XXX.X.XXX:13013/cgi-bin/sendsms?username=xpassword=xto=xxtext=hellofrom=xdlr-mask=31 it returns 0: accepted for delivery. But I want it to return message id. So that, later I can check out the status of the message in dlr through

Re: Message ID from SMPP MO

2008-12-30 Thread Nikos Balkanas
Using the from and to fields. These contain phone numbers in the case of MO, and can contain a uniquely generated number in the from field in the case of MT. BR, Nikos - Original Message - From: sangprabv sangpr...@gmail.com To: Kannel User users@kannel.org Sent: Tuesday, December

Re: Message ID from SMPP MO

2008-12-30 Thread sangprabv
- From: Nikos Balkanas nbalka...@gmail.com To: sangprabv sangpr...@gmail.com, Kannel User users@kannel.org Subject: Re: Message ID from SMPP MO Date: Tue, 30 Dec 2008 10:34:26 +0200 Mailer: Microsoft Outlook Express 6.00.2900.3138 Using the from and to fields. These contain phone numbers in the case

Re: Message ID from SMPP MO

2008-12-30 Thread Nikos Balkanas
...@gmail.com To: Nikos Balkanas nbalka...@gmail.com Cc: Kannel User users@kannel.org Sent: Tuesday, December 30, 2008 11:05 AM Subject: Re: Message ID from SMPP MO I don't see the solution here. How can you analyze just using sender and receiver parameters? 1 sender may sent many MO, then how do

Re: Message ID from SMPP MO

2008-12-30 Thread Falko Ziemann
users@kannel.org Sent: Tuesday, December 30, 2008 11:05 AM Subject: Re: Message ID from SMPP MO I don't see the solution here. How can you analyze just using sender and receiver parameters? 1 sender may sent many MO, then how do you know the MT for each MO if just using sender and receiver

Re: Message ID

2008-07-21 Thread seik
use the MO kannel_ID, or create your OWN unique ID as unique DLR id for each MT. then its simple sql to match them in case you use sqlbox and pgsql/oracle it is not so complicated task, dont know for sqlbox backed by mysql we went a bit further and patched the sqlbox in a view to inject some

Re: Message ID

2008-07-21 Thread Jovan Kostovski
2008/7/21 seik [EMAIL PROTECTED]: use the MO kannel_ID, or create your OWN unique ID as unique DLR id for each MT. then its simple sql to match them in case you use sqlbox and pgsql/oracle it is not so complicated task, dont know for sqlbox backed by mysql we went a bit further and

Re: Message ID

2008-07-19 Thread eduardo . raad
[EMAIL PROTECTED] Date: Fri, 18 Jul 2008 21:15:42 To: 'James Mubhoyi'[EMAIL PROTECTED]; users@kannel.org Subject: RE: Message ID Hello, Take a look on the sqlbox and the table structure, it should answer your question. regards -Original Message- From: James Mubhoyi [mailto:[EMAIL

RE: Message ID

2008-07-19 Thread info.ubichip
: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: vendredi 18 juillet 2008 23:05 To: info.ubichip; 'James Mubhoyi'; users@kannel.org Subject: Re: Message ID As far as I know there is no ID to relate mo and mt messages as they are generated from different modules (mo-smsc and sendsms). I have looked

Re: Message ID

2008-07-19 Thread James Mubhoyi
info.ubichip info.ubichip at free.fr writes: Hello, Take a look on the sqlbox and the table structure, it should answer your question. regards I hadn't looked sqlbox, I will definitely do so, thanks.

Re: Message ID

2008-07-19 Thread James Mubhoyi
info.ubichip info.ubichip at free.fr writes: I managed to make it by a simple idea, I assumed if someone send a sms through a specific route, it will come back through the same route, so I wrote a script using default sms service to search for the last SMS sent to this recipient, so I could

Re: Message ID

2008-07-19 Thread Jovan Kostovski
On Sat, Jul 19, 2008 at 10:47 AM, James Mubhoyi [EMAIL PROTECTED] wrote: info.ubichip info.ubichip at free.fr writes: I toyed with this idea but realised that it will only be the last message I will be able to trap. Only being able to trap the last message is the gotcha! I am trying to

RE: Message ID

2008-07-18 Thread info.ubichip
Hello, Take a look on the sqlbox and the table structure, it should answer your question. regards -Original Message- From: James Mubhoyi [mailto:[EMAIL PROTECTED] Sent: vendredi 18 juillet 2008 12:41 To: users@kannel.org Subject: Message ID Hi, I am fairly new to Kannel, and am

Re: Message ID for MT message DLR in kannel

2008-04-23 Thread Samir Ghodasara
Hi, I got the partial solution from forums like i can pass my message Id with dlr-url and So i can track the result. i am getting the response to submit_sm like.. SMSC returned error code 0x000b (Invalid Destination Address) in response to submit_sm. in my application i want the error code

RE: Message ID

2007-09-11 Thread ashwani
Hi, You can only get the message id once the message has been delivered/failed by SMSC. Try Capturing type from the delivery_sm PDU Regards Ashwani _ From: Jins [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 11, 2007 1:11 PM To: users@kannel.org Cc: Kenney Jacob

Re: Message ID

2007-09-11 Thread Vahid Ghafarpour
why you didn't implement to get it ad dlr-status=8? after sumbit_sm message id responded but it didn't sent to client? On 9/11/07, ashwani [EMAIL PROTECTED] wrote: Hi, You can only get the message id once the message has been delivered/failed by SMSC. Try Capturing type from the

Re: Message ID

2007-09-11 Thread Jins
which parameter should i use for that.My requirement is that i need to update the delivery status in my DB using that message id On 11/09/2007, Vahid Ghafarpour [EMAIL PROTECTED] wrote: why you didn't implement to get it ad dlr-status=8? after sumbit_sm message id responded but it didn't

Re: message-id

2007-03-20 Thread sangprabv
@kannel.org Sent: Monday, March 19, 2007 7:36 PM Subject: RE: message-id Hi Willy, with dlr I have a problem, half of users are cdma, and the operator have disabled dlr to this phones. Do you think in another alternative? Thanks, Mario

Re: message-id

2007-03-16 Thread sangprabv
Hi, Of course we can, just check the user guide in the dlr part. Regards Willy - Original Message - From: Mario Noboa To: users@kannel.org Sent: Saturday, March 17, 2007 4:42 AM Subject: message-id Hi List, Anybody knows how can I get the message.id that the

Re: Message ID higher than 2147483647

2006-06-04 Thread Mi Reflejo
: users@kannel.org Subject: Re: Message ID higher than 2147483647 Mi Reflejo wrote: Well. Actually the patch was mine ;) wups... need to correct the credits in ChangeLog then.. :) Stipe --- Kölner Landstrasse 419 40589 Düsseldorf

Re: Message ID higher than 2147483647

2006-06-04 Thread Stipe Tolj
Rene Kluwen wrote: Stipe, Are you maintaining a ChangeLog of the ChangeLog? ;) nop :], should I? ;) Stipe --- Kölner Landstrasse 419 40589 Düsseldorf, NRW, Germany tolj.org system architecture Kannel Software Foundation

Re: Message ID higher than 2147483647

2006-06-04 Thread Stipe Tolj
Mi Reflejo wrote: Heh, resentful attitude. ;) structural, yes... but unreal ;) Stipe --- Kölner Landstrasse 419 40589 Düsseldorf, NRW, Germany tolj.org system architecture Kannel Software Foundation (KSF)

Re: Message ID higher than 2147483647

2006-06-01 Thread Stipe Tolj
Ady Wicaksono wrote: Dear all on 32 bit system, we have max int 2^31 - 1 = 2147483647 (look at /usr/include/stdint.h) :# define INT32_MAX(2147483647) I have the problem with this, some of SMSC use hex/decimal pair. submit_sm_resp is using hexadecimal 2006-05-18 15:30:18

Re: Message ID higher than 2147483647

2006-06-01 Thread Stipe Tolj
Vincent CHAVANIS wrote: joke buy a 64bit server :-) /joke now, joking is only allowed if afterwards code analysis follows! :p Stipe --- Kölner Landstrasse 419 40589 Düsseldorf, NRW, Germany tolj.org system architecture

Re: Message ID higher than 2147483647

2006-06-01 Thread Mi Reflejo
There is a patch :) http://bugs.kannel.org/view_bug_advanced_page.php?f_id=345 Regards, M On 6/1/06, Stipe Tolj [EMAIL PROTECTED] wrote: Vincent CHAVANIS wrote: joke buy a 64bit server :-) /joke now, joking is only allowed if afterwards code analysis follows! :p Stipe

Re: Message ID higher than 2147483647

2006-06-01 Thread Stipe Tolj
Ady Wicaksono wrote: Dear all on 32 bit system, we have max int 2^31 - 1 = 2147483647 (look at /usr/include/stdint.h) :# define INT32_MAX(2147483647) I have the problem with this, some of SMSC use hex/decimal pair. submit_sm_resp is using hexadecimal 2006-05-18 15:30:18

Re: Message ID higher than 2147483647

2006-06-01 Thread Mi Reflejo
Well. Actually the patch was mine ;) M. On 6/1/06, Stipe Tolj [EMAIL PROTECTED] wrote: Ady Wicaksono wrote: Dear all on 32 bit system, we have max int 2^31 - 1 = 2147483647 (look at /usr/include/stdint.h) :# define INT32_MAX(2147483647) I have the problem with this,

Re: Message ID higher than 2147483647

2006-06-01 Thread Mi Reflejo
But all merits to Ady for show us the light ;) On 6/1/06, Mi Reflejo [EMAIL PROTECTED] wrote: Well. Actually the patch was mine ;) M. On 6/1/06, Stipe Tolj [EMAIL PROTECTED] wrote: Ady Wicaksono wrote: Dear all on 32 bit system, we have max int 2^31 - 1 = 2147483647 (look at

Re: Message ID higher than 2147483647

2006-06-01 Thread Stipe Tolj
Mi Reflejo wrote: Well. Actually the patch was mine ;) wups... need to correct the credits in ChangeLog then.. :) Stipe --- Kölner Landstrasse 419 40589 Düsseldorf, NRW, Germany tolj.org system architecture Kannel Software

RE: Message ID higher than 2147483647

2006-06-01 Thread Rene Kluwen
Stipe, Are you maintaining a ChangeLog of the ChangeLog? ;) -- ME -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Stipe Tolj Sent: vrijdag 2 juni 2006 1:15 To: Mi Reflejo Cc: users@kannel.org Subject: Re: Message ID higher than 2147483647 Mi Reflejo

(Solutions) Re: Message ID higher than 2147483647

2006-05-18 Thread Ady Wicaksono
Hahahaha That's not a solutions :D, I found a very simple solutions for this just now: cut here #include stdio.h int main(){ printf(B88B2856 = %lu\n,strtol(B88B2856,NULL,16)); printf(B88B2856 = %ld\n,strtoll(B88B2856,NULL,16)); printf(B88B2856 =