Receive SMS using java

Is there any posiblity to receive sms using java program?

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

Similar Messages

  • Want to send sms using java

    I am developing a stand alone application in java that contains sending sms to certain numbers.
    I want to send sms using java and my phone connected to my pc by usb cable(Not through Bluetooth).
    I am using Linux operating system (Arch linux).
    I tried a few libraries that uses the the online sms portals,but for some reasons i dont want to pay those sites.(just want it to be done using my simcard cause its economical).
    Help appreciated

    880667 wrote:
    I am developing a stand alone application in java that contains sending sms to certain numbers.
    I want to send sms using java and my phone connected to my pc by usb cable(Not through Bluetooth).
    I am using Linux operating system (Arch linux).
    I tried a few libraries that uses the the online sms portals,but for some reasons i dont want to pay those sites.(just want it to be done using my simcard cause its economical).
    Help appreciatede First thing you need to check: are you able to access other services my connecting you mobile by USB to machine (Line GPRS, calling). Because it requires the calling or SMS port access. And you said it is economical by sending SMS using mobile it depends. But most of the times, it is better to use the SMS service provider getway. They provide the details either http or FTP, we just need to put or message in the accepitng form, rest of the things are done by the service provide.

  • Receive SMS using jsmsengine api

    Hi Experts
    I am using jsmsengine to send/receive sms using my gsm modem connected to pc thro usb port. Sending sms is no issues but Receiving SMS is bit confusing for me.
    I would request steps & source code for receiving the sms
    Thanks and Regards
    geeths
    Edited by: geeths on Dec 2, 2008 7:21 AM

    [Ozeki SMS Sending and SMS receiving Gateway|http://www.ozekisms.com/index.php?oldal=95] Ozeki SMS gateway software can be integrated into your own application. On their webpage you can fid info of how to do it. Br.

  • 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

  • How can i send the chinese sms using java J2EE(web application)

    hi,
    i have the difficulty on sending chinese sms using J2EE application.i try to input the chinese word to jsp and send the plain text sms. i received the sms with plenty of question mark "?????". i think it is regarding to the conversion of String to some kind of format that supported by mobile phone. below are some code the send the sms to recipient. i need someone help in order to have the solution.
    thanks a lot
    <%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="utf-8"%>
    <%@ page import="se.sapio.rta.service.MPMService"%>
    <%@ page import="java.util.Locale"%>
    <%
         Locale.setDefault(Locale.UK);
         Context ctx;
         MPMService mpmservice;
         ctx = new InitialContext();
         mpmservice = (MPMService) ctx.lookup("BC/Service/RTAMPM");
         LSUser user = null;
         boolean ok = true;
         try {
         if (ok) {
              String sender = request.getParameter("sender");
              String phonenr = request.getParameter("phonenr");
              String sendmsg = request.getParameter("sendmsg");
              if(bError) {
                   byte[] bytes = message.getBytes("UTF-8");
                   message = mobileclientservice.ByteEncode(bytes);          
                   response.sendRedirect("send_sms.jsp?s="+request.getParameter("s")+"&msg="+message+"&phonenr="+request.getParameter("phonenr").replaceAll("\\+","%2B")+"&sender="+request.getParameter("sender")+"&sendmsg="+request.getParameter("sendmsg").replaceAll("\\+","%2B"));
              String resp = "";
              if(mpmservice.sendPlainTextSMS(sender, phonenr, sendmsg)) {
                   resp=mpmservice.getLang(user.getLang(), "sms_sent");
              } else {
                   resp=mpmservice.getLang(user.getLang(), "sms_not_sent");
              } %>
              <jsp:include page="/top.jsp" />
              <p class="headline"><%=mpmservice.getLang(user.getLang(), "send_sms_title")%></p>
              <form name="operatordetails" id="operatordetails" method="post" action="send_sms.jsp">
              <INPUT TYPE=hidden NAME=s VALUE="<%=request.getParameter("s")%>">
              <INPUT TYPE=hidden NAME=phonenr VALUE="<%=request.getParameter("phonenr")%>">
              <table class="infotable" id="report">
                   <tr>
                        <td class="left" colspan="2"><%=resp%></td>
                        <td class="right"></td>
                   </tr>
                   <tr>
                        <td class="left" colspan="2">
                             <input class="halfmiddle" name="Back" type="submit" id="Back" value="<%=mpmservice.getLang(user.getLang(), "back")%>" />
                        </td>     
                        <td class="right"> </td>
                   </tr>
              </table>
              </form>
              <jsp:include page="/bottom.jsp" />
         <% } %>
       public boolean sendPlainTextSMS(String sender, String recipient, String sendmsg){
             if(recipient.charAt(0) == '+')
                   recipient = recipient.substring(1);
             String senderIdType = "Alpha";
              if( (sender.charAt(0) >= '0' && sender.charAt(0) <= '9') || sender.charAt(0) == '+')
                   senderIdType = "Numeric";
                   if(sender.charAt(0) == '+')
                        sender = sender.substring(1);
                   for(int i=0; i < sender.length(); i++)
                        if(!(sender.charAt(i) >= '0' && sender.charAt(i) <= '9'))
                             senderIdType = "Alpha";
             log.warn("sending sms to: "+recipient + " sendtype: " + senderIdType + " msg: "+ sendmsg);
             log.warn("Encoded sms:"+Encode(sendmsg));
             try{
             String postData = "XMLDATA=" + URLEncoder.encode("<?xml version=\"1.0\" encoding=\"ISO-8859-1\" ?>\r\n" +
                        "<NotificationRequest Version=\"3.4\">\r\n" +
                        "     <NotificationHeader>\r\n" +
                        "          <PartnerName>" + SMS_PARTNER_NAME + "</PartnerName>\r\n" +
                        "          <PartnerPassword>" + SMS_PARTNER_PASSWORD + "</PartnerPassword>\r\n" +
                        "          <SubscriptionName>XML</SubscriptionName>\r\n" +
                        "     </NotificationHeader>\r\n" +
                        "     <NotificationList BatchID=\"1\">\r\n" +
                        "          <Notification SequenceNumber=\"0\" MessageType=\"SMS\">\r\n" +
                        "          <Message>" + Encode(sendmsg) + "</Message>\r\n" +
                        "          <Profile>" + SMS_PARTNER_PROFILE + "</Profile>\r\n" +
                        "          <SenderID Type=\"" + senderIdType + "\">" + sender + "</SenderID>\r\n" +
                        "          <Subscriber>\r\n" +
                        "               <SubscriberNumber>" + recipient + "</SubscriberNumber>\r\n" +
                        "          </Subscriber>\r\n" +
                        "      </Notification>\r\n" +
                        " </NotificationList>\r\n" +
                        "</NotificationRequest>","ISO-8859-1");
      appreciate for anyone provide the solution.
    thanks a lot

    Hi,
    I want to send sms from web application to mobile phones at the time of registration. Its verymuch greatful to me, if you let me know, how to send from jsp to mobile. because from your post, i got, you already know about sending sms from jsp to mobile.
    please let me know, how to send sms
    [email protected]
    Thanks in advance for your kind help

  • How to send a string from sender to receiver side using java

    I am doing a project on Digital Signature.I have already done with the GUI using java swing.
    Now i want to send a string from the sender side to the receiver side on the click of a button using socket programming.
    Please can anybody provide me with the code as early as possible.

    http://catb.org/~esr/faqs/smart-questions.html

  • Seding & receiving sms using modem (com1 port) using servlets & beans

    hi ,
    can any one send me code 4 sms (using web application plzzzzzzzzzzzzzzz)
    this is my mail id [email protected]

    [Ozeki SMS Sending and SMS receiving Gateway|http://www.ozekisms.com/index.php?oldal=95] Ozeki SMS gateway software can be integrated into your own application. On their webpage you can fid info of how to do it. Br.

  • How to send SMS using java

    Dear All
    How we can send SMS(Short Message Service) to mobile phones using java.
    By Registering in some sites and using that user name and password we can send SMS.
    But after some limited SMS we have to pay for further use.
    I need some thing which we can use as free.
    Can any one help me
    Thanks in Advance

    The easiest way would be to send a regular email to a Email to SMS gateway.
    Check out the list of Email to SMS gateways at http://en.wikipedia.org/wiki/SMS_gateways

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

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

  • Is it possible to send sms using java ?

    dear all ,
    I am doing one project . In which i want to send sms to mobile phone using java
    Any one knows please help me immediately ......
    I want this one to be immediately ...
    Thank you

    The answer's right here...
    http://www.java-answers.com/index.php?topic=12.0

  • SMS using Java Application

    Hai Friends,
    I have a nokia 3310 mobile I want to send and recieve SMS through the mobile to PC. I downloaded the J2ME Wireless toolkit. But when I wrote my first program to send the message I am getting an error
    Exception in thread "main" java.lang.UnsatisfiedLinkError: isNetworkMonitorActive
    at javax.microedition.io.Connector.isNetworkMonitorActive(Native Method)
    at javax.microedition.io.Connector.<clinit>(Connector.java:142)
    It comes on the line,
    conn = (MessageConnection) Connector.open("sms://+919447444633");

    Um, do you have a wireless network set up on your computer??????

  • Cant receive sms using a midlet

    I ve developed an application to read an sms on port 50000 .There are no errors in it also it just keeps on listening..
    But the sms directly goes to inbox ..I am unable to read the sms..can anyone help me ..

    How did you send the SMS? Are you sure is was sent with the correct port number?
    Also, this is to some extent operator dependent. Some mobile services strip port numbers from SMS received from other services.
    db

  • Receiving sms using bluetooth

    hi do anyone know how to send a sms from a nokia 3650 to a pc using bluetooth?

    try forum Nokia maybe?

  • Receiving SMS using GSM module in LabVIEW

    Hi ...
    I am Communicating the GSM module in VI. I can found the solution for sending the SMS. But i am having the trouble in read the SMS in VI. I tried more type of models. When I am running the VI,  in the read buffer content is displaying as "AT+CMGR=1" which is we are writing AT command into the port for reading the SMS.Here I attached the image.... please kindly go that image, you will surely get what I am getting the error...
    Please reply asap....

    image file for the error
    Attachments:
    labview error.png ‏177 KB

Maybe you are looking for

  • Border radius & flash video player issue

    Border radius & flash issue - PFA screenshot http://72.29.76.194/~designs/firefox-flash-border-radius/border-radius-flash-firefox.png When I overlay a div with a border radius over a flash object, the corners are being cut as much as the size of bord

  • Date field encryption using Dbms_Obfuscation_Toolkit.DESENCRYPT

    Hi, I need to encrypt the date field in the table using Dbms_Obfuscation_Toolkit.DESENCRYPT . This is an table is an existing table and is accessed by many interfaces, so we cannot change the column type of this date field. Is there a possibility of

  • Saving an array of multi-line text cells in a format that can be read in later

    I can create an array of multi-line text entries that my program can then pick cells and compile them into a list of text. I would like to be able to Save the array as a file, then change my program to read in the file. If I use the Save Spreadsheet

  • Create ASN Shipping nonfiction without SUS in SRM

    Dear expert, We work SRM Server 5.5 Extended classic scenario. We intend to work with POR Purchase order Response. And we also want to use the ASN shipping notification Can we use inbound ASN without SUS?  For example: PO>POR>ASN in SRM server withou

  • Reverse function for Logic X

    I'm trying to use the reverse function for an audio file. when I open the audio file editor, there is no "Functions" pull down menu. how do I find it? thanks!