Sending SMS from PC : alternatives

Sending SMS from PC : alternatives SearchSearch
Author Message
Serji
Unregistered guest
Posted on Tuesday, November 30, 2004 - 01:16 pm:   

hi forum,

I want to develop an app to send SMS from PC. I have been searching in google and I have read about SIEMENS GSM modems (TC35i, MC35i) and Wavecom modems.
-->What do u think about these GMS modems?
-->What modem do u recommend me?

Apart from this, I would like to programm the modem in a high-level programming languaje such as C++, C# or JAVA. i have read about JAVA APIs to send SMSes (JSMSengine , SMSJ, ...) or the Whisperstream SerialComm GSM SDK (to communicate with a GSM device via the host machine's serial port).
-->Anyone have got experience on this?
-->Can anyone suggest a good solution?

Thanks a lot!
Serji
Anonymous
 
Posted on Tuesday, November 30, 2004 - 03:51 pm:   

ummm.. it seems JSMSengine is the best API for this purpose... isnt it?
wavecom Fastrack M1203a is supported but Siemens GMS modems arent.
indigosrr
Unregistered guest
Posted on Tuesday, February 22, 2005 - 07:13 am:   

how do i send and receive SMS using USB ports using java on the linux platform?
i hav been told to use javax.usb package but i hav been facing problems during its installation.
please help...i am using the Red hat 9 system(kernel 2.4.20)
Anonymous
 
Posted on Friday, May 06, 2005 - 07:38 am:   

Hi Forum,
I wish to send SMS through in the following conditions: (i) a web based real-time parameter changes
(ii) The machine trips (an electronic signal is made through Transducer)

How to do it


Forest Luo
New member
Username: Forest_luo

Post Number: 23
Registered: 04-2004
Posted on Friday, May 06, 2005 - 01:04 pm:   

I suggest you not using any API written by the others. Because there are some diffenent processing underbelow. It is better to control COM by yourslef.

I have maken a DLL driver too, you can try it. Just for experience. You can download it from www.simpleteam.com (named SimplePCConnect).

It supports WAP Push.
Aminux
Unregistered guest
Posted on Wednesday, July 13, 2005 - 11:38 am:   

Hi forum,

for any suggestion this is my code :



public class SmsPcGsm {

private String portSerie;
private String expediteur;
private String destinataire;
private String message;

public void setPort(String newPort){
this.portSerie=newPort;
}

public String getPort(){
return this.portSerie;
}

public void setExpediteur(String newExp){
this.expediteur=newExp;
}

public String getExpediteur(){
return this.expediteur;
}

public void setDestinataire(String newDest){
this.destinataire=newDest;
}

public String getDestinataire(){
return this.destinataire;
}

public void setMessage(String msg){
this.message=msg;
}

public String getMessage(){
return this.message;
}
/** Creates a new instance of SmsPcGsm */
public SmsPcGsm() {
this.setPort("COM4");
this.setDestinataire("+21268541817");
this.setExpediteur("Easynote");
this.setMessage("SMS envoyé depuis mon PC");

}
public static void main(String[] argv){
try{
SmsPcGsm inf=new SmsPcGsm();
SmsSender gsm=SmsSender.getGsmSender(inf.getPort());
gsm.sendTextSms(inf.getMessage(), inf.getDestinataire(),inf.getExpediteur());
}
catch (SmsException ex)
{

ex.printStackTrace();
}


}

}
Aminux
Unregistered guest
Posted on Wednesday, July 13, 2005 - 11:42 am:   

Hi forum

I m usin the SmsJ API, and when I run my program the exception "java.lang.NoClassDefFoundError: javax/comm/PortInUseException" is thrown....
I m usin a USB connection for Nokia 7610 mobile...
Thanks for any suggestion....
anjul agarwal
Unregistered guest
Posted on Wednesday, August 17, 2005 - 07:43 pm:   

i want to get my sms copied on to my pc within a text file as soon someone sends a sms.i am using nokia 7610 and its usb dku-2 data cable. as there is any way to do that.if yes please tell me as it is very neccessary for me and really helps in my project.i just wanna to copy each sms recieved on my phone to pc in text file as soon as it reaches. help me out please. thanking you
Anonymous
 
Posted on Sunday, August 21, 2005 - 01:58 pm:   

i want send sms with pic. free without money pls.thanks
Prabudda
Unregistered guest
Posted on Sunday, September 25, 2005 - 05:17 am:   

I'm developing a system which gets inputs through SMSs. So i want to read the SMS as soon i received it.and i want to send the reply to the sender also through the PC.I'm using Nokia 3120 and USB DKU data cable.Please let me know is there any way of doing this.This is very important for the completion of my digree.Please help.
Akash R Motwani
Unregistered guest
Posted on Monday, November 07, 2005 - 04:11 am:   

I have developed Application for reading the SMS's as soon as they r recevied using Nokia 3310 and Nokia Data Suite 3.0 connected to serial COM3 port using Java Communication API 3.0 .Now I want to shift to Java USB API I require help regarding pipe communication with USB devices through javax.usb
rajani
Unregistered guest
Posted on Monday, November 07, 2005 - 06:00 am:   

hi,
i want to develop an application for sending sms
from pc to 3310 nokia mobile through serial port.using java comm api i am able to send and recieve data from pc to serial port.actually the next part how to send sms to mobile from serial port i dont hava any idea.what should be done.shall any apis are needed or something else.i dont want to buy any software.are there are free softwares for implementing it.i want to do project in java .if u know the related information.pls help me its urgent.please send to my mail id.
nishant
Unregistered guest
Posted on Tuesday, January 24, 2006 - 02:36 am:   

hi friends
i want to sms using nokia3120 and dku5 cable. i am communicating with my mobile using at commands and hyperterminal.its giving OK responce for AT , but not executing any other command . ANYBODY PLEASE HELP AT nishant.bansal@rediffmail.com
Anuj
Unregistered guest
Posted on Tuesday, January 24, 2006 - 09:31 am:   

Hi, I want to send an SMS from PC to phone through USB cable. Can some body help in this. (Using javax.comm api's)
Noman
Unregistered guest
Posted on Tuesday, February 07, 2006 - 10:31 am:   

I want to recive mms in my pc or mobile transfer it through serial port like SMS by usin AT command set
Anonymous
 
Posted on Wednesday, February 08, 2006 - 07:20 am:   

I want to send SMS through the wavecom modem. I have tried sending SMS using the command AT+CMGS="Destination mobile no" through hyperterminal. But I am getting an error +CMS Error:500. Please give me some solution.
Anonymous
 
Posted on Friday, February 10, 2006 - 05:39 am:   

I want to send SMS through the wavecom modem. I have tried sending SMS using the command AT+CMGS="Destination mobile no" through hyperterminal. But I am getting an error +CMS Error:500. Please give me some solution. PLEASE HELP ME
Anonymous
 
Posted on Wednesday, February 15, 2006 - 12:52 am:   

Before using AT+CMGS, you must type AT+CMGF=1, AT+CSCA="your SMS Service Center"
AT+CMGS="mobile phone no"
Anonymous
 
Posted on Wednesday, February 22, 2006 - 06:11 pm:   

hi, I am not well
Anonymous
 
Posted on Saturday, March 04, 2006 - 11:44 am:   

check this site for sending sms through pc
http://ernakulam.sancharnet.in/benno/
Anonymous
 
Posted on Monday, March 06, 2006 - 06:59 pm:   

deleted by admin 64
laxman
Unregistered guest
Posted on Tuesday, March 07, 2006 - 06:12 am:   

i am using wavecom q2403 modem to send sms. whenever i am connted modem to pc the modem is not responding to the at commands and my pc os is windows 98 it will support .}
Anoop
Unregistered guest
Posted on Sunday, March 26, 2006 - 02:44 pm:   

Hi,i want to send sms from any mobile to pc automatically through USB port.Is there any mobile software that can do this/Plz help,mail me at anoopskm2002@yahoo.co.in
Anonymous
 
Posted on Thursday, April 20, 2006 - 06:43 am:   

how to make java based application for sending SMS from PC to nokia mobile phones using AT commands.Plz give me some referances from where i can find such codes as i m new to this things and so i m unaware.
Maaz
Unregistered guest
Posted on Sunday, April 30, 2006 - 05:41 am:   

I want to send and receive sms of siemes mobile in PC using the AT commands. Can any body help me in this
Anonymous
 
Posted on Thursday, June 01, 2006 - 07:21 am:   

CAn anybody help me how to write API that accesses Cell phone for SMS sending and receiving
Anonymous
 
Posted on Saturday, June 10, 2006 - 07:59 pm:   

Hi,i want to read sms from any mobile to a pc automatically through USB port.how can i do it
s_u
Unregistered guest
Posted on Monday, June 26, 2006 - 12:55 am:   

i want to know if i can make free sms from pc
please reply it is part of my GP project
Anonymous
 
Posted on Thursday, July 06, 2006 - 08:31 am:   

can any one tell me about the modem used in nokia 6680....
please tell me if possible
thank you
tas
Unregistered guest
Posted on Monday, July 10, 2006 - 11:54 am:   

hi
iam developing a sms application as a part of my graduation project,i succeed in sending SMS through AT command but my problem that i need to use java in sending SMS i tried so many package (smslib,simplewire and finally jsms) but i didnt get a successful compilation for any of my code although i've done all the instruction that mentioned with every packet..

1\i want some one to help me in my code
2\and i heard that i have to interface my gsm modem that iam using with the java code
but i dont know how

this is my e-mail address
tas137@hotmail.com}
dafa
New member
Username: Dafa

Post Number: 1
Registered: 08-2006
Posted on Friday, August 25, 2006 - 05:16 am:   

Dear All,

I've use now sms gateway with siemens gsm modem, and it's OK. And now i'll try to sending sms from pc by modem and telephone line from home, not a gsm phone. What should i do?

Thankyou so much.

DaFa
kigan khadka
New member
Username: Kigan

Post Number: 1
Registered: 12-2006
Posted on Wednesday, December 13, 2006 - 04:33 pm:   

hi forum
i am a new man in this programming field
and i am doing my graduate, i am going to do a project on sms voting using java but i don't know about the api to use .can anyone help me about using the api