RE: Kannel and Nokia 7160 ?

2002-01-14 Thread Jörg Pommnitz
This mostly depends on the TDMA SMS PDU format. If it differs from the GSM format, Kannel will not work. Regards Jörg -Original Message- From: Stipe Tolj To: Olivier Monreal Cc: [EMAIL PROTECTED] Sent: 1/12/02 12:15 PM Subject: Re: Kannel and Nokia 7160 ? Hi Olivier, > Does anybody k

Re: pthread/poll problem

2002-01-14 Thread Kalle Marjola
On Fri, 11 Jan 2002, Stipe Tolj wrote: > Nevertheless both sms and wap functionality seems very stable on > Cygwin. Andrea, can you expience the poll error messages on your > productive environment? Speaking about Cygwin, how fast it is? I mean, is there any big performance difference in linux v

RE: A question about PDU encoding in smsc_at2

2002-01-14 Thread Oded Arbel
Ok, this is where I have some problems : looking just at at2_pdu_encode(), I think the UDH never gets converted to 7 bit chars, but always remains as 8 bit chars. another question that is probably not related : on my Siemens M20, whenever I send a SM (using at2) which contains characters which sh

SMPP Delivery Report - why not handling esm_class 01?

2002-01-14 Thread Pedro Duque
Hi list Just wondering: In smsc_smpp.c, line 413(CVS version 13/Jan) we have: 413 if ((pdu->u.deliver_sm.esm_class == 0x02 || pdu->u.deliver_sm.esm_class == 0x04)) 414 { My question is: Why handling only esm_class 02 and 04? Isn't class 01 also a delivery receipt? Thank you

Re: Doing things easier - discussion

2002-01-14 Thread Tim Kehres
- Original Message - From: "Bruno David Rodrigues" <[EMAIL PROTECTED]> To: "Tim Kehres" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Monday, January 14, 2002 3:49 AM Subject: Re: Doing things easier - discussion > > I might be very well missing a few basic things here as I'm just g

http://www.kannel.3glab.org/

2002-01-14 Thread Andreas Fink
Whats wrong with the kannel website?? http://www.kannel.3glab.org/ returns the default apache test page! -- Andreas Fink Fink-Consulting -- Tel: +41-61-6932730 Fax: +41-61-6932729 Mobile: +41-79-2457333 Address: A. Fink, Schwar

Re: http://www.kannel.3glab.org/

2002-01-14 Thread David Holland
On Mon, Jan 14, 2002 at 11:45:11AM +0100, Andreas Fink wrote: > Whats wrong with the kannel website?? > http://www.kannel.3glab.org/ returns the default apache test page! When I upgraded the version of apache installed on the server this morning, rpm appears to have been a little over-enthusiast

emi2 test ?

2002-01-14 Thread Stefan Cars
Is there anyone developed any similar thing to test_cimd2 ? for emi2 ?

RE: emi2 test ?

2002-01-14 Thread Basar Koprucu
Hi! I am developing some kind of load tester, which will simulate emi2 (and some other) smsc(s). I want to distribute it, as soon as possible. First version will support emi2, but some functionalities (for example, don't know how it has to handle emi2_wait(),and operation 31 ) are missing... Doe

RE: emi2 test ?

2002-01-14 Thread Bernino Lind
Dear Mr. Koprucu, Hope you enjoy your day! Do you know about the SMPPsim project ? Its over at: http://www.mobilelandscape.co.uk/ Kind regards Bernino Lind -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Basar Koprucu Sent: 14. januar 2002 15:13 To: [

Re: A question about PDU encoding in smsc_at2

2002-01-14 Thread Alexei Pashkovsky
>(for example - the square > brackets which I like to use), the modem rejects the message with error > 304 "invalid PDU mode parameter". Well, this will probably hurt you, but I'm afraid square brackets are not part of GSM character set. At least I didn't see them there.

RE: A question about PDU encoding in smsc_at2

2002-01-14 Thread Oded Arbel
-Original Message- From: Alexei Pashkovsky [mailto:[EMAIL PROTECTED]] Sent: Monday, January 14, 2002 5:09 PM To: Oded Arbel Cc: Kannel-devel (E-mail) Subject: Re: A question about PDU encoding in smsc_at2 > >(for example - the square > > brackets which I like to use), the modem rejects th

Re: A question about PDU encoding in smsc_at2

2002-01-14 Thread Dave White
Alexei Pashkovsky wrote: >>(for example - the square >>brackets which I like to use), the modem rejects the message with error >>304 "invalid PDU mode parameter". >> > >Well, this will probably hurt you, but I'm afraid square brackets are not >part of GSM character set. >At least I didn't see the

RE: A question about PDU encoding in smsc_at2

2002-01-14 Thread Oded Arbel
This is not exactly what I had in mind - (a) as this kind of string would get translated by kannel to '?<' as ESC will be translated directly to '?'. (b) the GSM standards _currently_ do define the ESC sequences as valid. I'm not really worried about current standard support in phone (as newer pho

Binding as a transmitter only

2002-01-14 Thread Ronan Derby
Guys, Just wondering if there is any quick and easy way to have kannel only connect as a transmitter when using SMPP? Regards, Ronan.

RE: A question about PDU encoding in smsc_at2

2002-01-14 Thread Andreas Fink
>This is not exactly what I had in mind - (a) as this kind of string >would get translated by kannel to '?<' as ESC will be translated >directly to '?'. (b) the GSM standards _currently_ do define the ESC >sequences as valid. I'm not really worried about current standard >support in phone (as newe

RE: A question about PDU encoding in smsc_at2

2002-01-14 Thread Jörg Pommnitz
GSM 3.40 9.2.316 says: If the TP-User-Data is coded using the GSM 7 bit default alphabet, the TP-User-Data-Length field gives an integer representation of the number of septets within the TP-User-Data field to follow. If the 7bit default-alphabet extension mechanism is used within the TP-User-

Help with Ringtones....

2002-01-14 Thread Torbjorn Zetterlund
Title: Help with Ringtones Hi, I am new to kannel, but I find it being a great applications. I am trying to test a function that sends a ring tone to my Nokia Phone, the process is that I would have a website were I can select a ringtone. When selecting a ringtone the system would read a

RE: Binding as a transmitter only

2002-01-14 Thread Pedro Duque
I found no way to do it besides editing the code. If you remove (or comment) and add the following lines in smsc_smpp.c, it should work: conn->status = SMSCCONN_CONNECTING; smpp->transmitter = gwthread_create(io_thread, io_arg_create(smpp, 1)); (-)smpp->receiver = gwthread_create(io_t

timestamps with emi2

2002-01-14 Thread Angel Fradejas
I recently began to work with a EMI2 smsc link, and have a question about the calculation of the timestamps for the MO messges.   First, the code at smsc_emi2.c splits day,month,year, and so on, and then it takes the corresponding time_t by calling date_convert_universal.   The question is

RE: timestamps with emi2

2002-01-14 Thread Angel Fradejas
>>I think the problem is in de date.c function date_convert_universal: >>line 81: date += monthstart[t->month] * DAY; >>Shouldn't it be >>line 81: date += monthstart[t->month-1] * DAY; >>? >>Or am I doing something wrong? >>I need exacts timestamps because we have to do accounting fo the

(no subject)

2002-01-14 Thread Manish Nema
r/sir, i would like to know some help from your development am, can you please clarify my doubt i.e. What features should a wap gateway have for compatibility with WAP 1.1 and WAP 1.2 specification , and what features does the kannel have. as i m freelance programmer and want to know about