SMS via iChatav?

Hi,
Is there any app/plugin which will send sms via ichat to UK mobile phones? I know it's possible to do that in US. Or perhaps some handy widget which will do that instead?
Thanks
Peter

It only works if your Location set in the International Settings is set for the States and the Phone is also in the States.
I know of someone who sets it this way in the Far East to contact people in the States.
It does not work if your computer is set to another country or the phone is not one registered in the States.
10:02 PM Tuesday; March 9, 2010
Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"

Similar Messages

  • Sending SMS via Bluetooth not working

    Hi,
    I have two Nokia phones, an N73 and an older 6600. I was able to pair both with the Bluetooth in my MacBook Pro SR.
    I can access the web via dial-up networking, so that's working fine.
    However, I am unable to send SMS via AddressBook over the phone. When I click the little connect-to-bluetooth button in AddressBook, I am first asked to pair the phone - even though it's already paired, and connects automatically on both the computer and the phone. Then, when I do enter the code on the phone, the connection just fails. The button gets a slight blue outline but the B symbol doesn't actually light up as it should.
    Send SMS remains grayed out.
    Has anybody got this to work or know what could be wrong?
    PS: I am able to send SMS on Windows using MS SMS Sender, so I am sure that it's not the phone's fault.
    This worked fine with my Titanium Powerbook with USB Bluetooth dongle.

    Thanks for the response, but that's not it. The N73 is listed as supported, and iSync works perfectly well. Dial-Up networking also works perfectly well.
    Only sending SMS via bluetooth doesn't work.
    Also - no idea if this is related - faxing via the 6600 doesn't work anymore, which is strange because it used to work on the TiBook. Most people don't even know you can fax via Bluetooth phone and most newer phones have lost this capability so I guess this is just on its way out. Too bad because it was pretty useful...

  • Problem in sending SMS via using java communication API

    I need to send SMS via my sony ericsson Z530i. It is connected to the com5 port of my system. I got the following code.
    import java.io.*;
    import java.util.BitSet;
    import javax.comm.*;
    import java.lang.*;
    public class SerialToGsm {
        InputStream in;
        OutputStream out;
        String lastIndexRead;
        String senderNum;
        String smsMsg;
        SerialToGsm(String porta) {
            try {
    //            CommPortIdentifier portId = CommPortIdentifier.getPortIdentifier("com5");
                CommPortIdentifier portId = CommPortIdentifier.getPortIdentifier(porta);
                SerialPort sp = (SerialPort)portId.open("Sms_GSM", 0);
                sp.setSerialPortParams(9600, SerialPort.DATABITS_8, SerialPort.STOPBITS_1, SerialPort.PARITY_NONE);
                sp.setFlowControlMode(sp.FLOWCONTROL_NONE);
                in = sp.getInputStream();
                out = sp.getOutputStream();
                // modem reset
                sendAndRecv("+++AT", 30);       // delay for 20 sec/10
                sendAndRecv("AT&F", 30);
                sendAndRecv("ATE0", 30);        // echo off
                sendAndRecv("AT +CMEE=1", 30);  // verbose error messages
                sendAndRecv("AT+CMGF=0", 70);   // set pdu mode
    //            sendAndRecv("AT V1E0S0=0&D2&C1", 1000000);
            catch (Exception e) {
                System.out.println("Exception " + e);
             System.exit(1);
        private String sendAndRecv(String s, int timeout) {
            try {
                // clean serial port input buffer
                in.skip(in.available());
                System.out.println("=> " + s);
                s = s + "\r";         // add CR
                out.write(s.getBytes());
                out.flush();           
                String strIn = new String();
                for (int i = 0; i < timeout; i++){
                    int numChars = in.available();
                    if (numChars > 0) {
                        byte[] bb = new byte[numChars];
                        in.read(bb,0,numChars);
                        strIn += new String(bb);
                    // start exit conditions
                    if (strIn.indexOf(">\r\n") != -1) {
                        break;
                    if (strIn.indexOf("OK\r\n") != -1){
                        break;
                    if (strIn.indexOf("ERROR") != -1) { // if find 'error' wait for CR+LF
                        if (strIn.indexOf("\r\n",strIn.indexOf("ERROR") + 1) != -1) {
                            break;                                            
              Thread.sleep(100); // delay 1/10 sec
                System.out.println("<= " + strIn);
                if (strIn.length() == 0) {
                    return "ERROR: len 0";
                return strIn;
            catch (Exception e) {                 
                System.out.println("send e recv Exception " + e);
                return "ERROR: send e recv Exception";
        public String sendSms (String numToSend, String whatToSend) {
            ComputeSmsData sms = new ComputeSmsData();
            sms.setAsciiTxt(whatToSend);
            sms.setTelNum(numToSend);
    //        sms.setSMSCTelNum("+393359609600");  // SC fixed
            String s = new String();
            s = sendAndRecv("AT+CMGS=" + (sms.getCompletePduData().length() / 2) + "\r", 30);
    //        System.out.println("==> AT+CMGS=" + (sms.getCompletePduData().length() / 2));
    //        System.out.println("<== " + s);
            if (s.indexOf(">") != -1) {
    //            s = sendAndRecv(sms.getSMSCPduData() + sms.getCompletePduData() + "\u001A"); // usefull one day?
    //            System.out.println("Inviero questo >>>> " + sms.getCompletePduData());
                   // if this sintax won't work try remove 00 prefix
                s = sendAndRecv("00" + sms.getCompletePduData() + "\u001A", 150);
    //            System.out.println("<== " + s);
                return s;
            else {
                return "ERROR";
        // used to reset message data
        private void resetGsmObj() {
            lastIndexRead = null;
            senderNum = null;
            smsMsg = null;
        public String checkSms (){
            String str = new String();
            String strGsm = new String();                         
            strGsm = sendAndRecv("AT+CMGL=0", 30);  // list unread msg and sign them as read
            // if answer contain ERROR then ERROR
            if (strGsm.indexOf("ERROR") != -1) {
                resetGsmObj();
                return strGsm; // error
            strGsm = sendAndRecv("AT+CMGL=1", 30);  // list read msg
            // if answer contain ERROR then ERROR
            if (strGsm.indexOf("ERROR") != -1) {
                resetGsmObj();
                return strGsm; // error
            // evaluate message index
            if (strGsm.indexOf(':') <= 0) {
                resetGsmObj();
                return ("ERROR unexpected answer");
            str = strGsm.substring(strGsm.indexOf(':') + 1,strGsm.indexOf(','));
            str = str.trim(); // remove white spaces
    //        System.out.println("Index: " + str);
            lastIndexRead = str;
            // find message string
            // look for start point (search \r, then skip \n, add and one more for right char
            int startPoint = strGsm.indexOf("\r",(strGsm.indexOf(":") + 1)) + 2;
            int endPoint = strGsm.indexOf("\r",startPoint + 1);
            if (endPoint == -1) {
                // only one message
                endPoint = strGsm.length();
            // extract string
            str = strGsm.substring(startPoint, endPoint);
            System.out.println("String to be decoded :" + str);
            ComputeSmsData sms = new ComputeSmsData();
            sms.setRcvdPdu(str);
    //        SMSCNum = new String(sms.getRcvdPduSMSC());
            senderNum = new String(sms.getRcvdSenderNumber());
            smsMsg = new String(sms.getRcvdPduTxt());
            System.out.println("SMSC number:   " + sms.getRcvdPduSMSC());
            System.out.println("Sender number: " + sms.getRcvdSenderNumber());
            System.out.println("Message: " + sms.getRcvdPduTxt());
            return "OK";
        public String readSmsSender() {
            return senderNum;
        public String readSms() {
            return smsMsg;
        public String delSms() {  
            if (lastIndexRead != "") {               
                return sendAndRecv("AT+CMGD=" + lastIndexRead, 30);
            return ("ERROR");
    }When i compile, there is no error. But when i execute it, the following error comes:
    E:\java\JavaSmsApi>javac SerialToGsm.java
    E:\java\JavaSmsApi>java SerialToGsm
    Exception in thread "main" java.lang.NoSuchMethodError: main
    What might be the error? Somebody help me. Thanks in advance.

    You are probably trying to run this as a CLDC application instead of a MIDP application (aka a MIDLet). Since CLDC apps start with a main(....) your runtime looks for one but does not find it, hence the error. Please recheck the project configuration.

  • Java application to send an SMS via my DKU-5 serial cable.

    Hi,
    I'm not sure if this is the right forum but....
    I'm doing a project for college which involves Learning Content Managemnt System.
    I've developed a few features for this including chat, forums, etc.
    I want to develop an SMS system to use in conjunction with the chat application
    ie. If a user is not online then the chat message will be sent to their mobile in the form of an SMS.
    Looking for help in creating a Java application to send an SMS via my DKU-5 serial cable.
    Any ideas??
    Thanks
    Message was edited by:
    kiwicas

    hiii u can try.........javax.comm package.
    its best for serial communication.
    contect [email protected] if required
    jigar

  • Best app for send sms via email?

    Anyone got any idea what the best app is to download to send sms via email?
    I downloaded text-free yesterday, but doesnt work and the message keeps bouncing back to my email in box as a failed mail delivery!!
    I am in the UK in case that makes a difference!!

    If you want to text people for free, i highly recommened AIM application. Its an IM app built in with an feature that allows you to text anyone on your contacts for free. Just let them know that its you texting them the first time.

  • SMS via GPRS

    Does anyone know how to make a MIDLET that can send sms through GPRS?
    Can i use HTTPConnection to do that and how....
    Please Help...

    Dear printisor,
    Based on your reply, does it means that i should send parameters through gprs to my php script, then php script process parameters sent by j2me, then sends it through sms gateway??? Does the process runs like this???
    i'm able to send parameters via gprs to php, but i dont know how to send sms via php... :-D

  • SMS Via J2ME

    Hi, can I know anyone of you can lend a help on how to send SMS via J2ME? Is there a way to do it or maybe is there any sample codes that can be of any help. Thanks in advance....

    Hi,
    there is no support in J2ME for SMS, please refer these links
    http://developer.java.sun.com/developer/community/chat/JavaLive/2002/jl0625.html
    http://jcp.org/jsr/detail/120.jsp

  • How can I send & recieve SMS via Mac ?

    How can I send & recieve SMS via Mac ?
    Handoff is already working fine between my iPhone 5 & Mac, I want to know how I can send & recieve SMS using my MAC

    Thank you so much
    I have another problem please:
    Handoff is working perfectly between my iPhone 5 & my Macbook pro, I also can receive calls on my mac and iPhone 5 at the same time, but when I try to make calls from my laptop it says that message:
    I am already using the same account for both of them

  • Sending an SMS via adress book and my Phone

    I have an SE K800i, How do I send SMS and Call via address book and my phone when it is connected via blutooth ?
    I know it can be done but I don't know how to do it.
    Many Thanks

    Hi,
    I recently picked up the same phone, ie the Sony Eric K800i and have been trying to get the 'send sms message' through the address book. I know this works 'cos i had a previous sony ericsson model and it worked fine but with this unit it doesn't seem to push it through.
    Where am i going wrong?....... I've set my device up with the Bluetooth *** and paired it and clicked on the button in the top corner of the address book ........ but to no avail,...... can anyone help.
    Thanks
    Robert

  • SMS via Adress book

    Hi
    I'v been sending texts via address book no probs. A friend said when you receive a text it should pop up on the computer screen this does not happen for me. However when i receive a call this does show up on the screen. So should it work with texts also?
    John

    Not all phones are fully compatible. With my Nokia 6750 I can send SMS from the Mac, and the Nokia will flag an incoming call on the Mac, but I can't receive SMS on the Mac.
    AK

  • Address Book - mobile phone drop-down menu to send SMS via iChat

    Using iChat, you can send a SMS text message to mobile phones using the format of +19375551212. And depending on the wireless service, the receipient can reply to the text message and that message will appear via iChat. Anyone know of any plugin or app that can add this menu option to the mobile phone number menu?

    I answer this myself....http://home.earthlink.net/~dwbrowne/software/abscripts.html

  • Using Address Book to send SMS via Bluetooth

    Hi all,
    I recently upgraded to 10.4.6 (from 10.4.5) to take advantage of the new iSync support for the Nokia N70.
    (I had previously been using a modified Metaclasses.plist hack for this and prior to the upgrade to .6, restored the original .plist)
    I also followed the advice in Apple article 303419 about removing the phone from iSync.
    So, upgrade fine and re paired phone with iSync but now find that I can no longer use Address Book to send SMS message or dial a call to current contact.
    This worked fine with the hack!
    Any ideas?
    B
    1 GHz PowerPC G4   Mac OS X (10.4.6)  

    I am using OS X10.4.6 via Bluetooth connecting to Nokia N70 also. I have no problem with iSync and file transfer. But I can NOT send and receive SMS from Address book.
    Roger Hong
    iBook G4   Mac OS X (10.4.6)  

  • Possible to sending sms via mac mail?

    Is it possible to send a message to a group (from address book contacts) and choose whether it goes via SMS (to a cellphone) for some recipients or email to other recipients?

    In the USA, you can do so by addressing the email to {10digitPhoneNumber}@{cellCarrierDomainName}.
    Examples for this, for USA carriers, are given at http://www.tech-recipes.com/rx/939/smsemail_cingular_nextel_sprint_tmobile_verizonvirgin. I would imagine that the same sort of technique would work in AUS. The trick is finding out the carriers' domain names.
    You might try a google search using search terms "email domain cellphone text message {list of names of cellular providers in AUS}" or have somebody text message your email address then it will show up in the "From:" in the email that you receive.
    So to send to a group consisting of some cellular SMS addresses and regular email addresses, the group would just be defined accordingly, with the SMS-style email addresses. Just remember that there may be a restriction on the number of characters that can be received per message by the cell phone SMS recipients.

  • Send sms via java aplication

    Hello i want to develop a java application that send sms what shell i do?
    is there any kit or package that i can download and test it?

    Hi, A few ways you can go.
    Some Telecom services have a system that allows you to send emails to SMS phones. You'll have to contact the Telecom company to get it enabled, in order to prevent "spamming" peoples phones.
    Some Telecoms have Web pages where you can fill out a form and send the message. You can simulate the HTTP message sent.
    There are a few pay Web services that can be used if your Telecom doesn't offer these things.
    Finally, you can read up on the TAP protocol, and use javacomm to send a message directly via serial port and modem to your Telecom. It's not that tough a protocol. This is the pre-Internet Age method.

  • CANNOT SEND SMS VIA SKYPE ON IPHONE

    Hi.  Please can someone advise me.  I have skype credit, but cannot send sms' to a number which is not in my contacts list via my iphone.  I can do this via my imac desktop computer, but why not via my phone? 2nd problem...it seems that you cannot reply to a skype text - is this so? 

    Partially. Apple support recommended that I enable "push" for this account. This fixed the problemvery nicely, but it was a HUGE hog on the device battery! I've since then disabled the "push" option for my account and Yahoo! mail seems to be still OK, although it does seem to take a little longer than expected to send even small emails.

Maybe you are looking for

  • Error Running Oracle forms

    I have Oracle 8i with developer 6i installed on a win-xp professional(sp1) system. when i try to run my developed application thru an icon from the desktop it creates a file by name ifrun60_dump_47244 (the no changes every time i try to do) and this

  • Partially Bold Text in SSRS 2005 using Expression ?

    Hi, I am using SSRS 2005. I have one requirment. I need to Partially Bold some part of Text in column. Below is the Example. Name < - -- Column in SSRS 2005 Report. This column contains combination of Last Name and First Name. All Database record con

  • Numbers won't reopen to last work & view settings

    With Numbers from the iWork '09 version, after working with a spreadsheet, it always reopened to where I'd finished working.  For instance, the view of the full width of all columns used and the view at 100%.  But, with Numbers 3.0 it doesn't do that

  • Vertical display of fields using SQLPlus

    Hi all, I have a table Personnel (example) ID First_Name Last_Name, Age 1 Billy, Morgan, 56 2 Mary, Lyons, 35 3 Jimmy, Murphy, 55 and what I would like to be able to scroll through on my SQLPlus window is First_Name Billy Last_Name Morgan Age 56 i.e.

  • Unable to download adobe flash on macbook pro

    Hi, As I have an imac don't use my old (2006) macbook pro very often but have previously been able to use adobe flasher player online. As flash player wouldnt work on this occassion I have tried to uninstall and reinstall. I can download the software