Sms tfrom pc to mobile

Hi friends i am doing a new product . which deals with sending and reciveing sms from mobile to pc. since i am new to J2ME .could any any one help me regarding this . i am really blank now, pleasse help me out .

How about using the search? This has been asked many times before..

Similar Messages

  • Sending an SMS or Mail to mobiles  through Oracle

    hi,
    We have created a proc through which we can send a mail to our MailId. but my requirement is we need to send this mail as an SMS to mobiles through oracle.
    Our code goes some thing like this:
    CREATE OR REPLACE PROCEDURE "EMAIL_ALERT" (v_From VARCHAR2,
    v_Recipient VARCHAR2,
                   v_Subject VARCHAR2,
    v_Mail_Host VARCHAR2,
    v_message VARCHAR2) AS
    v_Mail_Conn utl_smtp.Connection;
    crlf VARCHAR2(2) := CHR(13)||CHR(10);
    v_Recipient1 VARCHAR2(50):='[email protected]';
    v_Recipient2 VARCHAR2(50):='[email protected]';
    v_Recipient3 VARCHAR2(50):='[email protected]';
    BEGIN
    v_Mail_Conn := utl_smtp.Open_Connection(v_Mail_Host,25);
    utl_smtp.helo(v_Mail_Conn,v_Mail_Host);
    utl_smtp.Mail(v_Mail_Conn, v_From);
    utl_smtp.Rcpt(v_Mail_Conn, v_Recipient);
    utl_smtp.Rcpt(v_Mail_Conn, v_Recipient1);
    utl_smtp.Rcpt(v_Mail_Conn, v_Recipient2);
    utl_smtp.Rcpt(v_Mail_Conn, v_Recipient3);
    utl_smtp.DATA(v_Mail_Conn,
    'Date: ' || TO_CHAR(SYSDATE, 'Dy, DD Mon YYYY hh24:mi:ss') || crlf ||
    'From: ' || v_From || crlf ||
    'Cc:' ||v_Recipient1|| crlf ||
    'Cc:' ||v_Recipient2|| crlf ||
    'Cc:' ||v_Recipient3|| crlf ||
    'Subject: '|| v_Subject || crlf ||
    'To: ' || v_Recipient || crlf || crlf ||
    'Hi,'|| utl_tcp.crlf
    ||' '||CHR(13)||
    v_message|| utl_tcp.crlf
    ||' '||CHR(13)||
    'Thanks and Regards'|| utl_tcp.crlf||
    utl_tcp.crlf
    utl_smtp.Quit(v_mail_conn);
    EXCEPTION
    WHEN utl_smtp.Transient_Error OR utl_smtp.Permanent_Error THEN
    RAISE_APPLICATION_ERROR(-20000, 'Unable To Send Mail: '||SQLERRM);
    END Email_Alert;
    Assuming the mobile number to be 9197016944444 where 91 represent the country code . please advice.
    Regards
    Edited by: vine on Apr 16, 2010 5:24 AM

    vine wrote:
    EXCEPTION
    WHEN utl_smtp.Transient_Error OR utl_smtp.Permanent_Error THEN
    RAISE_APPLICATION_ERROR(-20000, 'Unable To Send Mail: '||SQLERRM);
    END Email_Alert;Ugly. What you are doing here is taking a meaningful exception and making it meaningless. The caller knows that the send mail fail. It is after all getting a raised exception in response.
    What is important for the caller is to evaluate the error. Determine a) what happened and then b) determine what to do about it.
    The what happened is determined from the exception error code. Only, you now went and changed the meaningful application error code to -20000.
    Do not make exceptions meaningless!
    >
    Assuming the mobile number to be 9197016944444 where 91 represent the country code . please advice.Advice exactly what? You cannot send a SMS via e-mail.
    What you can do is send a specially formatted e-mail (specific recipient/subject) to a mail server, where this mail server has special code/plug-ins/processes that can reformat the e-mail as a SMS and then forward it to a SMS gateway server that can pass it to the cellular provider's network for processing and delivery.
    Do you have such a mail server? Does it interface with a SMS Gateway (or similar) server?

  • SMS reply to my mobile is not received; U.S. to Sa...

    I am not receiving replies to SMS messages I am sending to Samoa. The recipient there is receiving MY message, but I am not getting the response via my mobile like I should be. Please advise.

    Try going to the bottom of the Featured tab in the App Store app on your iPad and tap on your account id, tap on 'View Apple ID' on the popup and log into your account, and then select the Country/Region section and select India

  • 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!");

  • SMS & Email On ADF Mobile

    hi folks,
      I tried the sms and email device features from datacontrol. I tested it over the Android emulator.
    -SMS is fine why because it access one of the local app.
    -Email is showing no apps can't perform this action.
    Eventhough Sms is not going.
    My questions are,
    I am not well aware about these emulator. the following question may be curious.
    i have to deploy and test these apps over the devices ah?
    - Jdev 11.1.2.4.0
    - Android SDK

    To my knowledge some functions are not available in the emulator. 
    A Google search only found successful implementations using an android deviceor the iphone Emulator, like http://deepakcs.blogspot.de/2013/02/adf-mobile-email-send-multiple-file.html or http://m.youtube.com/watch?v=D16DGMAn8xg&desktop_uri=%2Fwatch%3Fv%3DD16DGMAn8xg
    Timo

  • 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

  • Sent SMS appearing on my mobile as well

    Hi everyone, first query for me....
    When I send a text message to a mobile phone, which generally works well, I get the same message appearing on MY MOBILE. I don't remember thsi happening before. Is it normal? How do I turn it off? Is the SMS getting to the intended number?

    first...im prob the world most notorious technical disaster-EVER!
    so whoever will reply to this-PLEASE BE PATIENT WITH ME!!!
    here is my question!
    i did send some SMS over to a person im in contact with who also has SKYPE.he was off line at the time...all my listed SMS have those weird round rotating circles next to the listed sending times on the right hand side!!!!
    WHAT IS THAT ALL ABOUT?! as i never had that before on any other SMS(online or offline)

  • Previously I had 2 iphone 4s work and private, I diverted the private to work ph and found that I was receiving sms's on both mobiles, from the a sender? Is there an option to do so for an IPhone 5 and Iphone 4? Jules

    Previously I had 2 iphones 4 and diverted private to work (calls) and found out the sms (from iphones and both phones had same contacts) that went to my private also registered to my work ph (different number)??!
    Is there a procedure to do from iphone 5 and 4??

    Are you using the same apple id in imessage? If so this is why.
    You need to sign out or uncheck the email in settings > messages

  • Improper character encoding in SMS message to T-Mobile user

    I've recently found that when I sent a text message to users on T-Mobile, the @ and $ are replaced by a ¿ (upside-down question mark). This occurs with all iphone messages as well as Treo users.
    Can anyone tell me if this is a phone issue or a T-Mobile issue. I'm assume its a T-Mobile issue since the problem is only with them. Any idea how to get them to fix it. I'm stumped.
    Fish

    Didn't understand from what starting point you want me to "select the mail account name", but closed and re-opened T'bird.
    Then I started to run your tests.
    To my HUGE AMAZEMENT!!! - everything seems to be working today!!
    This leaves me with a couple of old files that seem to have gotten trashed a long time ago and won't simply "revover" - but I did keep back-up copies of them elsewhere, and can now go about rebuilding them if necessary.
    Thank you for your help - whatever it is that I did, seems to have worked. After how many years?! If I have trouble in the future, I'll be back - but for right now, what a RELIEF!
    Best, Martha

  • 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".

  • Sms messaging pc to mobile

    How do you create and send a text message from your Pc in imail to a cell phone number without the cell phone users specifiec dns?

    I know that with messages sent from the SMS widget or web page, recipients using some carriers cannot reply unless they set up their phones in a certain way (instructions in the SMS faq). Also, although I know the carrier of all the people I sent messages to, if you don't know the carrier, you can choose a "Beats Me" option. I don't do a tone of text messaging and the free SMS widget has met needs. I believe there are also some shareware sms widgets.

  • CCMS alert notification - sending an SMS on a mobile number.

    Hi,
    We have set up central  CCMS  alert monitoring for the systems in our landscape.
    Now we want an auto reaction  method  which can send an SMS  to a specific mobile number.
    Can it be done  using any existing auto reaction method  or we need to develop a program in ABAP
    specifically to achive this functionality ... ?
    We want some reaction method which can respond to the color change in the CCMS alert monitoring attributes .
    For eg - as soon as the  color value in the alert  is set as red , the sms should be triggered.
    has anyone achieved this type of functionality .
    It would be realy helpful.
    Thanks in advance.
    Regards
    Prince .

    SAP Alert Management (ALM) functionality comes into play when business-critical problems occur. Within ALM, conditions for critical situations are predefined. When an alert is triggered in ALM that meets these conditions, responsible or interested parties are determined and informed immediately you need to configure SCOT accrodingly. please check this link:http://help.sap.com/saphelp_nw2004s/helpdata/en/3f/81023cfa699508e10000000a11402f/content.htm
    Scenario 1)
    As of Release 6.20, you can send and receive fax and SMS or paging messages using SMTP. These are packed in e-mails for this purpose. please check Note 455140 - Configuration of e-mail, fax, paging or SMS using SMTP
    Scenario 2)
    Starting with the SAP Web Application Server 6.20, it is possible to transfer pager and SMS messages via HTTP to a third-party software or to a pager/SMS service provider please check Note 455142 - SAPconnect: Configuration paging/SMS via HTTP.
    Note 455127 - E-mail (SMTP) in different SAP releases
    Note 455129 - Paging/SMS in different SAP releases
    Thank you,
    Shyam

  • Sending SMS using mobile phone connection.

    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.

    Hi junaid,
    Thanx for the response...One more doubt....Is it possible to send sms from pc to mobile directly using the sms server without the intervention of a service provider?If yes plzzz suggest me the steps to establish such a setup.
    Once Again..Thanx in Advance...
    R.PRASATH KRISH...
    Message was edited by:
    RPRASATHKRISH

Maybe you are looking for