Send sms via java aplication

Hello i want to develop a java application that send sms what shell i do?
is there any kit or package that i can download and test it?

Hi, A few ways you can go.
Some Telecom services have a system that allows you to send emails to SMS phones. You'll have to contact the Telecom company to get it enabled, in order to prevent "spamming" peoples phones.
Some Telecoms have Web pages where you can fill out a form and send the message. You can simulate the HTTP message sent.
There are a few pay Web services that can be used if your Telecom doesn't offer these things.
Finally, you can read up on the TAP protocol, and use javacomm to send a message directly via serial port and modem to your Telecom. It's not that tough a protocol. This is the pre-Internet Age method.

Similar Messages

  • Problem in sending SMS via using java communication API

    I need to send SMS via my sony ericsson Z530i. It is connected to the com5 port of my system. I got the following code.
    import java.io.*;
    import java.util.BitSet;
    import javax.comm.*;
    import java.lang.*;
    public class SerialToGsm {
        InputStream in;
        OutputStream out;
        String lastIndexRead;
        String senderNum;
        String smsMsg;
        SerialToGsm(String porta) {
            try {
    //            CommPortIdentifier portId = CommPortIdentifier.getPortIdentifier("com5");
                CommPortIdentifier portId = CommPortIdentifier.getPortIdentifier(porta);
                SerialPort sp = (SerialPort)portId.open("Sms_GSM", 0);
                sp.setSerialPortParams(9600, SerialPort.DATABITS_8, SerialPort.STOPBITS_1, SerialPort.PARITY_NONE);
                sp.setFlowControlMode(sp.FLOWCONTROL_NONE);
                in = sp.getInputStream();
                out = sp.getOutputStream();
                // modem reset
                sendAndRecv("+++AT", 30);       // delay for 20 sec/10
                sendAndRecv("AT&F", 30);
                sendAndRecv("ATE0", 30);        // echo off
                sendAndRecv("AT +CMEE=1", 30);  // verbose error messages
                sendAndRecv("AT+CMGF=0", 70);   // set pdu mode
    //            sendAndRecv("AT V1E0S0=0&D2&C1", 1000000);
            catch (Exception e) {
                System.out.println("Exception " + e);
             System.exit(1);
        private String sendAndRecv(String s, int timeout) {
            try {
                // clean serial port input buffer
                in.skip(in.available());
                System.out.println("=> " + s);
                s = s + "\r";         // add CR
                out.write(s.getBytes());
                out.flush();           
                String strIn = new String();
                for (int i = 0; i < timeout; i++){
                    int numChars = in.available();
                    if (numChars > 0) {
                        byte[] bb = new byte[numChars];
                        in.read(bb,0,numChars);
                        strIn += new String(bb);
                    // start exit conditions
                    if (strIn.indexOf(">\r\n") != -1) {
                        break;
                    if (strIn.indexOf("OK\r\n") != -1){
                        break;
                    if (strIn.indexOf("ERROR") != -1) { // if find 'error' wait for CR+LF
                        if (strIn.indexOf("\r\n",strIn.indexOf("ERROR") + 1) != -1) {
                            break;                                            
              Thread.sleep(100); // delay 1/10 sec
                System.out.println("<= " + strIn);
                if (strIn.length() == 0) {
                    return "ERROR: len 0";
                return strIn;
            catch (Exception e) {                 
                System.out.println("send e recv Exception " + e);
                return "ERROR: send e recv Exception";
        public String sendSms (String numToSend, String whatToSend) {
            ComputeSmsData sms = new ComputeSmsData();
            sms.setAsciiTxt(whatToSend);
            sms.setTelNum(numToSend);
    //        sms.setSMSCTelNum("+393359609600");  // SC fixed
            String s = new String();
            s = sendAndRecv("AT+CMGS=" + (sms.getCompletePduData().length() / 2) + "\r", 30);
    //        System.out.println("==> AT+CMGS=" + (sms.getCompletePduData().length() / 2));
    //        System.out.println("<== " + s);
            if (s.indexOf(">") != -1) {
    //            s = sendAndRecv(sms.getSMSCPduData() + sms.getCompletePduData() + "\u001A"); // usefull one day?
    //            System.out.println("Inviero questo >>>> " + sms.getCompletePduData());
                   // if this sintax won't work try remove 00 prefix
                s = sendAndRecv("00" + sms.getCompletePduData() + "\u001A", 150);
    //            System.out.println("<== " + s);
                return s;
            else {
                return "ERROR";
        // used to reset message data
        private void resetGsmObj() {
            lastIndexRead = null;
            senderNum = null;
            smsMsg = null;
        public String checkSms (){
            String str = new String();
            String strGsm = new String();                         
            strGsm = sendAndRecv("AT+CMGL=0", 30);  // list unread msg and sign them as read
            // if answer contain ERROR then ERROR
            if (strGsm.indexOf("ERROR") != -1) {
                resetGsmObj();
                return strGsm; // error
            strGsm = sendAndRecv("AT+CMGL=1", 30);  // list read msg
            // if answer contain ERROR then ERROR
            if (strGsm.indexOf("ERROR") != -1) {
                resetGsmObj();
                return strGsm; // error
            // evaluate message index
            if (strGsm.indexOf(':') <= 0) {
                resetGsmObj();
                return ("ERROR unexpected answer");
            str = strGsm.substring(strGsm.indexOf(':') + 1,strGsm.indexOf(','));
            str = str.trim(); // remove white spaces
    //        System.out.println("Index: " + str);
            lastIndexRead = str;
            // find message string
            // look for start point (search \r, then skip \n, add and one more for right char
            int startPoint = strGsm.indexOf("\r",(strGsm.indexOf(":") + 1)) + 2;
            int endPoint = strGsm.indexOf("\r",startPoint + 1);
            if (endPoint == -1) {
                // only one message
                endPoint = strGsm.length();
            // extract string
            str = strGsm.substring(startPoint, endPoint);
            System.out.println("String to be decoded :" + str);
            ComputeSmsData sms = new ComputeSmsData();
            sms.setRcvdPdu(str);
    //        SMSCNum = new String(sms.getRcvdPduSMSC());
            senderNum = new String(sms.getRcvdSenderNumber());
            smsMsg = new String(sms.getRcvdPduTxt());
            System.out.println("SMSC number:   " + sms.getRcvdPduSMSC());
            System.out.println("Sender number: " + sms.getRcvdSenderNumber());
            System.out.println("Message: " + sms.getRcvdPduTxt());
            return "OK";
        public String readSmsSender() {
            return senderNum;
        public String readSms() {
            return smsMsg;
        public String delSms() {  
            if (lastIndexRead != "") {               
                return sendAndRecv("AT+CMGD=" + lastIndexRead, 30);
            return ("ERROR");
    }When i compile, there is no error. But when i execute it, the following error comes:
    E:\java\JavaSmsApi>javac SerialToGsm.java
    E:\java\JavaSmsApi>java SerialToGsm
    Exception in thread "main" java.lang.NoSuchMethodError: main
    What might be the error? Somebody help me. Thanks in advance.

    You are probably trying to run this as a CLDC application instead of a MIDP application (aka a MIDLet). Since CLDC apps start with a main(....) your runtime looks for one but does not find it, hence the error. Please recheck the project configuration.

  • How to send sms through java program?

    hi,
    i am trying to send sms through java program.i am usining ubuntu 6.04.i am using modem MC35i.i use the jSMSEnjine.jar and rxtxcomm.jar.
    these are the following program.
    import org.jsmsengine.*;
    import java.util.*;
    class SendMessage
         public static void main(String[] args)
              int status;
              // Create jSMSEngine service.
         CService srv = new CService("Com2",9600);
              //CService srv = new CService("COM2",9600);
              System.out.println();
              System.out.println("SendMessage(): sample application.");
              System.out.println(" Using " + srv._name + " " + srv._version);
              System.out.println();
              try
                   //     Initialize service.     
                   srv.initialize();
                   Thread thread =Thread.currentThread();
                   thread.sleep(1000);
                   System.out.println(srv);
                   //     Set the cache directory.
                   srv.setCacheDir(".\\");
                   //     Set the phonebook.
                   //     srv.setPhoneBook("../misc/phonebook.xml");
                   //     Connect to GSM device.
                   status = srv.connect();
                   //     Did we connect ok?
                   int st=CService.ERR_OK;
                   System.out.println(st);
                   System.out.println(status);
                   if (status == CService.ERR_OK)
                        //     Set the operation mode to PDU - default is ASCII.
                        srv.setOperationMode(CService.MODE_PDU);
                        // Set the SMSC number (set to default).
                        srv.setSmscNumber("");
                        //     Print out GSM device info...
                        System.out.println("Mobile Device Information: ");
                        System.out.println("     Manufacturer : " + srv.getDeviceInfo().getManufacturer());
                        System.out.println("     Model : " + srv.getDeviceInfo().getModel());
                        System.out.println("     Serial No : " + srv.getDeviceInfo().getSerialNo());
                        System.out.println("     IMSI : " + srv.getDeviceInfo().getImsi());
                        System.out.println("     S/W Version : " + srv.getDeviceInfo().getSwVersion());
                        System.out.println("     Battery Level : " + srv.getDeviceInfo().getBatteryLevel() + "%");
                        System.out.println("     Signal Level : " + srv.getDeviceInfo().getSignalLevel() + "%");
                        //     Create a COutgoingMessage object and dispatch it.
                        //     *** Please update the phone number with one of your choice ***
    // String smsLengthTest="Hi"+"\nTesting is going on.Test for sending unlimited number of charecter.So you will get N number of SMS.Initially I trancate the whole string by 70 charecter.Later I will put it upto 90 charecter.Some chararecter should kept for header portion.I don't know the total number.It is just test.If you got the sms u should appreciate me...This is Ripon...I have written sms program";
    String smsLengthTest="Hi\n"+"This is Govindo";
    int mao=smsLengthTest.length();
    System.out.println("Length of sms :"+mao);
    String smsNo="9433314095";
    smsNo="+91"+smsNo;
    if(mao<70)
    COutgoingMessage msg = new COutgoingMessage(smsNo,smsLengthTest);
    //     Character set is 7bit by default - lets make it UNICODE :)
    //     We can do this, because we are in PDU mode (look at line 63). When in ASCII mode,
    //          this does not make ANY difference...
    msg.setMessageEncoding(CMessage.MESSAGE_ENCODING_UNICODE);
    if (srv.sendMessage(msg) == CService.ERR_OK) System.out.println("Message Sent!");
    else System.out.println("Message Failed!");
    else
    // COutgoingMessage msg = new COutgoingMessage(smsNo,smsLengthTest);
    // LinkedList messageList;
    // messageList = new LinkedList();
    // messageList.add(msg);
    // LinkedList maooo=new LinkedList();
    // maooo=srv.splitLargeMessages(messageList);
    int sizelength=0;
    int counter=0;
    sizelength=smsLengthTest.length();
    System.out.println("SMS length :"+sizelength);
    int smsCntr=sizelength/70;
    System.out.println("smsCntr :"+smsCntr);
    counter=smsCntr+1;
    int j=70;
    int k=0;
    try
    for(int i=0;i<smsCntr;i++)
    String test="";
    test=test+i;
    test=smsLengthTest.substring(k,j);
    System.out.println(test);
    System.out.println(test.length());
    COutgoingMessage msg = new COutgoingMessage(smsNo, test);
    System.out.println("hi this is suman" + smsNo);
    //     Character set is 7bit by default - lets make it UNICODE :)
    //     We can do this, because we are in PDU mode (look at line 63). When in ASCII mode,
    //          this does not make ANY difference...
    msg.setMessageEncoding(CMessage.MESSAGE_ENCODING_UNICODE);
    if (srv.sendMessage(msg) == CService.ERR_OK) System.out.println("Message Sent!");
    else System.out.println("Message Failed!");
    k=k+70;
    j=j+70;
    catch(Exception e)
    System.out.println("Error...1");
    e.printStackTrace();
    e.getMessage();
    String lastPortion=smsLengthTest.substring(k);
    System.out.println(lastPortion);
    COutgoingMessage msg = new COutgoingMessage(smsNo, lastPortion);
    //     Character set is 7bit by default - lets make it UNICODE :)
    //     We can do this, because we are in PDU mode (look at line 63). When in ASCII mode,
    //          this does not make ANY difference...
    msg.setMessageEncoding(CMessage.MESSAGE_ENCODING_UNICODE);
    if (srv.sendMessage(msg) == CService.ERR_OK) System.out.println("Message Sent!");
    else System.out.println("Message Failed!");
                        // Disconnect from GSM device.
                        srv.disconnect();
                   else System.out.println("Connection to mobile failed, error: " + status);
              catch (Exception e)
                   e.printStackTrace();
              System.exit(0);
    the error is:
    SendMessage(): sample application.
    Using jSMSEngine API 1.2.6 (B1)
    org.jsmsengine.CService@addbf1
    0
    -101
    Connection to mobile failed, error: -101
    please help me,its very urgent.

    come back in about 5 years, we may have time for you by then.
    In the meantime, how about contacting the people who wrote that library and asking them nicely for help (rather than trying to order people to drop whatever they're doing and jump through hoops to accommodate your every wish as you're doing here)?

  • Sending SMS via Bluetooth not working

    Hi,
    I have two Nokia phones, an N73 and an older 6600. I was able to pair both with the Bluetooth in my MacBook Pro SR.
    I can access the web via dial-up networking, so that's working fine.
    However, I am unable to send SMS via AddressBook over the phone. When I click the little connect-to-bluetooth button in AddressBook, I am first asked to pair the phone - even though it's already paired, and connects automatically on both the computer and the phone. Then, when I do enter the code on the phone, the connection just fails. The button gets a slight blue outline but the B symbol doesn't actually light up as it should.
    Send SMS remains grayed out.
    Has anybody got this to work or know what could be wrong?
    PS: I am able to send SMS on Windows using MS SMS Sender, so I am sure that it's not the phone's fault.
    This worked fine with my Titanium Powerbook with USB Bluetooth dongle.

    Thanks for the response, but that's not it. The N73 is listed as supported, and iSync works perfectly well. Dial-Up networking also works perfectly well.
    Only sending SMS via bluetooth doesn't work.
    Also - no idea if this is related - faxing via the 6600 doesn't work anymore, which is strange because it used to work on the TiBook. Most people don't even know you can fax via Bluetooth phone and most newer phones have lost this capability so I guess this is just on its way out. Too bad because it was pretty useful...

  • Best app for send sms via email?

    Anyone got any idea what the best app is to download to send sms via email?
    I downloaded text-free yesterday, but doesnt work and the message keeps bouncing back to my email in box as a failed mail delivery!!
    I am in the UK in case that makes a difference!!

    If you want to text people for free, i highly recommened AIM application. Its an IM app built in with an feature that allows you to text anyone on your contacts for free. Just let them know that its you texting them the first time.

  • Is it possible to send SMS through java

    Hi all
    I m a student and as a part of my project I need to create an SMS server(SMS gateway). Can we send SMS through Java and if yes then send me the code for the same . Also on which GSM Modem will it Work , I've heard about Nokia GSM Modem N32. Kindly Guide me regarding the Same.
    Regards
    MoComp

    Hi all
    I m a student and as a part of my project I need to
    create an SMS server(SMS gateway). Can we send SMSSo YOU need to write it.
    through Java and if yes then send me the code for theIt's possible, as there are several commercial offerings out there.
    But as YOU need to write it it won't do for you to try and trick someone else into writing it so you can submit it as your own.
    same . Also on which GSM Modem will it Work , I've
    heard about Nokia GSM Modem N32. Kindly Guide me
    regarding the Same.All depends on how you implement it.
    A real server would have its own hardware and software to pipe directly into the network of a telco, and a contract with that telco to use their network to send messages.

  • Send SMS via web

    I am trying to make a java code that sends SMS using a website that offers free SMS http://www.starhub.com.sg/starfun/index.asp
    my code is as following:-
    import java.net.*;
    import java.io.*;
    import java.util.*;
    public class printMIMEHeader {
    public static void main(String args[]) {
    URL u;
    URLConnection uc;
    String header;
    try {
    u = new URL("http://www.starhub.com.sg/starfun/index.asp");
    uc = u.openConnection();
    for (int j = 1; ; j++) {
    header = uc.getHeaderField(j);
    if (header == null) {
    break;
    System.out.println(uc.getHeaderFieldKey(j) + " " + header);
    } // end for
    String setCookie = uc.getHeaderField("Set-Cookie");
    System.out.println(" " + setCookie);
    int index = setCookie.indexOf(";");
    if (index >= 0) {
    setCookie = setCookie.substring(0, index);
    System.out.println(" " + setCookie);
    u = new URL("http://www.starhub.com.sg/servlet/SMSServlet");
    uc = u.openConnection();
    uc.setRequestProperty("Cookie", setCookie);
    uc.setRequestProperty("referer","/d3fault.asp");
    uc.setRequestProperty("mobile", "91910069");
    uc.setRequestProperty("msg", "hi");
    uc.setRequestProperty("SendSMS","Send SMS");
    BufferedReader in = new BufferedReader(new InputStreamReader(uc.
    getInputStream()));
    int c;
    while ( (c = in.read()) != -1) {
    System.out.print( (char) c);
    in.close();
    } // end try
    catch (MalformedURLException e) {
    System.err.println("This is not a URL I understand." + e);
    catch (IOException e) {
    System.err.println(e);
    //} // end for
    } // end main
    } // end printMIMEHeader
    I am getting the following exception:-
    This is not a URL I understand.java.net.MalformedURLException: no protocol: nullPlea
    se%20sent%20your%20sms%20thru'%20our%20website.
    well it is quite clear that this website is not allowing to POST request thru java code and forces us to visit their website. I just want to know if there is some work around for this problem.
    ne help is appreciatedm, thanx in advance.
    cheers,
    deb

    Heres what i found from sum previous forums for ur reference
    http://forum.java.sun.com/thread.jsp?forum=29&thread=33055
    For Sending SMS through Java Program, u can refer to an open source website (SMS Gateway) such as:
    http://kannel.org
    Currently there is no service provider which lets u send SMS free of cost. If u r really inclined on sending SMS then u can visit site:
    http://www.simplewire.com
    (But I think they have also made it as paid service atleast for India users)
    You have to first register in this site. After registration it will give you subscriber_id & password. Download the API for sending SMS and put the jar files in classpath.
    I am also attaching a small program which sends SMS for your reference:
    import com.simplewire.sms.*;
    public class send_text
    public static void main(String[] args) throws Exception
    SMS sms = new SMS();
    // Subscriber Settings
    sms.setSubscriberID("225-745-372-63009");//"123-456-789-12345");
    sms.setSubscriberPassword("C96B0472");//"Password Goes Here");
    // Message Settings
    sms.setMsgPin("+915623738280");//"+1 100 510 1234");
    sms.setMsgFrom("Paritosh");
    sms.setMsgCallback("+917623736528");
    sms.setMsgText("Hi ....how r u ?");
    System.out.println("Sending message to Simplewire...");
    // Send Message
    sms.msgSend();
    // Check For Errors
    if(sms.isSuccess()){
    System.out.println("Message was sent!");
    else {
    System.out.println("Message was not sent!");
    System.out.println("Error Code: " + sms.getErrorCode());
    System.out.println("Error Description: " + sms.getErrorDesc());
    System.out.println("Error Resolution: " + sms.getErrorResolution() +
    "\n");
    Hope this helps
    Rohan

  • Want to send sms using java

    I am developing a stand alone application in java that contains sending sms to certain numbers.
    I want to send sms using java and my phone connected to my pc by usb cable(Not through Bluetooth).
    I am using Linux operating system (Arch linux).
    I tried a few libraries that uses the the online sms portals,but for some reasons i dont want to pay those sites.(just want it to be done using my simcard cause its economical).
    Help appreciated

    880667 wrote:
    I am developing a stand alone application in java that contains sending sms to certain numbers.
    I want to send sms using java and my phone connected to my pc by usb cable(Not through Bluetooth).
    I am using Linux operating system (Arch linux).
    I tried a few libraries that uses the the online sms portals,but for some reasons i dont want to pay those sites.(just want it to be done using my simcard cause its economical).
    Help appreciatede First thing you need to check: are you able to access other services my connecting you mobile by USB to machine (Line GPRS, calling). Because it requires the calling or SMS port access. And you said it is economical by sending SMS using mobile it depends. But most of the times, it is better to use the SMS service provider getway. They provide the details either http or FTP, we just need to put or message in the accepitng form, rest of the things are done by the service provide.

  • How to send SMS from Java program?

    Hello,
    I want to know, how can I send SMS from Java program.I dont have any idea about SMS gateways. Can any one give me Sample code for sending the SMSs from Java Program.
    Thanks,
    -BR

    hi,
    refer javamail concepts
    http://www.google.co.in/search?q=javamail+simple+example&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:en-US:official&client=firefox-a

  • Sending SMS Via my java Application

    Hi all,
    I want to develop a feature to send SMS from my java application by using mobile phone.
    I am new to java.
    tell me how to connect the mobile phone from my applicatio and how do i send the SMS.
    Hoping your help sooner....
    Thanks and regards,
    Suresh Dhandauthapani.

    >
    Hoping your help sooner....
    Sorry I was too late.

  • Exceptions in sending SMS via SMPP

    hi,
    i want to develop an application which is capable of sending & receiving SMSs using SMPP,
    i ve downloadd an application, it bound successfully with SMSC,
    when i try to send SMS it gives a nullpointer exception,
    i am new to SMPP programming, i stil cud not figure it out
    is there anything wrong with the request,
    if anyone can help pls advise,
    Submit request : (submit: (pdu: 0 4 0 502) (addr: 1 1 556) (addr: 1 1 0716838358) (sm: enc: ASCII msg: ) (opt: ) )
    thanks in advance
    dush
    Edited by: dush82 on Sep 23, 2007 11:54 PM

    when i change the Schedule delivery time to 0709251440000000, it gives another exception,
    {color:#800000}
    com.logica.smpp.pdu.WrongDateFormatException: Invalid date 0709251440000000: time difference relation indicator incorrect; should be +, - or R and is 0
    at com.logica.smpp.pdu.ByteData.checkDate(ByteData.java:289)
    at com.logica.smpp.pdu.SubmitSM.setScheduleDeliveryTime(SubmitSM.java:176)
    at com.logica.smpp.test.SMPPTest.submit(SMPPTest.java:469)
    at com.logica.smpp.test.SMPPTest.menu(SMPPTest.java:256)
    at com.logica.smpp.test.SMPPTest.main(SMPPTest.java:216){color}
    when i change Schedule delivery time to 07092514400000 it gives wrong format exception,
    {color:#800000}com.logica.smpp.pdu.WrongDateFormatException: Date must be either null or of format YYMMDDhhmmsstnnp and not 07092514400000.
    at com.logica.smpp.pdu.ByteData.checkDate(ByteData.java:280)
    at com.logica.smpp.pdu.SubmitSM.setScheduleDeliveryTime(SubmitSM.java:176)
    at com.logica.smpp.test.SMPPTest.submit(SMPPTest.java:469)
    at com.logica.smpp.test.SMPPTest.menu(SMPPTest.java:256)
    at com.logica.smpp.test.SMPPTest.main(SMPPTest.java:216){color}
    {color:#000000}anyone know wht is meant by tnnp...?{color}
    pls..pls help me to solve this..

  • How to send SMS using java

    Dear All
    How we can send SMS(Short Message Service) to mobile phones using java.
    By Registering in some sites and using that user name and password we can send SMS.
    But after some limited SMS we have to pay for further use.
    I need some thing which we can use as free.
    Can any one help me
    Thanks in Advance

    The easiest way would be to send a regular email to a Email to SMS gateway.
    Check out the list of Email to SMS gateways at http://en.wikipedia.org/wiki/SMS_gateways

  • Using Address Book to send SMS via Bluetooth

    Hi all,
    I recently upgraded to 10.4.6 (from 10.4.5) to take advantage of the new iSync support for the Nokia N70.
    (I had previously been using a modified Metaclasses.plist hack for this and prior to the upgrade to .6, restored the original .plist)
    I also followed the advice in Apple article 303419 about removing the phone from iSync.
    So, upgrade fine and re paired phone with iSync but now find that I can no longer use Address Book to send SMS message or dial a call to current contact.
    This worked fine with the hack!
    Any ideas?
    B
    1 GHz PowerPC G4   Mac OS X (10.4.6)  

    I am using OS X10.4.6 via Bluetooth connecting to Nokia N70 also. I have no problem with iSync and file transfer. But I can NOT send and receive SMS from Address book.
    Roger Hong
    iBook G4   Mac OS X (10.4.6)  

  • How to send sms from java code

    hi
    I have involved in a project where I need to send sms to mobile from java code.Can anyone help me.if u have code please send me.
    thanks
    dhinesh

    Hi,
    there are several methods to do so but using Web Services is an easier one. Google will help you to find a provider. (E.x. http://www.remotemethods.com/home/communic/sms .)
    Best wishes,
    Christian Ullenboom | http://www.tutego.com/

  • I can send sms through java but now i need help for.......???

    hi i am working on a project where i have to read and send sms automaticaly.i succesfully build it also with the jsmsengine and nokia 3220 mobile phone and now i have to fix up some bugs.any interested candidate can contact with me so that we can fix those bug and i also want to know how can i send EMS through mobile.
    is ther any java api that can better that the jsmsengine api??
    thanx

    How did you move you rlibrary to the external drive?
    Did you follow these steps -> iTunes: Moving your iTunes Music folder
    or did you simply drag it over?
    Don't just drag it over.
    This morning, I attempted to download itunes to the new external drive so I could play and easily import my music from there, and itunes won't download to the external hard drive! The error message I'm getting says itunes will only download to the startup disk/
    Do you mean you are trying to download the iTunes program so you can install it?

Maybe you are looking for

  • SNP Planned order creation

    Iu2019ve a material M1 at plant P1 with procurement type X. There is no SNP PDS/PPM for this material/plant. If there is a demand of 100 on this material/location and I run heuristics, it creates a planned order even though there is a transportation

  • Getting started using iMac email

    Hi all, I have had my new iMac for a few weeks now and tried to use my Mac email account. The account is set up but when I sent myself a test email to my Yahoo email account, nothing happened. I sent another test email to another Yahoo email recipien

  • Demo Image Issue

    I have ported a working SSM / PAS model to the CDI-EPM75U1 demo image. I find that my system, and the three demos all have the same problem. I can operate most functionality in Administrator including assignment of KPIs to PAS metrics and setting fil

  • Connecting to Dbase file using Forms6i

    Dear All, I am using forms6i on windows98. I need to select some records from *.dbf file using forms6i. when I click a push button the program should select records from dbf file and put in a cursor. I need help in doing it. Thanks for your help in a

  • How to send USSD code using computer/PC

    Hi every one. I am new in J2ME, I ask for help on how to send USSD comand from computer through modem to BTS.