Send sms from mobile to mobile via bluetooth

Hey guys,
How do you send a single sms or en masse to another mobile?
The option is there for all other files eg photos, videos and pdf etc
All of my old nokia mobiles could do this but it appears not the N8....
Why has this option been removed or is there anotherway of doing it?
any help appreciated

Nagan wrote:
Can anyone tell me what are the requirements for sending SMS(Short Message Service) from mobile to PC.This forum is for the Sun Messaging Server product. I fail to see what your question has to do with this product.
Regards,
Shane.

Similar Messages

  • Send sms from mac address book via iPhone bluetooth

    Hello!
    Please tell my how send sms from mac address book via iPhone bluetooth?
    MacBook Pro 13
    OS X Lion
    iPhone 3GS iOS 5 development
    Best, regards

    You can't.

  • Server script to send sms from pc to mobile

    hey can anybody help me how to develop a server side script which can send sms to a mobile, what all things to consider....please guide me in this.

    If you know the carrier then the easiest way to send a sms is send the email to the phone. The email address will be phonenumber@carrierspecific address. You can get the list of carrier specific email address at their website or search at google.
    Other way is to subscribe to a sms server like smsxchange and use their apis to send email.
    Third way is to connect a gprs modem/ phone to the pc and send the sms through the phone.
    Easiest and free is the email and next best if ready to pay is subscribe to an sms exchange provider.

  • Send sms from pc to mobile using java

    im getting an error invalid pin,ie, error no -102,can anybody help me//

    kiddo probably typed that topic into Google verbatim and a million results came up all referring to the ubiquitous "snd sms from Java" questions that constantly reappear here by homework kiddos thinking it would be a "kewl" and "original" "end of year project".

  • How to send sms from pc to mobile phones

    Hey house,
    Am handling a project on how to send a personalized sms msg from a pc to multiple mobile phones.Any body with that technology should be of help .Thanks

    The simplest way is to find a web service which does this (there are several). Obviously you need to pay, something like buying a batch of transmissions up front. It's not very expensive, though. The particular instructions will be on the web site of the service, probably for various languages. Your invocations of the service will include your credentials.

  • Sending sms from oracle to mobile

    Hi Experts,
    EBS : R12.1.3 with shared appl_top pcp enables 2 nodes ( EBS1 , EBS2)
    DB   : 11gR2 : 11.2.0.2 with RAC enabled two nodes
    OS : RHEL 5.3 64 Bit
    we want to send notification via sms to mobile . For example like 'whenever a shipment is received ' or ' payroll run ' or 'concurrent manager failure' etc .
    if anyone have implemented this , please share the solution .
    thanks
    Mapps

    Pl do not post duplicates - using mobile sms alerts in R12

  • How to send SMS from a servlet  to a mobile phone

    How to send SMS from a servlet to a mobile phone what are the things i have to do.......
    very urgent..

    Hi, please read this:
    http://forum.java.sun.com/thread.jspa?threadID=345296&messageID=2608297
    Found on the very forum with the search function ;)

  • Can we use MIDP 1.0 to send SMS from mobile phone to server

    hello,
    I want to develop MIDlet which send sms from mobile phone to server
    using midp 1.0
    and also if any one knows about the mobile phone which suppoet midp 1.0 (java enabled) then tell me
    thanks in advance
    s.j.koradiya

    hi,
    SMS API(WMA) is an optional package. It is not a MIDP1.0 or MIDP2.0 api's.
    There are phones which has WMA api with MIDP1.0 support .... Nokia 3650
    Seimens has some phone with their own api's to send sms.Check out seimens site for more info
    BTW, What do you mean buy sending SMS to Server????
    If you want to send message to server you can do it with Http.
    HTH
    phani

  • How can I send SMS from Mobile To PC? Plz Help me...

    I created one Midlet that has the user interface to get the details from the user.
    I want to send those details to server as SMS.
    What can I do with WMA.How can I send SMS from Mobile to PC.
    Plz help me to send SMS from Mobile to PC.

    Hi Senthilnathan,
    I too try for the same, if anyone has the idea please reply
    Regards
    Karthi

  • Send sms to GPRS/GSM mobile from PC

    I want to send sms from computer using GPRS/GSM mobile using AT commands.
    so i want to use java API for programing .....can anybody tell me which java API used for this purpose?
    thanku

    Hi,
    I think you posting the same question across many forums ... SMSLib gives you the source code for sending and receiving messages. For example the below program scan all the COM Ports and prints the Model Information using AT commands.. So download the source code from their website..
    package misc;
    //import gnu.io.*;
    import javax.comm.*;
    import java.util.*;
    import java.io.*;
    public class CommTest
         static CommPortIdentifier portId;
         static Enumeration portList;
         static int bauds[] = { 19200 };
         public static void main(String[] args)
              portList = CommPortIdentifier.getPortIdentifiers();
              while (portList.hasMoreElements())
                   portId = (CommPortIdentifier) portList.nextElement();
                   if (portId.getPortType() == CommPortIdentifier.PORT_SERIAL)
                        System.out.println("Found port: " + portId.getName());
                        for (int i = 0; i < bauds.length; i++)
                             System.out.print("     Trying at " + bauds[i] + "...");
                             try
                                  SerialPort serialPort;
                                  InputStream inStream;
                                  OutputStream outStream;
                                  int c;
                                  String response;
                                  serialPort = (SerialPort) portId.open("SMSLibCommTester", 1971);
                                  serialPort.setFlowControlMode(SerialPort.FLOWCONTROL_RTSCTS_IN);
                                  serialPort.setSerialPortParams(bauds, SerialPort.DATABITS_8, SerialPort.STOPBITS_1, SerialPort.PARITY_NONE);
                                  inStream = serialPort.getInputStream();
                                  outStream = serialPort.getOutputStream();
                                  serialPort.enableReceiveTimeout(1000);
                                  c = inStream.read();
                                  while (c != -1) c = inStream.read();
                                  outStream.write('A');
                                  outStream.write('T');
                                  outStream.write('\r');
                                  try { Thread.sleep(1000); } catch (Exception e) {}
                                  response = "";
                                  c = inStream.read();
                                  while (c != -1)
                                       response += (char) c;
                                       c = inStream.read();
                                  if (response.indexOf("OK") >= 0)
                                       try
                                            System.out.print(" Getting Info...");
                                            outStream.write('A');
                                            outStream.write('T');
                                            outStream.write('+');
                                            outStream.write('C');
                                            outStream.write('G');
                                            outStream.write('M');
                                            outStream.write('M');
                                            outStream.write('\r');
                                            response = "";
                                            c = inStream.read();
                                            while (c != -1)
                                                 response += (char) c;
                                                 c = inStream.read();
                                            System.out.println(" Found: " + response.replaceAll("\\s+OK\\s+", "").replaceAll("\n", ""). replaceAll("\r", ""));
                                       catch (Exception e)
                                            System.out.println(" Nobody here!");
                                  else System.out.println(" Nobody here!");
                                  serialPort.close();
                             catch (Exception e)
                                  System.out.println(" Nobody here!");

  • Send SMS from J2ME application to a mobile number...

    Hi guys,
    Need your help on sending SMS from J2ME application saved from mobile to send to another mobile number...
    I have tried the WMA demo from suns WTK it send message but the other number cannot received the message.
    Please help or give any idea or sample code that can guide
    me...
    Thanks in Advance...
    Regards,
    Psyeu

    WMADemo works fine.
    Try to do this:
    1. Open WMADemo
    2. Run WMA Console (File->Utilites->WMA Console)
    3. On the top of the window of WMA Console you will see the number of "Console's phone". If you don't have any started emulators, the number will be +5550000.
    4. Run WMADemo
    5. Select SMS Send in emulator menu.
    6. In destination address write +5550000
    7. Enter message
    8. Push "Send" command. Emulator asks you to send SMS. Push "OK" twise.
    9. Then you will see your message in WMA Console

  • How to send sms from pc to various mobile service in india

    I am trying to send sms from my pc to various service provider(airtel, hutch, bsnl).But i am able to send only to airtel connection(using thier website : [email protected]). But i am unable to send to other service provider. Or is it required to have SMS centre(SMSC) for sending SMS And also how inditimes 8888 will work(automatic replay for SMS)
    Anybody can help in this topic
    Thanking you

    do google search. there are a lot of free sms gateways available over the internet. they come with java apis too. generally speaking, an sms can be sent to a phone only thru its SMSC. however, some sms gateways need you to connect a mobile to your com port so that they can send sms thru that. (in that case the sms flow will be like this: yourcomputer --> your mobile --> your mobile's smsc --> receiving phone's smsc --> receiver phone) hope i have not confused you..
    regards
    raamam

  • How to Send SMS from Oracle Database to Mobile

    Hi All,
    I need urgent help in how to send sms from oracle database to mobile
    thanks and best regards

    you can use smslib..... . i have made a program with this. its working fine with oracle database.
    see the links here ...
    http://halimdba.blogspot.com/2011/08/send-sms-from-oracle-database-with.html
    by the way, how you can say "urgent help" ?
    regards
    Halim

  • How to send SMS from SAP to Any mobile

    Hi Friends,
    I have a requrement. How to send SMS from SAP to Any mobile?? For Example: If i created PO in SAP then i want to send a SMS to Concerned Vendor and HOD.
    Please provide the pre-requisites?
    Naveen

    Hi Naveen,
    there is a standard webservice globally available called Send SMS and you can consume that webservice with the help of CAF and you can send PO number as SMS, If the standard webservice do not work then you have to create your own webservice to fulfill the functionality.
    Regards
    Manohar

  • How to send sms from iPad via iphone

    How to send sms from iPad via iphone?

    You don't easily.
    The pad, with I message turned on, will send text like messages to any other ios5 user that has I message turned on.
    The pad is not a phone, and does not have the radio to send 'real' SMS messages, which use the phone channel.
    There are a few apps in the store that will convert messages to SMS, for use with non apple folks.  Check out the app store.  Search SMS.

  • Sending sms from server

    Well i have to send short message from webserver to any client.But not from client to client.Like any products inforamtions to clients.Because i can't find api in any webserver to send sms to client.While from client I have found api in sl45i to send to any smsc server.But not in webserver.
    I i will make this possible.
    Thanks
    Jawwad Ahmed

    I don't quite understand what you are trying to do but so far, here is what I have understood.
    1. You want to send SMS from Webserver to your mobile phone
    2. Want J2ME Emulator to process SMS.
    <1> Sending SMS from webserver is quite easy. You have several options:(a) connect a mobile phone to your server and 'talk' to the phone using Gnokii or GSMLib to send SMS. The mobile phone will take care of communicating with SMSC of your provider (b) get in touch with your provider and ask if you can connect to their SMSC directly. Some allow you to connect to their SMSC via a modem connection (c) look for public SMSC's, which are scarce.
    <2> Unfortunately, MIDP 1.0 does not allow you to retrieve SMS from the phone... nor does the Siemens SDK, AFAIK. You cannot process SMS using the Emulator as well. You need a real device to test your application.

Maybe you are looking for

  • MSI BIG BANG Xpower II boot issue - LED code 9A

    Hello all, I am facing to issue after BIOS update from 2.6 to 2.7. After update was machine working properly. But after one crash of OS cant boot at all. Crash was probably caused by overloading GPUs but there were no issue with cards and this board

  • Invalid Format

    I am trying to connect my G4 FW with Radeon 9700pro to a 26" HD TV. The TV has PC (VGA) slot and I have tried connecting from DVI to VGA adapter from G4 to VGA port on TV. This results in a black screen after the apple screen. The TV tells me there i

  • KINAK field in Table KONV not getting updated with value W

    Hi, I have a PO where I am deleting a line item. After I delet line item the field KINAK in table KONV gets updated with value W. But I am getting instance where in some cases the field KINAK is not getting updated. The result is deleted line item is

  • Using pocketmac to sync a replacement blackberry bold

    I wondered if someone could help Due to a fault I have had to replace my blackberry bold. My old blackberry was syncing happily with my mac using pocketmac.  Now with my new blackberry I get nothing, the mac doesn't seem to recognize the new blackber

  • Ipad 3 IOS 8.2 3G problem, no internet

    I just upgraded my ipad 3 to IOS 8.2 and after the upgrade, internet over 3g has not been able to work at all. I tried airplane mode, resetting network setting, soft-resetting the ipad, on/off the ipad, restoring it to previous back-up through itunes