[smslib] Re: NoSuchPortException

2009-09-28 Thread Scorpion
What is COM Port assigned in your system? Before using smslib, try CommTest.java to identify the Port and baud rate configured in your system. Based on the result, change the Port name eg., SerialModemGateway gateway = new SerialModemGateway("modem.com5", "*COM5*", 115200, "SE", "K608i"); Hope t

[smslib] NoSuchPortException

2009-09-28 Thread Mozes H. Baottong
Hi all, I tried to make a java application using smslib : public static void main(String args[]) { try { SerialModemGateway gateway = new SerialModemGateway("modem.com5", "COM5", 115200, "SE", "K608i"); gateway.setInbound(true); gateway.setOutbound

[smslib] Re: SMSlib on J2ME

2009-09-28 Thread Scorpion
Alex,I think the cryptosms.org site will provide application used to send SMS in secure way. In this scenario, both the End must have this application to read / write secure sms. I think, am making sense. On Mon, Sep 28, 2009 at 8:21 PM, Scorpion wrote: > See, that is WMA packages offered by WTK

[smslib] Re: SMSlib on J2ME

2009-09-28 Thread Scorpion
See, that is WMA packages offered 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 Mon, Sep 28, 2009 at 4:51

[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: How to Delete Messages from Mobile

2009-09-28 Thread Thanasis
Use the deleteMessage() method of the Service object. On Sep 28, 10:01 am, Affan Yasin Chauhan wrote: > I also need help in this regard.. > > On Fri, Sep 25, 2009 at 7:22 PM, Raza wrote: > > > Hello, > > I created my own server which Reads and sends messages automatically. > > I want to delete

[smslib] Re: How to Delete Messages from Mobile

2009-09-28 Thread Affan Yasin Chauhan
I also need help in this regard.. On Fri, Sep 25, 2009 at 7:22 PM, Raza wrote: > > Hello, > I created my own server which Reads and sends messages automatically. > I want to delete the message from the mobile once it has been read by > my server. > > > your help/guidance will be highly apprecia