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.

Similar Messages

  • Problem sending/ receiveing SMS on a particular port in an intercarrier n/w

    I am using JSR 120 to send & receive SMS on a particular port. This works perfectly between 2 devices using the same carrier.
    if I try sending & receive inter-carrier SMS, like from T-Mobile device to Cingular device (or vice-versa), my j2me app does not receive any SMS on the port it is listening to.
    When the SMS with a port is sent from my app, I get the prompt for permission to send. On pressing OK, the SMS is sent. On the receiving side, the device on the another carrier network receives the SMS in the default inbox, & not by my app.
    I am not sure if this is a inter-carrier SMSC issue or something to do with my app.
    Pl help.

    Has anyone come across the above mentioned problem? Pl let me know if there is any solution.
    Question simply put : When a j2me sms midlet sends an sms on a unique port to another j2me sms midlet listening on the same port, but served by a different carrier (cellular operator), why does the sms go to device inbox & not to my midlet?
    Thank you

  • Sending sms to a specific port using j2se

    Hi,
    I want to send sms to a specific port from j2se platform not from j2me.Is there any way to send it through a modem or through a third party service provider like SMSJunction or Clickatell?If anyone have the code of doing this,plzz help me.
    Arnab.

    I don�t know but i use the JAVA ME JSR 120
    import javax.microedition.io.*;
    import javax.microedition.lcdui.*;
    import javax.microedition.midlet.*;
    import javax.wireless.messaging.*;
    public class SmsConnecter // implements MessageListener
         String port = "5001";
         public SmsConnecter()
    public boolean sendSMS(byte data[]) {
         try {
              String destAddress = "sms://4681234567:5001";
              MessageConnection smsConnection =
                   (MessageConnection)Connector.open(destAddress);
              //Create binary message
              BinaryMessage binaryMSG = (BinaryMessage)smsConnection.newMessage(
                   MessageConnection.BINARY_MESSAGE);
              //Setting destination add
              binaryMSG.setAddress(destAddress);
              //Add payload data
              binaryMSG.setPayloadData(data);
              //Now send the message
              smsConnection.send(binaryMSG);
              smsConnection.close();
              return true;
         } catch(Exception e) {
              //System.out.println("e="+e);
             return false;   
    }Ad about port...
    Port number Description
    2805 WAP WTA secure connection-less session service
    2923 WAP WTA secure session service
    2948 WAP Push connectionless session service (client side)
    2949 WAP Push secure connectionless session service (client side)
    5502 Service Card reader
    5503 Internet access configuration reader
    5508 Dynamic Menu Control Protocol
    5511 Message Access Protocol
    5512 Simple Email Notification
    9200 WAP connectionless session service
    9201 WAP session service
    9202 WAP secure connectionless session service
    9203 WAP secure session service
    9207 WAP vCal Secure
    49996 SyncML OTA configuration
    49999 WAP OTA configuration
    //Mickenull

  • Problem while using reading USB Port : using JSR80

    i want to read the data comming from a usb keyboard.
    So i looked for the api's in java and could find jUSB and JSR80.
    when i tried using jUSB, i could detect the device connected to the usb port
    but for that i had to do many things, whih included editing the registry to make a generic JSUB driver. so this implementation is not acceptable to my current requirement which is a web application..and the java program to detect the usb device come in an applet. so we cannot go to each client machines accessing the page and configure the driver and make regisrty edits.
    So i moved to JSR80..which was telling abt a complete implementation in Linux.
    but what i want is for windows. JSR80 also have an uncertified windows support. so i tried usig it.
    i downloaded the following files
    http://javax-usb.cvs.sourceforge.net/javax-usb/javax-usb-libusb/lib/jsr80_windows.jar?view=log
    javax.usb.properties
    jsr80.jar
    jsr80_ri.jar
    jsr80_windows.jar
    downloaded libusb-win32-filter-bin-0.1.10.1.exe from
    http://libusb-win32.sourceforge.net/
    and created an eclipse project added the jars using the javabuildpath menu.
    copied the location of javax.usb.properties in classpath system variable.
    insatlled the exe for libusb.
    now i wrote the following code.
    it didn't show any compile error so i assumed what i did with the jars are correct.
    import java.util.Properties;
    import javax.usb.UsbException;
    import javax.usb.UsbHostManager;
    import javax.usb.UsbHub;
    import javax.usb.UsbServices;
    public class SampleUSBTest {
          * @param args
         public static void main(String[] args) {
              // TODO Auto-generated method stub
              SampleUSBTest obj=new SampleUSBTest();
         public SampleUSBTest()
              UsbServices services;
              try {
                   services = UsbHostManager.getUsbServices();
                   UsbHub vroothub = services.getRootUsbHub();
                   String s=vroothub.toString();
                   System.out.println(s);
              } catch (SecurityException e) {
                   e.printStackTrace();
              } catch (UsbException e) {
                   e.printStackTrace();
    }But when i ran the code it showed the following runtime error.
    Exception in thread "main" java.lang.NoClassDefFoundError: org/apache/commons/logging/LogFactory
         at com.mcreations.usb.windows.JavaxUsb.<clinit>(JavaxUsb.java:65)
         at com.mcreations.usb.windows.WindowsUsbServices.<init>(WindowsUsbServices.java:46)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
         at java.lang.reflect.Constructor.newInstance(Unknown Source)
         at java.lang.Class.newInstance0(Unknown Source)
         at java.lang.Class.newInstance(Unknown Source)
         at javax.usb.UsbHostManager.createUsbServices(Unknown Source)
         at javax.usb.UsbHostManager.getUsbServices(Unknown Source)
         at SampleUSBTest.<init>(SampleUSBTest.java:23)
         at SampleUSBTest.main(SampleUSBTest.java:16)can anyone please give suggestions on this.
    sample code with steps to configure and the links for reference will be really appreciated.
    thank u

    I am also facing the same problem with the code and getting errors while running my application in Eclipse is this some version problem or any other isues are afftecting my application to run successfully.
    I get following errors while running my application inspite of having all the jars and libusb for windows:
    Exception in thread "main" java.lang.NoClassDefFoundError: org/apache/commons/logging/LogFactory
         at com.mcreations.usb.windows.JavaxUsb.<clinit>(JavaxUsb.java:65)
         at com.mcreations.usb.windows.WindowsUsbServices.<init>(WindowsUsbServices.java:46)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
         at java.lang.reflect.Constructor.newInstance(Constructor.java:494)
         at java.lang.Class.newInstance0(Class.java:350)
         at java.lang.Class.newInstance(Class.java:303)
         at javax.usb.UsbHostManager.createUsbServices(Unknown Source)
         at javax.usb.UsbHostManager.getUsbServices(Unknown Source)
         at org.symphony.embedded.ShowTopology.getVirtualRootUsbHub(ShowTopology.java:56)
         at org.symphony.embedded.FindUsbDevice.main(FindUsbDevice.java:29)

  • Not receiving SMS Texts from other iphone users

    I am on Orange PAYG in the UK EVERY time I top up I will receive free Texts, Free down load allowance etc at he end of my free month I turn off my Mobile data so as not to use up my credit ( in a mater of seconds ) due to me having not mobile data running -  I was able to receive SMS Texts from iphone users using imessage (my phone was recognised as being able to receive standard SMS Texts and would do so with no mobile data - until recently now this no longer seems to work Why Would This Be ?

    Hey Snobol_PL1,
    Welcome to Apple Support Communities.
    This article provides information and troubleshooting tips that can help you resolve the issue receiving SMS messages from iOS devices with your iPhone 4s.
    If you can't send or receive messages on your iPhone, iPad, or iPod touch - Apple Support
    Cheers,
    -Jason

  • 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

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

  • Can We Send SmS To Any Mobile, Without Using Gsm Modem, Through Oracle

    Can We Send SmS To Any Mobile, Without Using Gsm Modem, Through Oracle ?
    suppose you don't have mobile connected to ur com port.

    is this helps?
    http://inside-apex.blogspot.com/2007/05/sending-sms-to-mobile-phone.html or
    Re: Send Message From Oracle To Mobile Device

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

  • HELP - not receiving sms on android after using ichat

    For the past 3 months, I have lost the ability to receive SMS texts about once a month.
    The first time it happened right after I sent somone an ichat on my ipad. Up until then, I had not used ichat for about one year, which is when I went from an iPhone to an android (and I have not used it since then either). I did some research online and found some suggestions on how to fix the issue. A few forums suggested removing my cell phone # from my Apple Support profile. A few others said to change my apple password. I did both and my messages started coming in about 3 days after they stopped.
    About 3 weeks later, I stopped receiving them again. I looked at my Apple Support profile and found that my cell phone # had been added back in. Thinking that maybe Apple has some job that runs every so often and repopulates information on blank fields, I removed my cell phone # again and entered a bogus #.
    Couple days ago I stopped receiving texts again. I looked at my Apple Support profile and found that the bogus # is still listed so that was not what fixed it the first time.
    I have called ATT (my carrier) repeatedly and they have tried to trouble shoot my problem with no success. They suggest that it's only something that Apple can fix. I have also called Apple and they suggest that it's an ATT issue. No one has been able to help me. It really surprises me that this is not a known issue with a fix.
    So here is the problem in a nutshell:
    I am not receiving sms texts on my android, from anyone at all.. doesn't matter what kind of phone they have or who their carrier is.
    I DO receive mms texts.
    All of my texts are going through no probelm.
    Does anyone have any clue how I can stop this from happening every few weeks? I want to stick with my current phone until the next iPhone comes out. Any leads on this issue are greatly appreciated!
    Thanks!!

    I just don't understand what you mean by "invites". What kind of "invite" did you send "from another gmail to gmail"?
    What about a simple email? Do you receive simple email messages to that address?
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • How can i send an sms to any mobile without using gsm modem or mobile using

    how can i send an sms to any mobile without using gsm modem or mobile using oracle . note again. without using gsm mobile or modem. again note. i want to send sms 100% free sms. :) is it posible ?

    Hi,
    Check this one.
    http://www.oracle.com/technology/products/ias/portal/point/sms/installation.html
    regards,
    Dipankar.

  • Continue to receive error 1604 and can't use the recover function - help!  I have gone through all the steps listed in support and nothing has worked.  I am using a usb port I tested with my printer cable and it's fine.

    I wanted to update my software this morning and it has turned into a nightmare.  I continue to receive the error 1604, which is related to a usb port.  I followed all the steps listed in support and nothing has helped.  I just plugged in my printer cable to the usb port and it works fine, yet I continue to receive this error and can't use my phone!

    A printer does not require power, and does not transfer large amounts of data. So that is not a valid test. It's like saying "if I plug a nightlight into an outlet it works fine, so why do 2 hair dryers on at the same time trip a circuit breaker?"
    Are you using a port directly on the computer, and not a hub? If it's not a laptop and it has ports on front and back are you using a back port, which can supply more power?
    Have you EVER used this computer to hack or jailbreak ANY iPhone (not necessarily the one with the problem? Or used a program to downgrade the version of iOS on any phone?

  • Hi! Just got my new ihpone 4 yesterday, but i'm having issues in texting a specific contact. sending sms or iMessages works perfectly fine with all my contacts apart from 1,which is even using my same network, though i can call it and receive sms from it.

    Hi! Just got my new ihpone 4 yesterday, but i'm having issues in texting a specific contact. sending sms or iMessages works perfectly fine with all my contacts apart from 1,which is even using my same network, though i can call it and receive sms from it. What could the problem be?

    My Quad is as quiet with 10.4.5 as it was on arrival Jan 31, with 10.4.2
    Altivec Fractal Carbon gives the CPU too much chance to cool down. I've got other ways to drive the CPU to sustained 100% load. Yes, the fans speed up, but it's still pretty quiet. I've run it at 100% for hours.
    I like the idea of taking things gradually. If you can wait a few days before making big changes, it can make things much easier. 3-4 weeks is very conservative, but great if you have that much patience.
    My Quad has been up full-time since I got it. Works perfectly.
    Quad G5 2.5Ghz 4.5GB 2x250G, PB 15" 1.5Ghz,80G,1.5G   Mac OS X (10.4.5)  

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

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

Maybe you are looking for