Re: How to find the modem and device type for a Cellphone?

2009-09-06 Thread Siddhartha` Adhikari
Hi Nikos, Thank you for the suggestions, however it seems neither dmesg works nor there is any messages in the var folders:(. Is wvdial compatible with Cygwin (guess it works with Linux only)? i downloaded one wvdial 1-6.0 but dnt know how to install(since root and etc are not there for Cygwin to

Re: How to find the modem and device type for a Cellphone?

2009-09-06 Thread Nikos Balkanas
Hi, Kannel runs under Cygwin. Cygwin should have its own device mapping for windows ports. You cannot access it through windows ports. If Cygwin has dmesg get device by: dmesg | grep tty If it has /var/log/messages or /var/adm/messages get it through: grep tty Else you can use wvdial to aut

Re: Send SMS with Siemens M20 on Linux

2009-09-06 Thread Nikos Balkanas
Hi, That's easy. To disable hardware control comment out the: enable-hwhs = "AT\\Q3" Please read user's guide on how to configure smsbox. BR, Nikos - Original Message - From: "Juxener" To: Sent: Sunday, September 06, 2009 11:03 PM Subject: Re: Send SMS with Siemens M20 on Linux

Re: How to find the modem and device type for a Cellphone?

2009-09-06 Thread Siddhartha` Adhikari
Thanks Nikos, It is configured at COM34. Now I went through the user guide and tried to set up my smskannel.conf and modems.conf as mentioned. However,starting the bearerbox gives errors i.e the device is not being recognised:- $ ./bearerbox -v 1 sidkannel.conf 2009-09-07 01:35:25 [3132] [0] INFO

Re: Send SMS with Siemens M20 on Linux

2009-09-06 Thread Juxener
Exactly, with 1,2,0,0,0, it works :) ! Thanx Nikos Balkanas. I just one error : 2009-09-06 23:43:32 [6227] [4] DEBUG: AT2[/dev/ttyS0]: --> AT\Q3^M 2009-09-06 23:43:32 [6227] [4] DEBUG: AT2[/dev/ttyS0]: <-- ERROR 2009-09-06 23:43:32 [6227] [4] ERROR: AT2[/dev/ttyS0]: Generic error: ERROR 2009-09-0

Re: Delivery reports as XML

2009-09-06 Thread Nikos Balkanas
Hi, No it doesn't. DLR just works with HTTP GET, which is forbitten to have any text. It doesn't support neither POST or POST-XML. But you can easily write a middleware at the receiving end, whereas upon receiving a DLR url with its arguments, it outputs the arguments in XML form. BR, Nikos

Re: How to find the modem and device type for a Cellphone?

2009-09-06 Thread Nikos Balkanas
Hi, How about going to the Hardware manager in Windows and look under driver. But I am sure you will find that it is a Nokia 5310, which you knew already. Maybe the question should be how to configure said modem to kannel. Open doc/examples/modems.conf. you can find an entry in there about Noki

Re: Send SMS with Siemens M20 on Linux

2009-09-06 Thread Nikos Balkanas
Hi, You could send AT commands from kannel from your previous mail from kannel. No need to pursue with minicom. Your problem now is your init-string. Copy your modem definition from group modems and modify it. Add: init-string = "AT+CNMI = " where is different than the offending default o

Re: How to find the modem and device type for a Cellphone?

2009-09-06 Thread Siddhartha` Adhikari
Thanks Kenny, However I am using Cygwin and Windows Vista. I should have mentioned it. And if I use the same command it doesnt work:( Is there any other command? Regards Siddhartha On Sun, Sep 6, 2009 at 7:58 PM, Kenny Orisanaiye wrote: > Hi, > > If you are using linux, you may type the foll

Re: Send SMS with Siemens M20 on Linux

2009-09-06 Thread Juxener
After trying, I can contact and send AT commands to my M20, with minicom. Juxener wrote: > > Thanx Nikos. > I can send SMS with Gnokii, with /dev/ttyS0 device. My modem works... > > But I've found my issue : with speed 19200, it's works (the speed > attribute was redefined with 9600...) ! It's

Re: How to find the modem and device type for a Cellphone?

2009-09-06 Thread Kenny Orisanaiye
Hi, If you are using linux, you may type the following command # wvdialconf /etc/wvdial.conf It will scan and display the list of all connected modems with their device name and other relevant details. -- Kenny e: ke...@nuobjects.com w: www.nuObjects.com Bulk SMS Solutions | Managed Hosting |

Re: How to pass parameters to the url using Kannel?

2009-09-06 Thread Alejandro Guerrieri
Have you _really_ read the userguide? On Sun, Sep 6, 2009 at 9:35 AM, Siddhartha` Adhikari wrote: > Hi, > > I have a simple application which accepts city as a parameter:- > > http://localhost:8080/Test/readCity.jsp?City=??? > > I need to pass the parameter at run time from Kannel. > The applicat

How to find the modem and device type for a Cellphone?

2009-09-06 Thread Siddhartha` Adhikari
Hi, I might be asking a very basic question, but wanted to know:- How to find the device and modem type for a cellphone? For e.g I am trying to use a Nokia 5310, how do i find the device and the modem type? Regards Siddhartha

How to pass parameters to the url using Kannel?

2009-09-06 Thread Siddhartha` Adhikari
Hi, I have a simple application which accepts city as a parameter:- http://localhost:8080/Test/readCity.jsp?City=??? I need to pass the parameter at run time from Kannel. The application would return a response back. a) How would the parameter be passed at runtime? b) How would I capture the re