API for sending an SMS

Is there an API for sending an SMS from a Mac to a cellphone, similar to what iChat does

IIRC there are a few API's that tie in to their HTTP services for sending SMS. An old colleague had used http://sourceforge.net/projects/smstools/

Similar Messages

  • Technology for send free sms.

    hi
    i want to make site for sending free sms in J2EE so
    can anyone tell me which technology i should used of send free sms.

    Doesn't exist.

  • Set of subVIs for sending/receiving SMS written in LabVIEW

    I've just post a set of programs  for GSM modem on the following site:
    https://sites.google.com/site/tstalevski/labview-send---receive-sms-message
    With these subVIs you can send, receive, delete and list SMS meseges. Also you can easily test AT commands.
    If you have some questions regarding to using programs do not hesitate to contact me by e-mail.
    Trajan Stalevski
    [email protected]

    Hi
    There is no need to develope mobile application for
    sending SMS from the PC.
    n general, there are two ways to send SMS messages
    from a computer / PC to a mobile phone:
    Connect a mobile phone or GSM/GPRS modem to a
    computer / PC. Then use the computer / PC and AT
    commands to instruct the mobile phone or GSM/GPRS
    modem to send SMS messages.
    Connect the computer / PC to the SMS center (SMSC) or
    SMS gateway of a wireless carrier or SMS service
    provider. Then send SMS messages using a protocol /
    interface supported by the SMSC or SMS gateway.I would like to know how do you set up the whole thing. What are AT commands and Where do i get thm and how do i use them. i am sorry for asking so many question but i am really interested in knowing this. I am doing my school project which requires me to send sms from my PC.
    Please help!!!!
    Thanks
    Kholi

  • I Need software or portal for sending bulk sms for free.!!!

    Hi Blackberrians,
    I am a young IM and i have a big problem. Thank God i have identified the problem. Well, i pray someone will help me out here.
    I need a way in which i can send bulk sms (in thousands) without any payment. I need it to promote my service in my region. I have the phone numbers in thousands already.
    If you know any software that can enable internet to phone bulk sms sending without a fee. (I can afford to purchase the software if i won't pay any other fee to send the bulk sms). Kindly post me a reply here.
    I came across many portals while google searching but, they seems to be fake. (I sent msg to my personal phone but it never delivered).
    If you have a solution, kindly help me out.
    I will be glad you do so.
    Thanks
    Ritchie Blackmore
    Mobile Advertising
    www.txt2get.com

    There's not a good app for this ON the BlackBerry... for obvoius reasons (spam).
    And free? Doubtful.
    Personally, because of the obvious spam generated by software just as this, I hope it's all shut down, but that's my personal opinion.
    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

  • Java apis for sending SMS

    I want to send sms through a mobile connected to my computer through some datacable. Are there any APIs or tools or anyhting in JAVA to do this? I will be happy if its available for Linux as well as windows

    Hi Sue,
    it doesn't have such API's. You have to use it through Developer Studio. Yet.
    Regards,
    Benny

  • OCMS API for sending text message to OC?

    Hi there,
    Could anybody share your knowledge on this topic?
    In fact, I would like to implement such a scenario: By clicking on a button on a web page, a text message will be sent to Oracle Communictor running elsewhere.
    Thanks a lot.
    Yong

    Hi
    it is very simple
    just install the SCE for Eclipse by using the OCMS install,
    then you will get access to a sample application called messagesender which
    does exactly that.
    Cheers
    Lucas Persson

  • API's for sending SMS messages

    Where can I find documentation on how to send/receive SMS messages via Oracle WE? Are there any API's available? I am currently on v1.0.2.2.

    Hi Friend,
    It is a great difficult to find API for sending SMS messages....but i succeeded....for sending SMS messages there is a Class Calles SmsSender and use
    sendSms(String mobileno, String message).....it will send message to the given mobile no...before i hope u have configured SMS Properties in Notification.properties file..
    and Coming to receive SMS...there is one more Class SmsServer which listens to all the messages coming on the configured port..now you need to customize this class...
    All the best....
    Cheers
    Krishna

  • Sending command to a mobile phone blugged into a pc to send an sms

    hi.
    i am new to this field, but i heard of "at command" that are helpful to control the mobile phone from a pc. And Java supports this...
    this is the case:
    1- a mobile with a valid sim card is connected via USB with the pc.
    2- an application is running at the pc (java application)
    on this application we need to add a module/class that sends command "at command" to our connected mobie with 2 parameters:
    1- the phone number
    2- the message
    MyClass.sendViaMobile("+962795940824", "we want to inform you that u got the help :-)");what i need is how to start this, what do i need to know,and what api's i need to use
    regards,
    bilal
    Message was edited by:
    bilal_RD

    hi mlk
    i found the rxtx api, but i got now a question,
    how to connect to a usb port?
    it seems that it is easy to deal with com port or serial port, but until this moment usb didnt work,
    in my case, the mobile is connected via usb port.
    this a code that uses the RXTX API, whaere do i need to modify to connect using usb?
    *note, the following code is written by someone else, it works via com port...
    //     SendMessage.java - Sample application.
    //          This application shows you the basic procedure needed for sending
    //          an SMS message from your GSM device.
    //     Include the necessary package.;c:\classpath\smslib.jar;c:\classpath\comm.jar
    package examples;
    import org.smslib.*;
    class SendMessage
         public static void main(String[] args)
              // Define the CService object. The parameters show the Comm Port used, the Baudrate,
              // the Manufacturer and Model strings. Manufacturer and Model strings define which of
              // the available AT Handlers will be used.
              CService srv = new CService("COM1", 19200, "Nokia", "6630");
              System.out.println();
              System.out.println("SendMessage(): Send a message.");
              System.out.println("  Using " + srv._name + " " + srv._version);
              System.out.println();
              try
                   // If the GSM device is PIN protected, enter the PIN here.
                   // PIN information will be used only when the GSM device reports that it needs
                   // a PIN in order to continue.
                   srv.setSimPin("0000");
                   // Normally, you would want to set the SMSC number to blank. GSM devices
                   // get the SMSC number information from their SIM card.
                   srv.setSmscNumber("");
                   // OK, let connect and see what happens... Exceptions may be thrown here!
                   srv.connect();
                   // Lets get info about the GSM device...
                   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() + "%");
                   // Lets create a message for dispatch.
                   // A message needs the recipient's number and the text. Recipient's number should always
                   // be defined in international format.
                   IOutgoingMessage msg = new COutgoingMessage("+5550000", "Message from SMSLib for Java.");
                   // Set the message encoding.
                   // We can use 7bit, 8bit and Unicode. 7bit should be enough for most cases. Unicode
                   // is necessary for Far-East countries.
                   msg.setMessageEncoding(IMessage.MESSAGE_ENCODING_7BIT);
                   // Do we require a Delivery Status Report?
                   msg.setStatusReport(true);
                   // We can also define the validity period.
                   // Validity period is always defined in hours.
                   // The following statement sets the validity period to 8 hours.
                   msg.setValidityPeriod(8);
                   // Do we require a flash SMS? A flash SMS appears immediately on recipient's phone.
                   // Sometimes its called a forced SMS. Its kind of rude, so be careful!
                   // Keep in mind that flash messages are not supported by all handsets.
                   // msg.setFlashSms(true);
                   // Some special applications are "listening" for messages on specific ports.
                   // The following statements set the Source and Destination port.
                   // They should always be used in pairs!!!
                   // Source and Destination ports are defined as 16bit ints in the message
                   // header.
                    msg.setSourcePort(10000);
                    msg.setDestinationPort(50000);
                   // Ok, finished with the message parameters, now send it!
                   // If we have many messages to send, we could also construct a LinkedList with
                   // many COutgoingMessage objects and pass it to srv.sendMessage().
                   srv.sendMessage(msg);
                   // Disconnect - Don't forget to disconnect!
                   srv.disconnect();
              catch (Exception e)
                   e.printStackTrace();
              System.exit(0);
    }

  • Need 8 seconds to send 1 sms(short message)

    please i need your help,
    this is my video, it took 8 seconds to send 1 sms (short message)
    http://www.youtube.com/watch?v=TYeK7dP1fzw
    why my z10 very slow respond when i try to send sms (short message)
    its not happen to whatapp or bbm, just happen when i send a sms (short message)
    any idea to improve the speed for send 1 sms (short message) ?

    I have the same problem. my screen freezes if i want to leave sms as well. have you received any response from blackberry?

  • How send/receive sms in j2me

    Hi Friends,
    I am very new to J2ME.I need source code for sending/receiving sms with J2ME as application.
    Can you give the guidence.
    Thanking you.
    Cheers,
    Sateesh

    yea google is ur friend. also try and get the documentations from jcp.org
    what you need is JSR 205

  • API for FAX

    Hello All
    Is there any API for sending FAX ???? just like telephony APIs???

    I am anxiously waiting for the reply......so plz reply to this becoz its really important and urgent!!!

  • API's for email and SMS

    Hi,
    Does anyone know of there are any API's to open and read SMS and email messages?
    Also, are there any API's to do with turning off the audiable alert upon receipt of SMS and emails.
    The final API I am interested is one that makes an audiable alert.
    Please could anyone throw any light on what I am after.
    Many thanks in advance.
    Richard Thomas.

    Richard,
    While still in the specification phase,
    look for JSR120 Wireless Messaging API.
    This is being done through the JCP Process.
    See:
    http://www.jcp.org/jsr/detail/120.jsp
    Siemens is the Spec Lead, with nearly
    every wireless player and Java technology
    player in the expert group. This API was
    conceived to address the lack of a standard
    and open API for SMS Messaging, among other
    things.
    I don't know the specifics about time tables
    for this to become available (either spec,
    api, or implementation), but you can bet
    that all of the handset makers on this
    JSR have implementations ready to go.
    Good luck.
    David
    Hi,>
    Does anyone know of there are any API's to open and
    read SMS and email messages?>
    Also, are there any API's to do with turning off the
    audiable alert upon receipt of SMS and emails.>
    The final API I am interested is one that makes an
    audiable alert.>
    Please could anyone throw any light on what I am
    after.>
    Many thanks in advance.>
    Richard Thomas.

  • As a part of my Daily Reporting Activity; i have to send 35 SMS everyday. Can someone suggest me which software is suitable for my usage as it's tedious job to forward the same sms report 35 times. I am using  IPhone 3GS -32 GB. Sincerly req your reply

    As a part of my Daily Reporting Activity; i have to send 35 SMS everyday. Can someone suggest me which software is suitable for my usage as it's tedious job to forward the same sms report 35 times. I am using  IPhone 3GS -32 GB. I am using service of Vodafone, Mumbai. & when i first time sent 35 SMS (having habit of Nokia to send group SMS at the click of one button) my IPhone sent 35 MMS.

    Found something for you that might be useful:
    http://itunes.apple.com/us/app/igroup-sms/id377378452?mt=8

  • Maximum retries for sending mail ( java mail api )

    Hi,
    How can I set the property "maximum retries for sending mail" for my smtp through java mail api ?
    Is there any property that I need to set in the Javamail session or any other way out ?
    Thanks.

    That's a server property. You would set that in your server configuration. JavaMail is for sending and receiving mail, not for controlling mail servers.

  • What are the messaging apis for sms for developers at ui and framework side

    what are the messaging apis for sms for developers at ui and framework side.It would be better if i get the apis for iOS7.If not, Please let me know if i can acess the apis of older version

    you will likely get better response here
    https://discussions.apple.com/community/developer_forums

Maybe you are looking for

  • What is new in Remote Desktop Client Update 3.8.2 v1.1?

    What is new in Remote Desktop Client Update 3.8.2 v1.1? Also, how can we tell if clients are on 3.8.2 v1.1 and not 3.8.2 from ARD? Apple isn't providing us with detailed information so I am reaching out to the community. THanks, Andrew

  • Can I able to include image/.js file to payload-body.jsp

    Dear Experts, Could anyone please tell me that how can I refer a external javascript file from payload-body.jsp and where should I place the same. Also please tell the same to display an image. Please suggest me ASAP. Thanks, Rajesh

  • CRM Doubt.

    Hi CRM Experts, I have doubts on CRM Extraction.As i am new to CRM, Please help on this. 1. What is the use of BWA1 Transaction in CRM ? I have given the datasource "0BBP_BP_STATUS_ATTR" but it is throwing the error as "DataSource 0BBP_BP_STATUS_ATTR

  • Mtp nexus 5

    So I'm pulling my hair out on this one.. I have already done quite a bit of googling, as well as going over many of the threads on this forum, I can see another use conceded defeat and gave up here: https://bbs.archlinux.org/viewtopic.php?id=177477 M

  • Mac: installer failed to initialize

    I currently have a macbook, I am trying to install illustrator from my Creative suite disc...(i have installed photoshop from this disc over a year ago and it worked) when i went to try it this week i get a "installer failed to initialize". please he