Send sms from pc to mobile using java

im getting an error invalid pin,ie, error no -102,can anybody help me//

kiddo probably typed that topic into Google verbatim and a million results came up all referring to the ubiquitous "snd sms from Java" questions that constantly reappear here by homework kiddos thinking it would be a "kewl" and "original" "end of year project".

Similar Messages

  • Server script to send sms from pc to mobile

    hey can anybody help me how to develop a server side script which can send sms to a mobile, what all things to consider....please guide me in this.

    If you know the carrier then the easiest way to send a sms is send the email to the phone. The email address will be phonenumber@carrierspecific address. You can get the list of carrier specific email address at their website or search at google.
    Other way is to subscribe to a sms server like smsxchange and use their apis to send email.
    Third way is to connect a gprs modem/ phone to the pc and send the sms through the phone.
    Easiest and free is the email and next best if ready to pay is subscribe to an sms exchange provider.

  • How to send sms from pc to mobile phones

    Hey house,
    Am handling a project on how to send a personalized sms msg from a pc to multiple mobile phones.Any body with that technology should be of help .Thanks

    The simplest way is to find a web service which does this (there are several). Obviously you need to pay, something like buying a batch of transmissions up front. It's not very expensive, though. The particular instructions will be on the web site of the service, probably for various languages. Your invocations of the service will include your credentials.

  • Sending sms from oracle to mobile

    Hi Experts,
    EBS : R12.1.3 with shared appl_top pcp enables 2 nodes ( EBS1 , EBS2)
    DB   : 11gR2 : 11.2.0.2 with RAC enabled two nodes
    OS : RHEL 5.3 64 Bit
    we want to send notification via sms to mobile . For example like 'whenever a shipment is received ' or ' payroll run ' or 'concurrent manager failure' etc .
    if anyone have implemented this , please share the solution .
    thanks
    Mapps

    Pl do not post duplicates - using mobile sms alerts in R12

  • Computerised call from PC to a mobile using java applets

    i want to know whether it is possible to make a call from PC to mobile using java applets. Please give me a correct reply with proof.

    The situation is like this.
    We are transfering the JAR file from the PC to the Mobile using Bluetooth.
    Our J2ME project is already install on Nokia's 6600 and given to the salesman's on the field. Now i have updated my software and i want to upgrade the same on their mobiles. For this i can't call all the 2000 salesman's who are all over the country (India) to my place to get the latest software installed and configure.
    If i have a GPRS like solution for transfering my file from my PC to the remote mobile. I would be better. If you know any this related to this kindly reply me.

  • Can we use MIDP 1.0 to send SMS from mobile phone to server

    hello,
    I want to develop MIDlet which send sms from mobile phone to server
    using midp 1.0
    and also if any one knows about the mobile phone which suppoet midp 1.0 (java enabled) then tell me
    thanks in advance
    s.j.koradiya

    hi,
    SMS API(WMA) is an optional package. It is not a MIDP1.0 or MIDP2.0 api's.
    There are phones which has WMA api with MIDP1.0 support .... Nokia 3650
    Seimens has some phone with their own api's to send sms.Check out seimens site for more info
    BTW, What do you mean buy sending SMS to Server????
    If you want to send message to server you can do it with Http.
    HTH
    phani

  • Send sms to GPRS/GSM mobile from PC

    I want to send sms from computer using GPRS/GSM mobile using AT commands.
    so i want to use java API for programing .....can anybody tell me which java API used for this purpose?
    thanku

    Hi,
    I think you posting the same question across many forums ... SMSLib gives you the source code for sending and receiving messages. For example the below program scan all the COM Ports and prints the Model Information using AT commands.. So download the source code from their website..
    package misc;
    //import gnu.io.*;
    import javax.comm.*;
    import java.util.*;
    import java.io.*;
    public class CommTest
         static CommPortIdentifier portId;
         static Enumeration portList;
         static int bauds[] = { 19200 };
         public static void main(String[] args)
              portList = CommPortIdentifier.getPortIdentifiers();
              while (portList.hasMoreElements())
                   portId = (CommPortIdentifier) portList.nextElement();
                   if (portId.getPortType() == CommPortIdentifier.PORT_SERIAL)
                        System.out.println("Found port: " + portId.getName());
                        for (int i = 0; i < bauds.length; i++)
                             System.out.print("     Trying at " + bauds[i] + "...");
                             try
                                  SerialPort serialPort;
                                  InputStream inStream;
                                  OutputStream outStream;
                                  int c;
                                  String response;
                                  serialPort = (SerialPort) portId.open("SMSLibCommTester", 1971);
                                  serialPort.setFlowControlMode(SerialPort.FLOWCONTROL_RTSCTS_IN);
                                  serialPort.setSerialPortParams(bauds, SerialPort.DATABITS_8, SerialPort.STOPBITS_1, SerialPort.PARITY_NONE);
                                  inStream = serialPort.getInputStream();
                                  outStream = serialPort.getOutputStream();
                                  serialPort.enableReceiveTimeout(1000);
                                  c = inStream.read();
                                  while (c != -1) c = inStream.read();
                                  outStream.write('A');
                                  outStream.write('T');
                                  outStream.write('\r');
                                  try { Thread.sleep(1000); } catch (Exception e) {}
                                  response = "";
                                  c = inStream.read();
                                  while (c != -1)
                                       response += (char) c;
                                       c = inStream.read();
                                  if (response.indexOf("OK") >= 0)
                                       try
                                            System.out.print(" Getting Info...");
                                            outStream.write('A');
                                            outStream.write('T');
                                            outStream.write('+');
                                            outStream.write('C');
                                            outStream.write('G');
                                            outStream.write('M');
                                            outStream.write('M');
                                            outStream.write('\r');
                                            response = "";
                                            c = inStream.read();
                                            while (c != -1)
                                                 response += (char) c;
                                                 c = inStream.read();
                                            System.out.println(" Found: " + response.replaceAll("\\s+OK\\s+", "").replaceAll("\n", ""). replaceAll("\r", ""));
                                       catch (Exception e)
                                            System.out.println(" Nobody here!");
                                  else System.out.println(" Nobody here!");
                                  serialPort.close();
                             catch (Exception e)
                                  System.out.println(" Nobody here!");

  • How to send sms from pc to various mobile service in india

    I am trying to send sms from my pc to various service provider(airtel, hutch, bsnl).But i am able to send only to airtel connection(using thier website : [email protected]). But i am unable to send to other service provider. Or is it required to have SMS centre(SMSC) for sending SMS And also how inditimes 8888 will work(automatic replay for SMS)
    Anybody can help in this topic
    Thanking you

    do google search. there are a lot of free sms gateways available over the internet. they come with java apis too. generally speaking, an sms can be sent to a phone only thru its SMSC. however, some sms gateways need you to connect a mobile to your com port so that they can send sms thru that. (in that case the sms flow will be like this: yourcomputer --> your mobile --> your mobile's smsc --> receiving phone's smsc --> receiver phone) hope i have not confused you..
    regards
    raamam

  • Help Me! How to send sms from a java program with a pda connected to system

    help me ,
    I am new in JavaME. I have to send sms from a java program, A PDA is connect to the system. Can some one help me to make that program which interact with PDA connected to system and send sms to any mobile or pda phones.

    user12873853 wrote:
    I believe JavaMail API will help in sending the mails and SMS through SMTP server. Sounds more like false hope than belief to me. The only way that would work is if you have an SMS gateway that allows communication through SMTP. Doubtlessly some exist (searching for 'JavaMail sms' through google certainly seems to indicate this), but if you have to ask you don't have one.
    And that exactly where you are stuck: to send SMS messages you need an SMS gateway. That will be the first thing you have to shop for, until then there is no reason to think about code, protocols or implementations. It can be as simple as hooking up a mobile phone, but then you cannot send bulk messages of course. Most likely you'll need to shop around for a partner that has an SMS blasting service you can use.

  • How to send SMS from a servlet  to a mobile phone

    How to send SMS from a servlet to a mobile phone what are the things i have to do.......
    very urgent..

    Hi, please read this:
    http://forum.java.sun.com/thread.jspa?threadID=345296&messageID=2608297
    Found on the very forum with the search function ;)

  • How to Send SMS from Oracle Database to Mobile

    Hi All,
    I need urgent help in how to send sms from oracle database to mobile
    thanks and best regards

    you can use smslib..... . i have made a program with this. its working fine with oracle database.
    see the links here ...
    http://halimdba.blogspot.com/2011/08/send-sms-from-oracle-database-with.html
    by the way, how you can say "urgent help" ?
    regards
    Halim

  • Send SMS from cellular phone using J2ME

    hi!!!
    Is WMA the only library the device need to support for sending SMS-messages ?
    Is it other ways to send SMS ?

    Is WMA the only library the device need to support
    for sending SMS-messages ?Yes.
    Is it other ways to send SMS ?Some mobile vendors add sending SMS to their java packages, for example, Siemens, Samsung.
    Also you may send SMS from web site, if you can connect to it via HttpConnect.

  • Sending SMS from Computer Application using Nokia ...

    Hi All,
    I want to send/receive SMS from my computer applicatoin using Nokia phone set. Can I get any DLL/API or software for sending/receiving SMS. Is there different DLLs/APIs for different nokia mobile sets.
    Thanks
    Tariq
    EDIT: Removed email address.Message Edited by mercurius on 28-Jun-2007 09:45 AM

    Hi tariqmunir
    Does this meet any of your requirements?
    http://www.smscaster.com/productsmscaster.htm
    Happy to have helped forum in a small way with a Support Ratio = 37.0

  • Help!! Which java jar do I need to send SMS from PC to movil

    I would like to know what do I need to be able to send SMS from my Pc
    Is there a jar to do so.
    I would realy appreciate if someone gives me a clue about sending SMS.
    My e-mail is: [email protected]
    Thank you very much

    Do you have the hardware in place to interface and talk directly with the communication systems of the telecom companies?
    I seriously doubt it. So, all you can do is send email messages to their email address assigned to their mobile phone, provided the carrier offers that. Most ofen the form is <phonenumber>@<mobile.carrier.isp>

  • How can I send SMS from Mobile To PC? Plz Help me...

    I created one Midlet that has the user interface to get the details from the user.
    I want to send those details to server as SMS.
    What can I do with WMA.How can I send SMS from Mobile to PC.
    Plz help me to send SMS from Mobile to PC.

    Hi Senthilnathan,
    I too try for the same, if anyone has the idea please reply
    Regards
    Karthi

Maybe you are looking for

  • Moving iweb site from mobileme account...

    Our hard drive failed last night. Therefore our site is also gone. I know you can save the files from one computer and transfer to another to edit your site. Is there ANY way that it can be saved from the mobileme and then transferred to another comp

  • Oracle 10gr2 rac, ora-12545 error when configured in shared server mode

    Hi i have fresh installation on two node rac on linux, with oracle 10gr2. It is running successfully, when i configure it in shared server mode and try to connect from client it gives error ora_12545: I have referred the oracle metalink notes and con

  • Is the apple router really worth it?

    it is time to upgrade my router. I have an older linksys 802llb. Originally I had my heart set on going all apple but at almost $200 vs about $50 for a non apple version I am wondering if it makes a difference and if the apple router is worth the mor

  • How to make SVG Stacked ABr Chart Work

    Hi - I have two series with a link defined (below) - but I get A SQL parse error at runtime. ANy ideas ??? Only difference is in the min and max function Series 1 select 'f?p='|| :APP_ID ||':4:'|| :APP_SESSION ||'::::P4_SHOW:'||to_char(l.sample_time,

  • Hoy can I get email confirmation for iCloud if I don't received

    I'm trying to set up iCloud on my iPad but ask for email confirmation on my account ADN I don't received any email and my acount Is already set up for iTunes