Is there a way to send and receive SMS on multiple cellular devices without using iMessage?

I currently own a cellular iPad mini and an iPhone 4s and would like SMS to be the same on both devices as well as my desktop.
After many months of struggling with iMessage, I decided to turn it off entirely.  I discovered that my best friend did not receive dozens of my texts over the span of a few months (I compared our message history side by side).  Seems like it had something to do with traveling in and out of wifi zones or possibly conflicts between our two carriers, ATT and Verizon.  Regardless, I am not willing to dive into iMessage fully until this gets sorted out.  Further, SMS is the standard message format for everyone outside of the Apple sphere, and I do not feel comfortable lumping them together into one app.  If I decide to switch to Android, will all of my contacts with iPhones continue sending me iMessages?
Thank you for your help!

Is there a way to send and receive SMS on multiple cellular devices without using iMessage?
Search the iTunes App Store for any 3rd party SMS apps that may be available.
If I decide to switch to Android, will all of my contacts with iPhones continue sending me iMessages?
Android phones don't receive iMessages, they can recieve SMS messages sent through the iOS Messages app. The app that your contacts choose to use to send you messages is completely up to them.

Similar Messages

  • Send and receive SMS

    Hello!
    Please, can anyone tell me how can I create an application which send and receive SMS at the same time.
    I�ve got an GSM modem. This application must run under Linux. I did it with Windows 98 and it ran fine, but when I try run it under linux I only can send or receive, but not both. I think this is because there are problems with threats ( I'm not sure ), when I created a ServerSocket to accept the socket connection to send messages.
    I don�t know how resolve the problem. I attach the code here:
    import java.io.*;
    import java.util.*;
    import javax.comm.*;
    import java.net.*;
    public class SimpleRead implements Runnable, SerialPortEventListener {
    static CommPortIdentifier portId;
    static Enumeration portList;
    final static String CR_LF="\r";
    final static String AT_ENVIAR="AT+CMGS=";
    final static char CTRL_Z = 26;
    final static String AT_RECIBIR="AT+CMGR=";
    final static String AT_BORRAR="AT+CMGD=";
    InputStream inputStream;
    OutputStream outputStream;
    SerialPort serialPort;
    Thread readThread;
    Thread sendThread;
    Send s ;
    public static void main(String[] args) {
    portList = CommPortIdentifier.getPortIdentifiers();
    while (portList.hasMoreElements()) {
    portId = (CommPortIdentifier) portList.nextElement();
    if (portId.getPortType() == CommPortIdentifier.PORT_SERIAL) {
    if (portId.getName().equals("/dev/ttyS0")) {
    SimpleRead reader = new SimpleRead();
    }//fin while
    }//fin m�todo main
    public SimpleRead() {
    try {
    serialPort = (SerialPort) portId.open("SimpleReadApp", 2000);
    }catch (PortInUseException e) {}
    try {
    inputStream = serialPort.getInputStream();
    outputStream = serialPort.getOutputStream();
    }catch (IOException e) {}
    EscuchaSocket es = new EscuchaSocket(outputStream);
    sendThread = new Thread(es);
    sendThread.start();
    try{
    Thread.sleep(5000);
    }catch(InterruptedException e){}
    try {
    serialPort.addEventListener(this);
         }catch (TooManyListenersException e) {}
    serialPort.notifyOnDataAvailable(true);
    try {
    serialPort.setSerialPortParams(9600,SerialPort.DATABITS_8,SerialPort.STOPBITS_1,SerialPort.PARITY_NONE);
    }catch (UnsupportedCommOperationException e) {}
    readThread = new Thread(this);
    readThread.setPriority(Thread.MIN_PRIORITY);
    readThread.start();
    }//fin SimpleRead
    public void run() {
    try {
    while(true){}
    } catch (Exception e) {}
    public void serialEvent(SerialPortEvent event) {
    switch(event.getEventType()) {
    case SerialPortEvent.BI:
    case SerialPortEvent.OE:
    case SerialPortEvent.FE:
    case SerialPortEvent.PE:
    case SerialPortEvent.CD:
    case SerialPortEvent.CTS:
    case SerialPortEvent.DSR:
    case SerialPortEvent.RI:
    case SerialPortEvent.OUTPUT_BUFFER_EMPTY:
    break;
    case SerialPortEvent.DATA_AVAILABLE:
    byte[] readBuffer = new byte[20];
    try {
    while (inputStream.available() > 0) {
    int numBytes = inputStream.read(readBuffer);
    System.out.print(new String(readBuffer));
    }catch (IOException e) {}
    break;
    }//fin switch
    }//fin m�todo serialEvent
    }//fin clase
    class EscuchaSocket implements Runnable{
    ServerSocket sv = null;
    OutputStream outputStream;
    Send send;
    int puerto = 7117;
    public EscuchaSocket(OutputStream out){
    outputStream = out;
    send = new Send (outputStream);
    try {
    sv = new ServerSocket(puerto);
    }//fin try
    catch (IOException ie) {
    System.out.println("Error en run de EscuchaSocket:"+ie.toString());
    }//fin catch
    public void run(){
    while(true){
    try {
    Socket sc = sv.accept();
    BufferedReader inSocket = new BufferedReader(new InputStreamReader(sc.getInputStream()));
    String leida = "";
    int c = 0;
    while((c = inSocket.read()) != -1)
    leida = leida + (char)c;
    if(!leida.equals(""))
    send.sendString(leida);
         inSocket.close();
    }catch (IOException ies) {
    System.out.println("Error al leer del socket:"+ies.toString());
    }//fin catch
    }//fin while
    }//fin run
    }//fin clase
    class Send{
    OutputStream outputStream;
    public Send(OutputStream out){
    outputStream = out;
    public void sendString(String s) {
    try{
    System.out.println("s:"+s);
    outputStream.write(s.getBytes());
    outputStream.flush();
    }catch(IOException ioe){
    System.out.println("Error en sendString:" + ioe.toString());
    }//fin m�todo sendStirng
    }//fin clase

    To send and recv on the same pipe, I suggest a thread to handle the socket... as you are doing in your code, then create a thread reader and writer for the I/O ( one for input, one for output ). Run your thread and buffer commands/messages/whatever to a byteoutput stream, then when the thread wakes up, it reads the buffer and writes the bytes to a dataoutput stream. The reader will work the same way but you only need to buffer for each command. Of course there are little gotchas along the way, but it's fun programming....
    zorkle.

  • My iphone 4 did not make call. It can receive calls, send and receive sms, internet is working. How can I solve this problem?

    My iphone 4 did not make calls but I receive calls, send and receive sms, emails, etc. How may I solve it?

    I am having the same problem with ios 4.3.5

  • Send and received sms using sony ericson phone

    Hi guys,
    Anyone has written a simple java code that will detect bluetooth device like mobile phone then get authenticated then send and receive SMS via mobile phone? it's like act as a mobile agent. Appreciate if you could post the code here if any.
    Thanks & Regards,
    Mark
    Human 2.0

    may send some AT command to the mobile phone via bluetooth then get back the status if the sms has successfully sent.

  • Java codes and apis to send and receive SMS using a GSM modem(iTegno3000)

    Could any one please send me the codes and apis that can be use to send and receive SMS through iTegno3000 modem(GSM modem).I am a srilankan undergraduate.I am looking forward to hearing from you soon.

    hi i am also have the same doubt ..did u get soluation for this means can u reply to me

  • On Ipad 2 I can't send and receive sms!!! Why?

    On Ipad 2 I can't send and receive sms!!! Why?

    iPad is designed to send iMessages and not SMS.
    You will need 3rd party apps to send SMS.
    https://itunes.apple.com/sg/app/text-me!-free-texting-sms/id338088432?mt=8

  • My iPhone5 cannot send and receive SMS using latest iOs. How can this problem be solved?

    my iPhone5 cannot send and receive SMS after I updated it to iOs 6.0.2. It used to be able to function normally when it was still using iOs 6.0.1.

    Since SMS/MMS is exchanged via your carrier's cellular network only, contact your carrier.

  • I am brand new to the Ipad.  I can't use ICloud unless I upgrade my 10.5 Leopard.  Is there a way to sync documents created in Pages to the IPad without using ICloud?

    Hello.  I am a newbie to the Ipad.  I am currently working with an OS 10.5 Leopard MAC.  I understand that in order to use ICloud I would need to purchase OSX Snow Leopard and OSX Lion.  I am attempting to avoid the expense and to the extent possible sync my IPad with my MAC.  I have created documents on my MAC in pages.  Is there a way to have access to those documents on the IPad without using ICloud.
    A second question concerns web browsing, sometimes you'll open up a page or image and not know how to go back to the previous page. So do I just close and reopen safari altogether or is there another way to get to the previous page.
    Thanks for any guidance you can provide.

    Actually you can use iCloud with the Mac running OS X 10.5.8. You don't sync the documents - you upload to or download them from iCloud.
    You can open a browser on your Mac - Safari is preferred - log into icloud.com, enter your username and password, click on the iWorks icon, click on the Pages section at the top - and then you can drag documents into the browser window to upload files - and you can select a file in the cloud to download to the Mac. I do this on my iMac at work running Tiger 10.4.11. It's kind of slow - and you will get a warning that you may be using a supported browser - but it works.
    In any event, you can use iOS file sharing to send the Pages docs to your iPad. you have to connect to the Mac and do this via iTunes.
    iWork for iOS: About iTunes File Sharing
    Just tap the arrows in the toolbar in Safari to go back and forth. You can open multiple pages using tabs. tap on the + sign to add another tab in Safari.

  • Can't send and receive SMS/MMS/iMessages after restoring iPhone from a backup

    I can't receive and send any type of messages with my iPhone 3GS (iOS 6.1.6) after restoring it from my old backup (also 6.1.6).
    Messages that I'm sending are disappearing immediately after the moment they are sent and they are never delivered. The first time I restored my iPhone I could send and receive messages for 1 day, and I couldn't do it on the next day. This time I was able to send and receive messages for 10 minutes.
    I have used the methods Apple recommends for problems like this, but it doesn't help.

    Hello StepanyanMuradyan,
    Thanks for using Apple Support Communities.
    To troubleshoot issues with not being able to send or receive messages on your iPhone, I'd like you to please follow the troubleshooting outlined below.
    To resolve issues with sending and receiving iMessages, follow these steps
    Check iMessage system status for current service issues.
    Go to Settings > Messages > Send & Receive and make sure that you registered iMessage with your phone number or Apple ID and that you selected iMessage for use. If the phone number or Apple ID isn't available for use, troubleshoot iMessage registration.
    Open Safari and navigate to www.apple.com to verify data connectivity. If a data connection isn't available, troubleshoot cellular data or a Wi-Fi connection.
    iMessage over cellular data might not be available while you're on a call. Only 3G and faster GSM networks support simultaneous data and voice calls. Learn which network your phone supports. If your network doesn't support simultaneous data and voice calls, go to Settings > Wi-Fi and turn Wi-Fi on to use iMessage while you're on a call.
    Restart your device.
    Tap Settings > General > Reset > Reset Network Settings on your iPhone.
    If you still can't send or receive an iMessage, follow these steps
    Make sure that the contact trying to message you isn't blocked in Settings > Messages > Blocked.
    Make sure that the contact you're trying to send a message to is registered with iMessage.
    If the issue occurs with a specific contact or contacts, back up or forward important messages and delete your current messaging threads with the contact. Create a new message to the contact and try again.
    If the issue occurs with a specific contact or contacts, delete and recreate the contact in the Contacts app. Create a new message to the newly created contact and try again.
    Back up and restore your device as new.
    iOS: Troubleshooting Messages - Apple Support
    Take care,
    Alex H.

  • Sending and receiving sms problem

    Hi,
    I try to send and receive message with this command;
    MessageConnection conn = (MessageConnection) Connector.open("sms://" + addr);
    When I run this command, I meet this error:
    java.lang.UnsatisfiedLinkError: isNetworkMonitorActive
         at javax.microedition.io.Connector.isNetworkMonitorActive(Native Method)
         at javax.microedition.io.Connector.<clinit>(Connector.java:142)
         at com.sezo.smsyeni.Sms.sendText(Sms.java:36)
         at com.sezo.smsyeni.Sms.main(Sms.java:24)
    I want to send sms over IR with my phone. (Sony Ericsson K500i)
    Is it necessary to use any API?
    What should I do?
    Thanks.

    Hi Friends,
    I'm new in the J2ME domain. I did try to send SMS from my desktop application to mobile. But at runtime I'm getting the following error:-
    ++++++++++++++++++++++++++++++++++++++++++
    java.lang.UnsatisfiedLinkError: isNetworkMonitorActive
    at javax.microedition.io.Connector.isNetworkMonitorActive(Native Method)
    at javax.microedition.io.Connector.<clinit>(Connector.java:142)
    at MessageSender.main(MessageSender.java:12)
    +++++++++++++++++++++++++++++++++++++++++++++++
    Please let me know what all setup/configuration/dll are required to resolve the problem. Appreciate your input.
    Thanks and Regards,
    -AshokM

  • Send and receive sms on Mac Pro?

    Send and receieve sms on Mac Pro?

    See the other identical thread you opened. Bombarding the boards with identical threads won't cause a faster reply, if at all.

  • Is there no way to make the iPhone 3G support multiple bluetooth devices?

    I use a bluetooth headset and my car has bluetooth support. My old phone would automatically connect to whichever device is on and in range. On the iPhone 3G, I have to manually unpair/pair each time I get home or leave home. This is very cumbersome. Is there no way around this and/or will there be a fix update out soon?

    Go to the control panel/devices and printers, right click on the printer and then select printing preferences. There should be an option in the printing preferences for Page Order. Just change it to the other setting, click Apply then Ok. Print another document and see if page 1 is now on top.
    Binary_Zen (worked at HP )
    Click the white Kudos star to say thanks
    Please mark Accept As Solution if it solves your problem

  • Is there any way to send an event invitation to multiple people, but hide invitees' email addresses from recipients? I need to keep their details private...

    Hi,
    I'm creating a series of events in Lightning, and sending invitations to all my adult class students. Legally, and ethically, I have to keep their personal details private. This includes their email addresses. I can't find a way to send invitations to a dozen people, without them seeing everyone's email addresses. I need something like a bcc option really. Is there a way please? Google calendar seems to be able to do it, but I don't want to use that, I far prefer TB/Lightning - largely because I can then send invitations from my business address instead of Gmail.
    Thanks very much,
    Melanie

    The following is intended as general guidance about changing the to: designation in Thunderbird. I must admit I'm not sure how it works with calendar event invitations. I need to check. Of course, amongst colleagues and in the workplace generally, it's not required to hide addresses, and as that's pretty much the only context I have used automatically generated invitation emails, I hadn't found any need to use bcc:.
    Thunderbird has bcc. Click on to: to change it.
    Tip: change it when you add the first address, then each address you subsequently add will be set to bcc: automatically.
    If you're using a Mailing List, bcc: will apply to each address in the list too.
    And try F9 to see a Contacts Sidebar in the Compose window. This has explicit "Add to..." buttons.

  • HT201263 my iPhone is disabled. since im traveling i have no access to my computer to restore the phone. What can I do to at least use the phone again with it's basic functions (make calls, send and receive sms)?

    My iphone is disabled and I'm traveling. What can I do to reset it to at least use its basic functions (make calls &amp; send / receive sms)?

    There is nothing you can do without doing a restore via the recovery mode.  Since you have iOS 7, if you activated Find My Phone in Settings > iCloud, you can login to your iCloud account, https://www.icloud.com from a computer, and then do a remote wipe of the iPhone...that will return it to factory condition and all contents will be erased.

  • Is there a way to send email to different people at one time without having to reopen address list each time I pick one

    Is there a way to keep email address  list open when sending to multiple people. List closes after choosing one person, then have to open to send to next person, etc. etc.

    There is a way to create a mailing list.
    In the notes app create a list of email addresses separated by commas, i.e. [email protected],[email protected],[email protected]
    Copy the address list
    Create an entry in contacts for the list
    In the email field paste the address list
    When you send an email using the email list, you may get a message saying the email address appears to be invalid, select to send anyway.

Maybe you are looking for

  • Hopelessly stuck in "Recovery Mode"

    Howdy y'all, Got a question which may or may not be able to be resolved here, but looking for some advice: iphone 5c, iOS 8.1.2..... iTunes, v 12.0.1.26 (newest) Friday night, went to bed, forgot to plug phone in When plugged into wall, Saturday a.m.

  • Additional PDF file conversion

    HI All, I see that Adobe XI doesn't convert Outlook files (.PST), is there a way to buy bolt/add on's that would allow for the expansion of file types that XI will convert? Would you know if there are any other tricks/add ons that Adobe can do with r

  • Who knows how to divide PCI and AGP BUS frequency with MSI KT6V mainboard

    I use 2500+ and can overload to 3200+,but my mainboard of KT6V can not divide PCI BUS frequency to 33Hz and AGP to 66Hz. who can tell me how to do ? Thx!

  • CR4E 2 - Working on LINUX?

    Hi all. Question about portability: is there anybody who saw CR4E 2 Java Engine working on LINUX using SQL datasource (no ResultSet, no XML).? My doubts come from the following sample code lines: String DATABASE_DLL = "crdb_jdbc.dll"; propertyBag.put

  • Copying Mail folders from one Mac to another

    I'm consolidating my iMac and laptop, and keeping just the MacBookPro. Mostly, everything's gone smoothly: I networked the two with an ethernet cable, dragged the relevant iMac folders into the Public folder, and copied them onto the laptop. But now