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.

Similar Messages

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

  • 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

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

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

  • 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

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

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

  • How can I use my mobile number to send and receive sms through Messages Mac?

    How can I do this? I am in the Philippines. Thanks.

    You can only use your phone number with iMessage if you have got the iPhone. If you have got it, on the Mac, open Messages, go to Messages menu (on the menu bar) > Preferences > Accounts, and tick the phone number

  • Send and Receive SMS messages from US to South Kor...

    I want to be able to receive and send SMS messages from my skype to my friend's cell phone in Korea
    When I send it they receive it, but they can't respond it back to me because it is an international text.
    Is there anyway that I can buy a Korean online number when I'm living in US?
    and with that number will I be able to talk and send/receive messages with my friend?

    @ sberman -Hi-I have my settings as you described and I do have a text msg. plan with At&T. I'm still puzzled, however; I had the same plan with he former phone-the ancient 3Gs and with it, I was able to send/receive text, photos, etc. to non-Iphone users via WiFi as long as I was home and within distance of the connection. I did not have to have my cell data "on" in order to send/receive anything. Everything transmitted through WiFi-and did not impact my  charges or cell data limits.. I know I must use the cell data ON when I'm away, but don't understand why/how I can't do the same as before I upgraded to the 5c. Admittedly, I am certainly NOT in the stratospheric league as so many phone experts here-I do make the attempt to understand, though..
    I read on one of the numerous help/answer sites that apparently someone else had registered the same complaint with Apple and now has a pending lawsuit-and hoping to get class-action status on the issue. I'm fairly sure this is the same-although I cannot be 100% certain given my lack of expertise.
    I certainly appreciate your rapid response-as a newbie to these communities, I didn't expect any answers to my questions so quickly.Thanks for taking the time to post-have a great weekend.

  • Not able to send or receive SMS messages on iMessage on mac

    When I first updated to Yosemite the new SMS feature on iMessage was working. I had to replace my home button and screen on my iPhone 5s and after that it stopped working. I am not sure if having that repair done on my phone has anything to do with my above problem. Please help

    Hi Ralph,
    Thank you for your reply.
    Ok, I will try to explain myself better.
    When I say:
    - Messages, I am talking about the software to send and receive iMessages and SMS.
    - iMessage, is the blue bubble
    - SMS is the green bubble
    Facetime is because if someones callsme and I do not answer quickly on iPhone, and the Macs are using the same network as iPhone, the VoiceCall pops ups and rings, and usually I activate the Facetime option (when is a iPhone). Sorry about this confusion.
    So basically, a week ago, I could send and receive SMS, iMessage on my Macs to/from anyone.
    Now, I just can send iMessages (blue bubbles with blue name/contact on top [TO:]) and I can't send SMS (text messages, green bubble), I receive error (red exclamation point) and the name/contacts on top [To:] are red.
    And as I told, I think it might be because of the new iOS update with iTunes recovery. Because it is the only similar thing I can relate with "loyalchiver" (when an iPhone goes to repair, the restore it.) That's why I tried signout/in in all Macs, but still not working.
    About the Text Forwarding function, I had searched and what I was getting was to go to Settings > Messages > Text Message Forwarding, but this last option didn't appear, so I thought this was because the pages/foruns that I was reading was for the version 8.1 and not 8.1.1 (Apple could change it, I don't know). But while I was trying to put this working, I had rebooted some where and when I saw your reply, I went again there, and I had the Text Message Forwarding option, so all I had to do was activating it. Thank you!
    To "labelchiver", I am not sure how I did it, but try this:
    1. close all applications running on background.
    2. reboot your iphone.
    3. go to Settings > Messages > Text Message Forwarding .
    4. If you can enter there and your mac is linked, unlink it and link it again.
    5. Hope it works for you
    Once again, thank you for your help and I apologize for my  confusions about the labels. Cheers!

  • Code to automatically sms send and receive by sql server

    I want you to tell me the necessary code in vb and sql to automatically send and receive sms from sql database.i know only that i have to create one table for it in the database.please anybody who knows post the code for me.

    Hi mintesnot h.benti,
    According to your description, since the issue regards VB code, as other post, you need to post the related problem on Visual Basic forum at
    http://social.msdn.microsoft.com/Forums/vstudio/en-US/home?forum=vbgeneral. It is appropriate and more experts will assist you.
    In addition, if you want to use a SQL Server database, and it makes SMS sending and receiving possible through database tables in your VB.NET application. You may need to use the 3<sup>rd</sup> tools, such as OZEKI NG SMS Gateway or others.
    http://www.ozekisms.com/php-sms-api-asp-sms-A/index.php?owpn=586&sms_gateway=sms_VB.NET_database_sms_example_guide
    Note: Microsoft is providing this information as a convenience to you. Microsoft does not control these sites and has not tested any software or information found on these sites; therefore, Microsoft cannot make any representations regarding the quality,
    safety, or suitability of any software or information found there. There are inherent dangers in the use of any software found on the Internet, and please be cautious and ensure you have completely understood the risk before retrieving any software from the
    Internet.
    Regards,
    Sofiya Li
    Sofiya Li
    TechNet Community Support

Maybe you are looking for

  • Report Viewer 9 Compresses Reports In Newer Browsers

    Deep in the HTML generated by the report viewer when viewing a report on a web page, are a couple of frames then a table that holds the report.  In the table are two cells.  The first is called oReportCell and the second doesn't have any name.  The r

  • Why can't I access photos on my desktop after iOS 7 update?

    I'm using windows 7 and when I connect my iphone to my computer I can see my iphone come up as a camera icon, as usual.  I click into it and there is a DCIM folder but it's empty.  I used to be able to access all the photos on my phone until I update

  • Regarding  Display of Invoice address in Smartform

    Hi  we are displaying invoice address in Smartfrom(ZBBP_PO)(Purchase Order Output). But it is displaying only in English.Even if the communication language of the user is DE(German),I debugged the program what i found is in ADRC(Addresses (Business A

  • My screen is Cracked

    Hello My screen is cracked. How much would a replacement be and if under warranty, is their a way i can find out the time I have left to use it

  • Problem with Compiz Fusion 0.5.2 Internal Server Error

    I trying compiz fusion 0.5.2 version, but I have this error: $ sudo pacman -Sy compiz-fusion :: Synchronizing package databases... current is up to date extra is up to date community is up to date compiz-fusion is up to date :: group compiz-fusion: c