How to send instant messages from my mac

I would like to know if it's possible to send instant messages to a cell phone from my mac..

Depends on the standards supported by your cell phone. Skype does exist for PowerPC.
iChat supports ICQ and AOL instant messaging as well Jabber based chat standards. If you can get one of these, you can go through iChat.
And finally for Twitter, some options on this article:
http://ppcluddite.blogspot.com/2011/09/twitter-clients-for-powerpc.html

Similar Messages

  • I own osx mountain lion with messages.When i go to create a new message i dont undrestand why you can send it to their email.also is it possible to send a message from my mac to another mac that has mountain lion. MacBook, OS X Mountain Lion, help me

    I own osx mountain lion with messages.When i go to create a new message i dont undrestand why you can send it to their email.also is it possible to send a message from my mac to another mac that has mountain lion.
    MacBook, OS X Mountain Lion, help me

    The recipient needs to have Messages set up with the e-mail. Check the image below:
    Hope it heps.
    JP

  • If i send a message from my mac it comes up as the same convo as my iPhone but starts a new convo for the receiver :S

    When i send a message from my mac it comes up as the same convo on my iPhone but starts a new convo for the receiving person, this is no good :S
    Any help?

    This is using the new Messages Beta by the way ^

  • How do i send sms messages from my mac to a phone

    the gurl from apple said i could send sms messages from my imac to a phone. How do i di that?

    Hi Lanny,
    Actually those two pics don't tell you what you need to know.
    The First is correct as it can be from the Messages app but the second goes to no way to tell you how to do and b fact does not even mention SMS messages.
    @ 10411
    You will need to have an AIM or AIM Valid name that you can add to the Messages > Preferences > Accounts at the + icon below the list.
    Next the Mac need to be in the United States.
    Go to System Preferences > Language and Text and set the Region to the Untied States.
    (In iChat this added SMS items to some of the Menus in iChat)
    The iPhone has to be on a Carrier that is in the United States   See list
    Which in turn means the phone number is a United States one (+1 country code)
    This means you add the Cell/mobile number as if it were a Buddy to an AIM list.
    So Creating an Address Card for "SMS Test" and adding the mock number +1234567890 to that I get this in Messages  (Mousing over the Name to see the "Screen Name" which is the number in this case)
    Basically this is a feature that iChat has always had since AIM included a link to SMS to certain Phones.
    Messages does everything iChat did/does and this includes SMS Messaging via an AIM Buddy list even though in this case the Menu items has disappeared.
    AS has been said there are also other methods.
    8:24 PM      Saturday; April 6, 2013
      iMac 2.5Ghz 5i 2011 (Mountain Lion 10.8.3)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • My husband and I share an iTunes account. I just got a mac, but everything I send by message from the mac appears to come from his phone. How do I correct this?

    My husband and I share the itunes account. I just got an iMac. Everytime I send a message from my iMac, it appears to come from my husband's account phone number. Is there any way to fix this? Also, when I open iMessages, all the texts are from his phone (his text conversations).
    Thank you so much for your help!
    Myrna

    Try This:
    Open up the imessage app on your Imac.  Once you have it opened go to top left corner of your screen next to the apple picture and the word MESSAGES appears. Click on it then click on preferences and uncheck your husbands phone and number and or any other numbers which are checked. I had same problem this fixed it. Also if you wanted to you can open up your own Apple account, but that's not really necessary. My wife and I both share the same as you do

  • How to send a message from server to a particular client

    Hi all,
    I need to send a message from one host to another host which are connected in local domain. Now I'm able to send a message from client to server and vice versa but what I need is the server should route that message which I send through one client to another host(client) .
    How can I do that ?
    Please give me some ideas how to do that .
    Thanks in advance
    Edited by: m.parthiban on Mar 5, 2008 1:20 PM

    ejp, thanks for your reply . can you please explain me bit more by providing code snippet ?
    This is what I have done till now :
    MyServer:
    package connection;
    import java.io.BufferedReader;
    import java.io.IOException;
    import java.io.InputStreamReader;
    import java.io.OutputStreamWriter;
    import java.io.PrintWriter;
    import java.net.ServerSocket;
    import java.net.Socket;
    public class MyServer {
          * @param args
         public static void main(String[] args) {
              String ss ="",temp ="";
              Socket clientLink=null;
              try {
                        ServerSocket sockServer = new ServerSocket(6000);
                        while(true) {
                             clientLink = sockServer.accept();
                             System.out.println("Connection Established");
                             InputStreamReader isr = new InputStreamReader(clientLink.getInputStream());
                             BufferedReader bufReader = new BufferedReader(isr);
    //                         System.out.println("buf "+bufReader.readLine());
                             try {
                                  while ((temp=bufReader.readLine())!=null) {
                                       ss+=temp;
                                       System.out.println("ss   "+ss+"Temp "+temp );
                                  System.out.println("Client > "+ss);
                             } catch (IOException e) {
                                  System.out.println("while reading");
                                  e.printStackTrace();
                             OutputStreamWriter osw = new OutputStreamWriter(clientLink.getOutputStream());
                             PrintWriter pw = new PrintWriter(osw,true);
                             pw.write("Welcome -by Server !!!");
                             pw.flush();
                             clientLink.shutdownOutput();
                             clientLink.close();
              } catch (IOException e) {
                   System.out.println("Can't able to connect");
                   e.printStackTrace();
    }MyClient:
    package connection;
    import java.io.BufferedReader;
    import java.io.IOException;
    import java.io.InputStreamReader;
    import java.io.OutputStreamWriter;
    import java.io.PrintWriter;
    import java.net.Socket;
    import javax.swing.JOptionPane;
    public class MyClient {
          * @param args
         public static void main(String[] args) {
              try {
                   String serverMsg="",temp="";
                   Socket client = new Socket("127.0.0.1",6000);
                   PrintWriter pw = new PrintWriter(client.getOutputStream(),true);
                   pw.write("Hi ,Accecpt me");
                   pw.flush();
    //               pw.close();
                   client.shutdownOutput();
                   InputStreamReader isr  = new InputStreamReader(client.getInputStream());
                   BufferedReader bufRead = new BufferedReader(isr);
                   while ((temp=bufRead.readLine())!=null) {
                        serverMsg +=temp;
                   System.out.println("Server > "+serverMsg);
                   JOptionPane.showMessageDialog(null, serverMsg);
                   client.shutdownInput();
                   client.close();
              } catch (IOException e) {
                   System.out.println("Failed to connect");
                   e.printStackTrace();
    }Once again thanks for the time you spend to reply me.

  • How to send JMS Message from a BPM Process

    Hi All
    I have small query regarding sending JMS Message from a bpm process. Is it possible to send JMS message from one bpm process to another bpm process.
    I have a scenario in which I need to send a JMS message to a queue where another process is listening on that queue and as soon as the message is received on the queue the process instance is created.
    I know how to listen for the JMS message on the queue, but I don't how to send a JMS message from a process.
    Also Can I create process by sending the Notification to the process instead of a JMS message. But the process to be created is not a subprocess i.e. Can notification be send accross different processes.
    Any information or example in this regard would be helpful.
    Thanks in advance
    Edited by: user9945154 on Apr 22, 2009 7:46 PM

    Hi,
    Here's one approach to sending JMS messages from an Oracle BPM process. If you're doing this just to send a message into another process, do not take this approach. It's far easier and quicker if you do this using the OOTB "send notification" logic.
    These steps describe how to do this using WebLogic. The steps would be different if you're using another ap server / JMS provider.
    1. Guessing you've already done this, but first expose the two required WebLogic jar files for JMS messaging as Java components in the External Resources. The two files for WebLogic are weblogic.jar and wljmsclient.jar” (located in the < WebLogic home directory > /weblogic/server/lib” directory).
    AquaLogic BPM JMS Queue Listener for WebLogic 8.1
    2. You've probably already done this, but add an External Resource to represent the J2EE container:
    • Name: “weblogicJ2EE” - this is important and will be used in the next step
    • Supported Type: “GENERIC_J2EE”
    • Initial Context Factory: “weblogic.jndi.WLInitialContextFactory”
    • URL: “t3://localhost:7001”
    • Principal: and Credentials: whatever userid and password you defined to access theWebLogic administrative console.
    3. Create the External Resource that represents the send queue configuration. In this example, I'm calling it “WebLogic Send Queue”. This is important - remember what you named it because you will use this name in the logic that sends the JMS message. This new External Resource is configured as:
    • J2EE: “weblogicJ2EE” (same name as the second External Resource you created)
    • Destination Type: “QUEUE”
    • Lookup Name: “weblogic.examples.jms.exampleQueue”
    • Connection Factory Lookup Name: “weblogic.examples.jms.QueueConnectionFactory”
    4. Here's the logic to send a Message to the Queue
    <pre class="jive-pre"><p />msg as String = "Hello World"
    jmsMsg as Fuego.Msg.JmsMessage
    msg = "<?xml version=\"1.0\"?><Msg>" + msg + "</Msg></xml>"
    jmsMsg = JmsMessage(type : JmsMessageType.TEXT)
    jmsMsg.textValue = msg
    sendMessage DynamicJMS
    using configuration = "WebLogic Send Queue",
    message = jmsMsg</pre>
    Note that the “sendMessage” method uses the configuration parameter “WebLogic Send Queue”. You previously created a JMS messaging service External Resource with this name in the third step.
    Again, please don't go this route if you're just using it to send notifications between processes,
    Dan

  • How to send JMS message from oracle to weblogic

    Hello,
    I am facing with a problem of sending jms message from oracle to weblogic. I am using oracle 10g and weblogic server 9.1. Here is the problem. I would like to create a trigger to send JMS message to weblogic server whenever there is an update in oracle database. So I created a java class that will send a jms message to weblogic server. But in that class I use the jndi from weblogic: weblogic.jndi.WLInitialContextFactory
    when I use the loadjava utility to load that class into oracle, the status of that class is invalid though this class is working fine in eclipse with the weblogic.jar included. I was thinking because the jndi from weblogic needs the weblogic.jar in order to work, then I loaded that jar file into oracle (it took about 20 minute to load everything) and everything loaded into oracle from that jar file is invalid and missing some reference.
    So my question is: how do I send a jms message from oracle to weblogic using a java class with the right jndi?
    Any help will be appreciated.
    Thanks
    TL

    It should be quite straightforward to do this. As stated you need weblogic.jar in your classpath, then use 100% standard JMS calls to publish.
    Ensure that you set the following properties before getting your initial context:
    java.naming.factory.initial=weblogic.jndi.WLInitialContextFactory
    java.naming.provider.url=t3://node:7001 (or whatever)
    this will ensure that the correct JMS implementation classes are invoked.
    You can't easily (without some mucking around) build a test implementation in an AQ environment and then deploy to WebLogic because in AQ you don't tend to use JNDI lookups (unless you've implemented oracle JNDI etc) but rather use non standard factory class to create connections etc.

  • How to send the message from front end to XI in sender webservice

    Hi All,
    I am doing webservice to proxy scenario, we want to send the message from front end to XI, front end is java application. can any one please guide me the steps need to done for front end to XI.
    1) we wrote a webservice
    2) i have created data type message type and message interface in IR
    3) i have created sender soap adapter with interface name and namespace.
    4) i have generated webservice in ID
    but how can we send the message from front end to XI sender soap adapter.
    Kind Regards,
    Kiran

    Hi,
    Before going with the SOAP Adapter i suggest you to go through this Disscussion
    Re: about http and soap
    If you are going with the SOAP Adapter means
    >>but how can we send the message from front end to XI sender soap adapter.
    you have to use the XI  Server URL( http://host name:j2ee port/
    Use this as Refference
    http://help.sap.com/saphelp_nw70/helpdata/EN/ae/d03341771b4c0de10000000a1550b0/frameset.htm
    Regards
    Seshagiri

  • How to send communication message from application server to load balancer

    Hi,
    Environment: 8 application servers are clustered behind a load balancer. Java/J2EE based client-server application
    When any one of the servers is supposed to go down, I want to send a message from that server, programmatically, to load balancer something which signifies "server is down or going down, do not forward any client connections to me". This is to avoid any CLOSE_WAITs.
    How do I achieve this? How can I send message programmatically from app server to load balancer? From very basic knowledge, SNMP can be used for this. But do not know how to start of. Any other means is also OK. Need details.
    Thanks
    Sunil

    At the same time we stop accepting any new connections [ServerSocket.accept() will be escaped during server shutdown].Just close the ServerSocket.
    Both these are working fine. But during the 25 seconds, still the client connections gets queued up trying to find that serverNot if you close the ServerSocket.
    reason being the load balancer is still forwarding requests to this server whose shutdown has started but not completed. So CLOSE_WAITS happen.Not if you close the ServerSocket. Not that the CLOSE_WAITS are the actual problem, as they will all disappear when the server exits. It's more that the clients shouldn't have been able to create the connection in the first place. Which wouldn't have happened if you had closed the ServerSocket.
    If we tell load balancer not to send any more client socket connections, then we completely avoid getting CLOSE_WAITS.If you close the ServerSocket ditto.

  • How to send JMS message from pl/SQL to jBoss

    Hi all,
    I need a helping. This is my problem:
    There's a queue which is definitied under the Jboss. I would like send a message from pl/SQL to jBoss.
    Why is't working??
    http://www.oracle.com/technology/sample_code/tech/java/jsp/samples/jms/Readme.html
    thnk's,
    fgy,,

    You can defince a queue in Oracle, then access this queue from your Jboss application. Not sure if you need JMS, but there are some Oracle OCI functions that are certainly helpful for such a task.
    You might look into further details be reading the manual on Oracle Advanced Queuing or Oracle Streams.
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14257/part4.htm#i436427

  • Can't send instant messages from skype on laptop

    Hi! I am having problems sending and receiving instant messages on skype on my Mac laptop. I can receive/send messages from only one specific conversation. All of my other conversations won't let me receive new messages and when I type and send, the text just sits there and a little blue circle spins next to do. I tried logging out and logging back in... nothing changed. So I unistalled skype and then redownloaded it... nothing changed.  I do have the skype app on my iphone, and all of the conversations are working fine there. That is how I know that I am not receiving or being able to send messages on my computer. I really need this issue resolved for my job, though. Any help or suggestions would be GREATLY appreciated!  

    This is broken for most of my group chats as well. Can't receive from some, but can from others, and can't send to some but can to others. Very strange. Haven't identified what differentiates groups that work and groups that don't. Tried one of the posted solutions where the Skype Application Support folder is nuked along with any of the associated plist preferences and re-installed the App. Didn't help.

  • How do you copy messages from one Mac to another?

    Scenario:
    I have one Mac with 7 Mail accounts with messages up until February 2012 (plus the last few days). I have another Mac with 8 accounts (the 7 plus one other) and messages between February 2012 and now.
    How do I get the messages from the second Mac to the first Mac so that the first Mac's Mail doesn't have a big gap?
    This is probably an easy question for people who understand Mail inside out, but not so easy for those who don't!

    No, I think you may have misunderstood what I want to do. I know I can move messages between accounts (or even between Inbox and Sent) - that's very easy to do once Mail is set up.
    What I want is to merge messages between the SAME accounts on TWO DIFFERENT computers. One Mac has messages up until February 2012, and then again from a few days ago. The other Mac has messages from February 2012 up until the present. I just want to bring the messages from the past year or more onto the one Mac, so they are all together and I can put the second Mac away into storage. Mail is the only thing holding me up.
    Is there something I can do with "Archiving" mail from the second Mac, onto a flash drive, then reading the flash drive into Mail on the other Mac? Why, oh why, can't I just 'drag and drop'?

  • How to send a message from Servlet to JSP

    Dear all,
    I have JSP, with JavaScript (AJAX). If the user click on the button, the text will be sent to a Servlet parsed by doGet() and the user get a response to his input, without reloading a page.
    How can I send a message to the users (JSP) from Servlet, if he didn't clicked any button and to other visitor of the page also? Is it possible? I think like a chat, the server sends a message to all users who are subscribed.
    I don't know, what should I get from user, maybe session, that I could send him personal or common messages in his textarea. I should also invoke some JavaScript function to update his page. I have met some chats, you don't do nothing and get messages. It is also without a JavaScript timer, which invokes doGet() method. Asynchronous, only when there is a message.
    Please help me with a problem.
    Thanks in advance.

    Hai ,
    You can send any message through response.sendRedirect();
    here is the coding try it
    import java.io.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    public class SimpleCounter extends HttpServlet {
    public void doGet(HttpServletRequest req, HttpServletResponse res)
    throws ServletException, IOException {
    res.setContentType("text/plain");
    PrintWriter out = res.getWriter();
    String username="java";
    res.sendRedirect("http://localhost:8080/yourprojectname/jspfile.jsp?username="+username);
    }

  • How to send Subtopic Message From Server-Side to Client ?

    I’m new at flex and i have a new question about Flex
    Message Service.
    How to send messages from Server-Side Java Code with
    Subtopic?
    For example.
    I customed a Flex Message Adapter in Tomcat Server , with
    this Adapter , i can send message to Client with following code .
    ---------------------Send message to Client------------
    MessageBroker msgBroker =
    MessageBroker.getMessageBroker(null);
    String clientID = UUIDUtils.createUUID(false);
    AsyncMessage msg = new AsyncMessage();
    msg.setDestination("CustomMsgServiceDes");
    msg.setClientId(clientID);
    msg.setMessageId(UUIDUtils.createUUID(false));
    msg.setTimestamp(System.currentTimeMillis());
    msg.setBody(clientID + "this is my message from server! \n");
    msgBroker.routeMessageToService(msg, null);
    ---------------------Send message to Client------------
    But i want send a message that have Subtopic to the Client ,
    How to do ?
    Thank you for reply.

    There's a white paper that talks about this subject -
    http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=8f1eb6ea

Maybe you are looking for

  • COM exception in Xcelsius

    Hi Experts, I'm gettng a strange error.When i'm trying to connect to bex queries(BICS connectivity in Xcelsius) of my Development system outside my company network , i'm getting an error called "COM exception".Can anyone tell me about this? Is this e

  • $ symbol

    Hi guys I have an issue in the query where I need to display the inventory value (which is a calculated KF) of certain companies. When I execute the query $ symbol displays as a prefix to all numbers except for one company which displays in a seperat

  • JYOuyang: Hi, when I upgraded my AIM account, I accidentally accepted AOL as my home page, and also wiped out my tool bar

    Hi--also having trouble posting content to forum--keep getting error messages--doesn't make sense

  • JDeveloper extension : JDevLibsForAnt

    hi I would like to be able to use Ant to compile and package my code, but I don't want to maintain libraries in two places, JDeveloper and Ant. My first approach was to call JDeveloper from Ant using a custom JDeveloper extension that provides an MBe

  • IPad email questions

    Hi. I use the default mail on my iPad but having an issue with the outgoing mail address. I have my gmail account and now my @ me.com. Trouble is I only want to use and others to see my gmail address and not the me.com address. How can I have only th