Re: Processing SMS (beginers question)

2005-06-24 Thread Heru Tjatur
On Fri, 2005-06-24 at 09:35 +0700, Ricky Wibowo wrote: Sorry I forgot to send you example log : conf : group = smsbox bearerbox-host = localhost smsbox-id = mysms sendsms-port = 13131 global-sender = 3345 sendsms-chars = 0123456789 +- log-file = /var/log/kannel/smsbox.log

Re: Processing SMS (beginers question)

2005-06-24 Thread Heru Tjatur
On Fri, 2005-06-24 at 15:06 +0700, Heru Tjatur wrote: On Fri, 2005-06-24 at 09:35 +0700, Ricky Wibowo wrote: Sorry I forgot to send you example log : conf : group = smsbox bearerbox-host = localhost smsbox-id = mysms sendsms-port = 13131 global-sender = 3345

RE: Processing SMS (beginers question)

2005-06-24 Thread Gulshan Babajee
Hi I've just downloaded the OpenSMPP application to be used as an smsc. My kannel configuration file looks as follows: # SMSC SMPP CONFIGURATION group = smsc smsc = smpp smsc-id = 1 host = 127.0.0.1 port = 13005 receive-port = 13005 smsc-username = sfr smsc-password = sfr2005 system-type = VMA

Re: Processing SMS (beginers question)

2005-06-24 Thread Ricky Wibowo
you must run SMSC Simulator and run at port 13005, with username and password in file users.txt Gulshan Babajee wrote: Hi I've just downloaded the OpenSMPP application to be used as an smsc. My kannel configuration file looks as follows: # SMSC SMPP CONFIGURATION group = smsc smsc = smpp

RE: Processing SMS (beginers question)

2005-06-24 Thread Gulshan Babajee
:17:10 [pavel] authenticated pavel 03:17:10 [pavel] server response: (bindresp: (pdu: 0 8001 0 31) Smsc Simulator) -Original Message- From: Ricky Wibowo [mailto:[EMAIL PROTECTED] Sent: Friday, June 24, 2005 2:58 PM To: Gulshan Babajee Cc: users@kannel.org Subject: Re: Processing SMS

Re: Processing SMS (beginers question)

2005-06-23 Thread Ricky Wibowo
I think your problem same with me... I cannot receive the message using SMPP protocol via SMSC Simulator (OpenSMPP) Any one can help us now?? the smsc (smpp) log, when receive sms : 2005-06-23 13:05:52 [1047] [7] DEBUG: SMPP[smsc_smpp]: Sending PDU: 2005-06-23 13:05:52 [1047] [7] DEBUG: SMPP

Re: Processing SMS (beginers question)

2005-06-23 Thread Heru Tjatur
Dear Jonas, You may try to use get-url instead of post-url. You should confirm that your url is capable of processing the incooming request (sms) and, of course, send reply to sms's sender. Hope this could help you --tjatur On Thu, 2005-06-23 at 10:13 +0300, Jonas Zaveckas wrote: Hello I

Re: Processing SMS (beginers question)

2005-06-23 Thread Jonas Zaveckas
On Thu, 2005-06-23 at 15:39 +0700, Heru Tjatur wrote: Dear Jonas, You may try to use get-url instead of post-url. You should confirm that your url is capable of processing the incooming request (sms) and, of course, send reply to sms's sender. How (and when?) I can confirm that my URL is

Re: Processing SMS (beginers question)

2005-06-23 Thread Jonas Zaveckas
After investigating source code (smsc_smpp.c) it seems that SMS message is discarded since there is no set destination_addr (NULL). This could mean that smsc simulator misbehaves somehow. On Thu, 2005-06-23 at 15:42 +0700, Ricky Wibowo wrote: In this case, my simulator when sent message, it

Re: Processing SMS (beginers question)

2005-06-23 Thread Ricky Wibowo
Why I just got log in the smsc log?? not in kannel.log?? i confuse about this... :( for sending is allright, but for receive using OpenSMPP, it can't work it should be... Maybe this is caused my program in get-url parameter didn't work?? Do you think so?? Is your application that you mention

Re: Processing SMS (beginers question)

2005-06-23 Thread Ricky Wibowo
Jonas Zaveckas wrote: On Thu, 2005-06-23 at 16:21 +0700, Ricky Wibowo wrote: Why I just got log in the smsc log?? not in kannel.log?? i confuse about this... :( for sending is allright, but for receive using OpenSMPP, it can't work it should be... If I send SMS from Web browser to

Re: Processing SMS (beginers question)

2005-06-23 Thread Ricky Wibowo
So... should we just try to connect to the operator now?? :-) My problem is only, how to fetch the incomin message and inject it to the MySQL database... Any idea to help me?? thank you very much Jonas Jonas Zaveckas wrote: On Thu, 2005-06-23 at 16:44 +0700, Ricky Wibowo wrote: Yes, log is

Re: Processing SMS (beginers question)

2005-06-23 Thread Heru Tjatur
On Thu, 2005-06-23 at 11:55 +0300, Jonas Zaveckas wrote: On Thu, 2005-06-23 at 15:39 +0700, Heru Tjatur wrote: Dear Jonas, You may try to use get-url instead of post-url. You should confirm that your url is capable of processing the incooming request (sms) and, of course, send reply to

Re: Processing SMS (beginers question)

2005-06-23 Thread Ricky Wibowo
in my simple coding called myCoding.php ? $a = $_GET['a']; $fp = fopen(/tmp/textfile_name.txt, w); fwrite($fp, $a); fclose($fp); ? and my sms-service config : group = sms-service keyword = default get-url = http://localhost/myCoding.php?a=%a catch-all = true send-sender = true

Re: Processing SMS (beginers question)

2005-06-23 Thread Heru Tjatur
On Thu, 2005-06-23 at 17:54 +0700, Ricky Wibowo wrote: in my simple coding called myCoding.php ? $a = $_GET['a']; $fp = fopen(/tmp/textfile_name.txt, w); fwrite($fp, $a); fclose($fp); ? and my sms-service config : group = sms-service keyword = default get-url =

Re: Processing SMS (beginers question)

2005-06-23 Thread Ricky Wibowo
Heru Tjatur wrote: On Thu, 2005-06-23 at 17:54 +0700, Ricky Wibowo wrote: in my simple coding called myCoding.php ? $a = $_GET['a']; $fp = fopen(/tmp/textfile_name.txt, w); fwrite($fp, $a); fclose($fp); ? and my sms-service config : group = sms-service keyword = default get-url =

Re: Processing SMS (beginers question)

2005-06-23 Thread Ricky Wibowo
Sorry I forgot to send you example log : conf : group = smsbox bearerbox-host = localhost smsbox-id = mysms sendsms-port = 13131 global-sender = 3345 sendsms-chars = 0123456789 +- log-file = /var/log/kannel/smsbox.log log-level = 0 access-log =