[smslib] Re: RxTx

2009-07-24 Thread Alex Anderson
Is there support for Java Comm API 3.0? Any ideas how it's different to version 2? On Jul 23, 11:15 am, Aryo Sanjaya wrote: > On Thu, Jul 23, 2009 at 16:43, Benjamin wrote: > > > Do we need to install this or only for linux user? > > If you are Windows user, you may use Java Comm V2, or use Rx

[smslib] Re: RxTx vs javax.comm - choose at runtime?

2009-09-11 Thread Alex Anderson
Brilliant! Thanks for the quick response, too :-) On Sep 10, 9:16 pm, Thanasis wrote: > Hello, > > Currently, SMSLib decides by reflection and uses whatever library is > available. Just make sure that only one of the two libraries is > installed! > > On Sep 10, 4:01 pm, Alex wrote: > > > > > H

[smslib] Re: SMSlib on J2ME

2009-09-28 Thread Alex Anderson
Hi, Scorpion is referring to JSR 120 - the Wireless Messaging API (WMA). This is the only way to send and receive SMS messages using J2ME. There is one fairly serious limitation of this API - it cannot read SMS from the standard inbox - SMS must specifically be sent to the application in questio

[smslib] Re: SMSlib on J2ME

2009-09-29 Thread Alex Anderson
ered by WTK in general.  If you develop > > application which is using the mobile specific API, for eg. Nokia API or > > Sony Ericsson API, like PIM packages, you can read SMS from INBOX or any SMS > > folders. > > And you can read from Service INBOX also. > > > On M

[smslib] Re: How to send more than 125 char message

2009-10-01 Thread Alex Anderson
Yes it is definitely possible. What problems are you having sending more than 125 characters? What device are you using? What is the content of the message? On Oct 1, 5:05 am, Resiak wrote: > Dear all, > > Can anyone help me to send more than 125 char message with smslib ? > > Thanks. --~--~-

[smslib] Re: Prb in decrypting message recieved on a mobile.

2009-10-11 Thread Alex Anderson
You could check out the BouncyCastle Lightweight API for encryption libraries for MIDlets: http://www.bouncycastle.org/java.html On Oct 9, 8:49 pm, Thanasis wrote: > Hi, > > The encryption process is described > here:http://code.google.com/p/smslib/wiki/SMSLib_Encryption > > The only way to dec

Re: [smslib] Digest for smslib@googlegroups.com - 1 Message in 1 Topic

2011-09-19 Thread Alex Anderson
Hi Jordan, Are you using SMSLib on Windows with Sun's serial API? If so, you might like to try a manual hack to reset the port list. I saw it on the Sun Java forums (now dead), but you can see details in the method CommUtils.getPortIdentifiers() here https://github.com/frontlinesms/frontlinesms-

Re: [smslib] Re: Device Logs

2011-11-28 Thread Alex Anderson
Hi Karol, That's great to know. I'm really hoping for a resource where many different people with different modems have all contributed full logs so that they can be collectively analysed and utilised. Alex On 28 November 2011 12:46, Karol Pancypir wrote: > If you preapare log4j configuration

Re: [smslib] Re: PDU decode

2011-12-07 Thread Alex Anderson
Hi Karol, Thanks for the link. Unfortunately the online translator is not able to decode this PDU. My understanding is as follows: 06000A81702095 : SMSC number (encoded) 77 : first byte MTI: Reserved Reject duplicate: set (what does this mean?) Validity period format: VP present as relat

Re: [smslib] Re: PDU decode

2011-12-07 Thread Alex Anderson
l/online-sms-status-report-pdu-decoder/ > > The PDU does not have an SMSC number attached, that is probably why > the decoder on twit88.com is not able to decode the PDU. > > Henk > > On Dec 7, 2:46 pm, Alex Anderson > wrote: >> Hi Karol, >> >> Thanks for the

Re: [smslib] Re: PDU decode

2011-12-08 Thread Alex Anderson
Certainly is, but adding 00 to a good PDU will break it :( Any suggestions how to tell when the additional 00 is required? On 8 December 2011 10:40, yuzhouliu2...@163.com wrote: > insert '00' to head > '06000A81702095772160329051E11121603290512100',it is change > 0006000A8170209577216032

Re: [smslib] Re: PDU decode

2011-12-08 Thread Alex Anderson
t; reports but this is not strictly necessary according to the GSM > standards. > > Henk > > On Dec 8, 9:38 am, Alex Anderson > wrote: >> Certainly is, but adding 00 to a good PDU will break it :(  Any >> suggestions how to tell when the additional 00 is required? >>

Re: [smslib] How to catch WaitCommEvent: Error 31 in the code

2011-12-08 Thread Alex Anderson
I don't think there's any way of actually capturing this output, or preventing it being added to stderr, but it should also be accompanied by an IOException which you can catch in the Java code. Happy to be corrected if I'm wrong! On 8 December 2011 12:45, smaran wrote: > If the modem is taken o

Re: [smslib] Wavecom FXT009 handler is going to production... soon

2011-12-20 Thread Alex Anderson
Hi Marcos, thanks for sharing your handler. I hope your project is a success. On 20 December 2011 14:19, Marcos Truchado wrote: > Hi all > > Just to let you know that starting this week my project, based in SMSLib > among other libs is under heavy test. It uses a Wavecom FXT009 as a gateway > wi

Re: [smslib] How to use SMSLIB in 64 bit windows 7 ultimate and other 64 bit platforms

2012-02-09 Thread Alex Anderson
Alternatively you should find you can use win32com.dll with a 32-bit JRE on a 64-bit OS. On 5 February 2012 17:46, T.Delenikas wrote: > There is an issue with Win x64 platforms. > Try to use the 64bit RxTx libraries described here: > http://smslib.org/doc/installation/#RxTx_Installation > > -- >

Re: [smslib] getting the text and sender id from the text

2012-04-02 Thread Alex Anderson
On 1 April 2012 16:45, chavo wrote: > 2.And then the other problem I am having is that the application reads > the same messages multiple times when I want them to be read only > once. How do I solve this? > Thanks a lot. Service.getInstance().readMessages(msgList, MessageClasses.ALL); will