How to send short message services(SMS) from PC desktop to Mobile  with the

sir, i want to know " how we can send the free SMS from PC desktop to Mobiles? this is my project part of final year project and till now i m in confusion. what r the various tools and technologies will be in used for implementing the SMS system. In fact, i m a new user of wireless java. so, pls give ur valuable hands for this topic.

First of all PC as a "stand-alone" machine does not have ablity to send SMS since there is no necessary hardware in it. You can achive this in two ways: first, connect your mobile (method depends on model) to PC and use it to send SMS. Ofcourse it won't be for free - mobile owner will have to pay for it. Second way involves using so called "SMS gateway" provided by GSM suppliers via internet. Most of them, at least in Poland, are well protected against using by machines.
This is all I know about it. Hope it helped in some way

Similar Messages

  • Short Message Service(SMS) Integration in Siebel 8.0

    Hi All,
    Hi i want to configure Short message service(SMS) integration to our maxhine
    please help me any body have doc or link
    please help to me
    advance thanks:8}
    Rio

    You will need a SMTP to SMS gateway to be able to use SMS with Siebel.
    Have a look at:
    Siebel Communications Server Administration Guide
    http://download.oracle.com/docs/cd/B40099_02/books/PDF/CommSrvAdm.pdf
    In that Guide you will find:
    Connecting Directly to Wireless Network Operators
    http://download.oracle.com/docs/cd/B40099_02/books/CommSrvAdm/CommSrvAdm_Wireless4.html
    Axel

  • How to send error message to forms from Database Trigger

    Hi, Please help me to send error message to forms from Database Trigger?
    RgDs,
    Madesh.R.M

    You are correct, the On-Error trigger is a Forms trigger. However, if your Form is going to display the error generated by the database stored procedure or trigger - you might not see the database error in your Form unless you check the DBMS_ERROR_CODE in the On-Error trigger and manually display the Error Code and associated Text. I've see this happen with a co-worker. The Form she was working on was based on a table with an Before-Insert trigger. Because she was not explicitely handling the error from the Before-Insert trigger in the Forms On-Error trigger, her Form appeared to halt for no reason at all. Once she added code to the On-Error trigger in the Form to handle the DBMS_ERROR_CODE, she discovered the trigger was producing an error and was able to show the error to the user in the On-Error trigger.
    I understand the desire to keep as much as possbile in the database, but with that comes some extra coding in your Forms to handle this. This extra coding could easily be placed in a Forms Library, attached to a Form and called in the On-Error trigger. Your code could look like this:
    DECLARE
       /*This example assumes you have an Alert defined
          in your Form called: 'ERROR' */  
       al_id    ALERT;
       al_text  VARCHAR2(200);  /* Max text of a Forms Alert message*/
       al_btn   NUMBER;
    BEGIN
    IF DBMS_ERROR_CODE != 0 THEN
       /* Error code is ORA-00000 Normal Successful completion
           So only handle non-zero errors  */
       al_text := DBMS_ERROR_CODE||':'||DBMS_ERROR_TEXT;
       al_id := Find_Alert('ERROR');
       set_alert_property(al_id, alert_message_text, al_text);
       al_btn := show_alert(al_id);
    END IF;
    END;Your original question was "How to send error message to forms from Database Trigger?" The answer is you don't because Forms already gets the database error code and database message through the Forms DBMS_ERROR_CODE and DBMS_ERROR_TEXT functions. Look these up in the Forms help and it should clear things up for you.
    Craig...
    Edited by: CraigB on Jun 14, 2010 4:49 PM
    Edited by: CraigB on Jun 14, 2010 4:49 PM
    Edited by: CraigB on Jun 14, 2010 4:50 PM
    Edited by: CraigB on Jun 14, 2010 4:51 PM
    Edited by: CraigB on Jun 14, 2010 4:51 PM

  • How to send short messages to specified email id

    Hi,
    I want to send alert messages to specified email id. For eg. i want send short message to my mail id [email protected] How to do this using labview. If you have any VIs, pls pass it to me. Thanks for replying to my earlier mails, shutdown.vi is working properly here.
    Regards
    Shivakumar Singh

    Shivakumar,
    Some thoughts:
    I wanted to make sure you knew that you didn't have to change the SMTP Server name just to send e-mail to a Yahoo e-mail address. You can stick with your corporate SMTP server and send e-mail to any valid address, assuming your company firewall isn't configured to block e-mail to addresses outside the company.
    If you changed the SMTP server name because you are now trying to send the e-mail from somewhere that doesn't have access to your corporate SMTP server, then there are several issues. First, any public SMTP server that doesn't require user authentication will instead do something else (like look at your IP address) to determine whether or not it will allow you to send the e-mail. Otherwise, spammers would saturate the server with SMTP requests for as long as it remained available.
    Assuming you're trying to use a server that will allow you to use it, are you sure you got the right server name? You should double-check that.
    Finally, it may be that your SMTP server requires user authentication. Yahoo's public ones certainly do; see the Yahoo Help Page on this (http://help.yahoo.com/help/us/mail/pop/pop-11.htm​l). If this is the case, you may be able to use some alternative VIs created by Rolf Kalbermatter to get the job done, though you should be aware that it could be dangerous to do so. See this thread.
    Regards,
    John

  • How to send a number by SMS from contact list on 2...

    Guys, I cracked my brains to solve how to send a number from contact list by SMS in 2630.
    Maybe there's no such option at all?
    Please help!!!
    Message Edited by berzerk on 16-Dec-2008 09:24 PM

    I don't think there is such an option on a limited phone like the 2630.
    On phones running S60 such as the Nseries and Eseries devices (and a few others) there is an option to copy a number from the contacts into the clipboard and you can subsequently paste it into a new message. Older S40 phones like the 2630 don't have a clipboard facility to do copy/paste actions.
    Was this post helpful? If so, please click on the white "Kudos!" star below. Thank you!

  • How to send a message(apple event) from mac os to our application

    on developer.apple.com i found a method which opens a given documetns through an apple event.
    my question is how to send open document event from mac to our application on xcode

    Assuming you're using Cocoa, the simplest solution is to call -[NSWorkspace openFile:withApplication:]. Example:
    NSWorkspace *ws = [NSWorkspace sharedWorkspace];
    NSString *appPath = [ws absolutePathForAppBundleWithIdentifier: @"com.apple.textedit"];
    [ws openFile: @"/path/to/file" withApplication: appPath];

  • How to send a message to WD from a BPM?

    Hi All,
    I have a ccBPM in which I recieve a binary file .
    On receiving it I want :
    1)To send it to a folder in my pc.
    2)After sending file I need to send a message to WD giving path of file on my system so that it can be UPLOADED to the context.
    Please help !
    Points assured for helpful answers!
    Sumit

    HI,
    See the below links
    /people/arpit.seth/blog/2005/06/27/rfc-scenario-using-bpm--starter-kit - File to RFC  - File to Mail
    /people/michal.krawczyk2/blog/2005/08/22/xi-maintain-rfc-destinations-centrally - Maintain RFC destination centrally
    /people/michal.krawczyk2/blog/2005/03/29/configuring-the-sender-rfc-adapter--step-by-step
    Troubleshooting - RFC and SOAP scenarios-/people/shabarish.vijayakumar/blog/2008/01/08/troubleshooting--rfc-and-soap-scenarios-updated-on-20042009
    XI: RFC or ABAP Proxy ? ....ABAP Proxies with attachments --/people/michal.krawczyk2/blog/2006/04/19/xi-rfc-or-abap-proxy-abap-proxies-with-attachments
    RFC -> XI -> WebService - A Complete Walkthrough (Part 2) -/people/shabarish.vijayakumar/blog/2006/03/28/rfc--xi--webservice--a-complete-walkthrough-part-2
    RFC to SOAP
    /people/shabarish.vijayakumar/blog/2006/03/23/rfc--xi--webservice--a-complete-walkthrough-part-1
    /people/piers.harding/blog/2004/07/18/you-dont-need-to-use-soap-to-keep-your-rpc-clean
    /people/david.halitsky/blog/2006/08/25/soa-vs-rfc-it-doesnt-have-to-be-charles-bronson-vs-henry-fonda
    https://www.sdn.sap.com/irj/sdn/advancedsearch?query=rfc%20to%20soap%20scenario&cat=sdn_weblog
    Regards
    Chilla
    <i>reward points if it is helpful..</i>

  • Support for Short Messaging Service (SMS)

    Hi all,
    Currently Beehive will only support sending SMS via the SMPP protocol, is there any other protocols available or planned in future releases?
    I know sms if a faiding tech, but it's still the thing to notify mobile devices.
    I tried creating a Clickatell account as recommended, but those test accounts are no good for SMPP which relies on a minimum volume of 5000 sms! not good for small/medium size users.
    Regards,
    david

    Current release supports SMPP and XMS. More information is available in the Admin Guide
    http://download.oracle.com/docs/cd/E16671_01/bh.200/e16648/subscriptionsnotifications.htm#CHDJFJGI
    Clickatell does support XMS.
    We are working to replace our support for XMS with support for our SMS partners HTTP based APIs.

  • How do i get my pics back from iphoto.  Lost them with the update to MAC OS 10.9.4

    How do I get photos back from I photo? IPhoto not compatible after MAC OS update to 10.9.4

    What version of iPhoto are your running?  What do you see when you open your library? Any messages?
    This screenshot shows which previous versions of iPhoto are compatible with Mavericks.  It also indicates which versions qualify for a free upgradeto iPhoto 9.5.1 and which require a purchase:
    Note 1:  every day more users are reporting problems with iPhoto 8.1.2 so I've included it in the non compatible category.
    Note 2:  If your previous version of iPhoto was iPhoto 7 (08) or earlier you'll need to download and run the iPhoto Library Upgrader 1.1 application on the library before opening it with iPhoto 9.5.1

  • When I try to purchase or download an app on my iPad, the appstore sends a message that my Apple ID cannot be used with the iTunes store. I have never had this problem and don't know what to do. Please help!!!!!!!

    Lately I have been trying to download some apps but when i click install, the appstore comes up with a message saying that my apple ID can't be used in the iTunes store. This has hever happened to me before and when I go to the settings and the Appstore, then click see Apple ID, it doesn't open. Please help, I don't know what to do. Is this a bug from iOS7.0.4???

    JUst experienced the exact  same problem after changing password.Getting same message. Hope someone has an answer for this.

  • How do I stop PSE 13 organizer from quitting unexpectedly when working with the PSE editor

    Every time I'm working in the editor I get  the error message "the organizer has quit unexpectedly" I have uninstalled and reinstalled as per chat supports recommendation with no improvement. I have studied the Adobe support information and don't see anyone else having the same issue. Would love to hear from someone who may have an idea for me!  Thanks in advance

    Hi,
    Please give the instructions mentioned in the article: http://helpx.adobe.com/elements-organizer/kb/organizer-crashes-launch-does-not-start.html
    a try.
    Thanks,
    Anwesha

  • How to send text messages using my Laptop

    How to send text messages written on my Laptop on my Curve8520 with Orange network?

    umm... you don't. SMS is a function of the BlackBerry, not your PC.
    There could a desktop software for SMS, but I don't know what it would be.
    **edit, well this looks like it would work.
    http://download.cnet.com/Desktop-SMS/3000-10440_4-​10340430.html
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Short Message Service

    Just want to double check what version of SAP is able to send  Short Message Service to Handphone?

    Do you mean,  sending a text message to a cellphone?
    If so,  I am able to do it in my 4.6c system.  It is really as simple as sending a mail to the text messaging email address.
    Regards,
    Rich Heilman

  • How to send SMS ( Short Message Service ) from java code

    Hi
    How to send SMS ( Short Message Service ) from java code.
    Thanks
    Gaurav

    Do you need to receive SMS? If you need to receive SMS, you will need to host your own GSM device or modem so that people can send you SMS.
    If not, you can just use internet SMS gateways like clickatell as mentioned above will do the work, and post to them by HTTP, XML or email. The cost is about 6-8 cents per SMS. There are cheaper services, but not always reliable. If you need to host your own GSM device, you can use software like http://www.kannel.org (GPL Open Source) or http://www.visualgsm.com. Alternatively, you may obtain a shortcode from your Telco - but these come with monthly subscription of maybe one or two hundreds.
    Regards,
    Joshua
    <SMS Gateway>@Expert

  • Send short message from Java application on mobile phone to server; http

    Hello!
    My question is: can I send short message from Java application on mobile phone to server - with the use of SMS (WMA) or http connection?
    I found this topic http://forums.sun.com/thread.jspa?threadID=5405431 about: "how to send data from midlet to servlet using doPost method".
    There is also such topic http://forums.sun.com/thread.jspa?threadID=5408046&tstart=0 about: "CLDC and MIDP - sending SMS to server -> Wireless Messaging API (WMA)".
    Please, kindly help me.
    Code from the topic mentioned above, edited by me so that it can be read easily:
    //http://forums.sun.com/thread.jspa?threadID=5405431
    //CLDC and MIDP - Re: how to send data from midlet to servlet using doPost method
    I want to know how to pass the values .
    for examples : this is what i wrote for doGet
    String url = setting.getUrl().toString()"/testProServlet/servlet/UpdateCompanyProfile?userId="+loggedInUserId"&svComp="saveCompHex;
    userId and svComp has the data which is very long so i wanted to use doPost.
    Now i dont know how to do it.
    This is what i have done in doGet (midlet)
    public void saveCompanyProfile(String saveComp,int flag,String blankFieldNm)
         System.out.println("flag===" flag);
         if (flag==1)
              displayAlert("Company Profile Edit",blankFieldNm+" field cannot be blank.",AlertType.ERROR, edCmpRecForm, true);
         else
              String saveCompHex = helper.encodeHexString(saveComp);
              // String saveCompHex =saveComp;
              HttpConnection httpConn = null;
              serverSettings setting = new serverSettings();
              System.out.println("saveCompHex===" saveCompHex);
              String url = setting.getUrl().toString()"/testProServlet/servlet/UpdateCompanyProfile?userId="loggedInUserId"&svComp="saveCompHex;
              System.out.println("url of save company profile:: "+url);
              InputStream is = null;
              OutputStream os = null;
              try {
                   // Open an HTTP Connection object
                   httpConn = (HttpConnection) Connector.open(url);
                   System.out.println("urlMidlet1 save edited company data===::" url.length());
                   // Setup HTTP Request
                   httpConn.setRequestMethod(HttpConnection.POST);
                   httpConn.setRequestProperty("User-Agent","Profile/MIDP-1.0 Confirguration/CLDC-1.0");
                   System.out.println("urlMidlet2===" url);
                   int respCode = httpConn.getResponseCode();
                   System.out.println("respCode edit company profile=====" respCode);
                   if (respCode == httpConn.HTTP_OK)
                        StringBuffer sb = new StringBuffer();
                        os = httpConn.openOutputStream();
                        is = httpConn.openDataInputStream();
                        int chr;
                        while ((chr = is.read()) != -1)
                             sb.append((char) chr);
                        String sResultSvCompanyProfile= sb.toString();
                        System.out.println("+++++++++++++Company sResult+++++++++++++==="sResultSvCompanyProfile);
                        if (resultViewCompanyProfile.trim().equals(""))
                             System.out.println("++++++++++++++If++++++++++++++SaveCompanyProfile===");
                             displayAlert("Login Incorrect","Username and Password incorrect", AlertType.ERROR, mainForm, true);
                        else
                             System.out.println("++++++++++++++Else++++++++++++++SaveCompanyProfile===");
                             //companyProfile();
                             displayAlert1("Information","Company Profile edited successfully", AlertType.INFO, profileMenuScreen, true);
                   else
                        System.out.println("Error in opening HTTP Connection. Error#" respCode);
                        //the line below divided into two lines because it was too long
                        displayAlert("Connection Failed","Cannot connect to server, please contact the Administrator.",
                        AlertType.ERROR, mainForm, false);
              catch(IOException e)
                   e.getMessage();
              finally {
                   if(is!= null)
                        try
                             is.close();
                        catch (IOException e)
                             // TODO Auto-generated catch block
                             e.printStackTrace();
                             displayAlert("Connection Failed","Cannot connect to server, please contact the Administrator.",
                             AlertType.ERROR, mainForm, false);
                   if(os != null)
                        try
                             os.close();
                        catch (IOException e)
                             // TODO Auto-generated catch block
                             e.printStackTrace();
                             displayAlert("Connection Failed","Cannot connect to server, please contact the Administrator.",
                             AlertType.ERROR, mainForm, false);
                   if(httpConn != null)
                        try
                             httpConn.close();
                        catch (IOException e)
                             // TODO Auto-generated catch block
                             e.printStackTrace();
                             displayAlert("Connection Failed","Cannot connect to server, please contact the Administrator.",
                             AlertType.ERROR, mainForm, false);
              } //end finally
         } //end else (?)
    } //end savecompany

    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

Maybe you are looking for

  • RE: Cleaning and Compression Environment Repository

    Mark, I'm not sure what I did wrong the first time. I thought I covered all the bases, but just to be certain, I did the whole sequence again and now it works. Before, I did have problems restarting the environment, because the repository was locked.

  • Date Format in OBIEE

    Hi All, I am using OBIEE 10.1.3.4.1 with informix db. While extracting data from the db, it has all the date field as "YYYY/MM". And While executing the report I am getting an error as *"[nQSError: 10058] A general error has occurred. [nQSError: 4604

  • Error when creating spatial index in 10g

    Hello. I have a problen when I try to create a spatial index. The strange thing is that the same commands always works fine in some machines, but if always fails in others. I tryed in diferent versiones of Oracle, but I have the error in al of them.

  • Data Recovery software recommendations?

    I want to try to recover any or all of data lost on my iMac in Fire Vault. Would you recommend Data Recovery II, Disk Warrior, Stellar Phoenix, or something else? Pros, Cons? Thanks!

  • I can't open my apps!

    Just purchased my 1st iPad, I wanted to load the apps that I already have on my iPhone, this went without a problem until I went to open the apps ! Nothing happens ! Has anyone else experienced this or am I doing something wrong ?