Sending Data Over Voice Call

helo guys can one one help me im final year student, im planning to develop an application in which user can send data over voice call... is it possible?? if yes then please guide me

No, that is not possible. You can't do voice stuff with j2me/midp.

Similar Messages

  • Why is my iPhone 5 sending data over cellular while on wifi using Vodafone Germany?

    Hello,
    I know that this is a common mistake on verizon iphone 5. i have the same problem with my iPhone 5 in Germany. It keeps sending data over cellular while I am on wifi. The wifi connection itself works though, even when I turn off cellular data. So my wifi is not broken.
    Another thing that makes me curious is that my iPhone keeps sending data to somewhere and I don't know what it is sending. This led to the point that I reached my Monthly limit of 200mb within 2 days!!! And almost 95% of that was upstream. So I bought another 300mb and turned off cellular. Now I turned it back on and the megabytes are just running through. I thought it might be diagnosis and iCloud but I turned both off and it's still the Same way. Due to the enormous amount of data that is being sent the battery empties really really fast!! I was on a 20 minute car drive and my battery went down 23%!!! When I turn cellular off and use wifi it behaves completely normal.
    So this is really annoying me and I hope that Apple will fix this or one of you guys can help me.
    Best regards from Germany,
    Sitham

    You may have a problem with your WiFi network if your iPhone can't stay connected to it.
    If you are having WiFi problems it is necessary to isolate whether the problem is with your network or your iPhone. Note: Do NOT consider your network to be blameless if some other devices can connect to it.
    First, test your iPhone on some other networks: a friend's, Starbucks, Barnes & Noble, etc.
    If it works well there then the problem is with your network. Try restarting your router by removing power for 30 seconds. If that does not help check for a firmware update for your router. If none exists which corrects the problem consider replacing the router.
    If your iPhone does not function well on other networks it possibly has a hardware problem. Contact Apple Support or visit an Apple store for evaluation. They can provide a replacement if your iPhone is bad.
    If you need more help please give the make, model, and version of your WiFi router and how you have it configured.

  • Huge background data without voice calls

    I have observed it for 2 months. I never made or receive calls when I'm on data line (3G/4G). I make voice calls only when I'm on WiFi. But when I observed my Android data usage profile, Skype was at the top with huge background data. I'm wondering for what reason Skype consumes so much background data when apps like Whatsapp, Google Talk consume negligible amount of data.
    I'm less worried about the data "usage". I'm more worried about the battery drainage because of this data transfer. Unless Skype fixes this issue, I'm not keeping the Skype always-on and will be switching to Google Hangouts and Whatsapp for always-on on Android.

    Hi Kiranchowdary,
    I had a problem similar to yours with Skype 4.5. Reverting to this more reliable older Skype 4.0.0.22082 version, resolved the problem for many of us with smart-phones. Others, usually with tablets, reported that Skype 3.2.0.6673, better suited their needs. If you have a smart-phone, tap the link of the former Skype, or the latter if you have a tablet. If your first choice does not meet your needs, the other would be worth trying.
    Before tapping the downloaded apk file to install the selected Skype, uninstall the current Skype, disable the Play Store “Auto-update apps” option, and enable the Android Settings (from) “Unknown sources” option. Once installed, disable the “Unknown sources” option. Be sure to try any future Skype release, indicated by a change of release date on the Google Play Store Skype “UPDATE” page. If the new Skype is unsatisfactory, revert to the older Skype using the saved apk file.
    You can choose an even earlier Skype version if you feel that this would be beneficial. To date. I have not experienced any security problems with any of the above web links. Please be sure to post another reply to let me know how you go with the installation. I should be able to help you if you encounter difficulties.
    If you have not already done so, you should create a good Android issue report here to help Skype improve future versions. I am sure that a Private Message to Claudius, letting him know where your report is, would be a nice surprise, and really make his day
    Regards, BGW.514

  • Freescale FRDM-K64F sending data over CANBUS.....

    I have setup J2ME embedded 8.1 on the FRDM-K64F. I was able to work with reconfigured GPIO  and access the accelerometer via I2C.
    How do you initialize and send data using CAN interface on the FRDM-K64F?

    To clearify for me, Are you stating the J2ME (at this time) can not use the CAN feature on frdm-k64f.....
    http://developer.mbed.org/platforms/frdm-k64f/

  • Firefox hags when sending data over secure connection (ie login)

    Having to post this via IE because FF hangs when sending data, such as logging in to sites.
    Started happening 3 days ago. I have deleted cookies/cache, disabled all add-ons/plug-ins, started in "Safe Mode", Reset, Deleted prog files\Mozilla, uninstalled and re-installed and no improvement.
    FF hangs and runs at 15% core usage. IE works fine - hence using it to post this...
    When re-installed, all history/bookmarks/passwords were saved.
    And help greatly appreciated.
    Win7/64bit 12GB RAM. FF33.0.2
    Thanks in advance
    Peter

    The website may try to fallback to TLS 1.0 in a way that is no longer allowed in current releases or may be using a deprecated cipher suite.
    You can open the <b>about:config</b> page via the location/address bar and use its search bar to locate this pref:
    *security.tls.insecure_fallback_hosts
    You can double-click the line to modify the pref and add the domain (sso.iiaba.net) to this pref.
    If there are already websites (domains) in this list then add a comma and the new domain (no spaces).
    You should only see domains separated by a comma in the value column.
    *https://developer.mozilla.org/en-US/Firefox/Releases/36/Site_Compatibility#Security
    *https://developer.mozilla.org/en-US/Firefox/Releases/37/Site_Compatibility#Security
    <blockquote>This site uses the cipher RC4 for encryption, which is deprecated and insecure. login.aspx<br />
    This site makes use of a SHA-1 Certificate; it's recommended you use certificates with signature algorithms that use hash functions stronger than SHA-1.[Learn More]</blockquote>

  • Sending data over and socket

    when i send messages over socket and receive it using [line = in.readLine()/code]
    if there is a \r\n it stops and makes u have to use readLine again to get the rest of the message
    is there a way to send the message so it totally ignores the \r\n and i can just use readLine once to receive my complete string in one go
    as this newline thing is very annoying
    thanks :)                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    I assume in is of type BufferedReader? If so, that is the definition of readLine.
    Other options:
    You can use java.util.Scanner to scan until the next delimiter, which you can set.
    You can use readUTF/writeUTF defined in interfaces DataInput/DataOut by
    using classes DataInputStream/DataOutputStream or ObjectInpuitStream/ObjectOutputStream.
    If you are using object stream, you could define any serializable objects you
    like for transmission.

  • Sending data during the call with java enabled mobile devices

    hi every one ,
    this is the problem :
    i have 2 mobile phone with java enabled os , i want to call (dial) from phone1 to phone2 with java code , (this will be done by platformRequest("tell:123456"))
    AND then i want to for example press key '1' in phone1 during the call some program send this key to phone2 and in phone2 i want to switch this key and understand that was key '1' ...
    how can i send this data for example a key pressed event to another phone with J2ME ???
    i am developing it with netbeans Mobile Application by the way ...
    could you please tell me your opinion and help me in this ,
    Thanks a lot ,
    Omid

    Hi Kanagaraja L,
    Thanks for you response.
    No I haven't created Created RFC Destination , this RFC destination will be of my JAVA system ???.
    I have tried creating the partner logical system in WE20 and dine the following steps:
    1. Partner No.   IDES800     Ides 800 System - Sender System
        Partn.Type    LS          Logical system
    2. The tab Post processing : permitted agent is filled with default parameters.
    3. Then in the outbound parameter table control I have pressed the add record button and got a new screen in
        which I have made the following entry :-
      Partner No.           IDES800        Ides 800 System - Sender System
      Partn.Type            LS             Logical system
      Partner Role          LS             Logical system
        Message Type      SYNCH                            ALE:Dummy Message Type for De
        Message code
        Message function
    Under tab Outbound options :
    Receiver Port  = A000000008  (This I have selected from F4 help)
    Basic type = SYNCHRON
    Saved it with the above data.
    Now I am not able to understand how to do the things you have mentioned in 3rd step in your reply.
    What are all the things I have to do kindly tell , as I am very new to Idocs so don't have much knowledge.
    Edited by: Rachit Khanna on Dec 7, 2009 1:49 PM

  • Send data Over Internet through SQL database .

    Hey I am using VB to developing my Windows Phone Application. I have to send my data generating from my App to a Online Database.
    I have domain , so C Panel, there I have database.
    can Any one suggest me the VB code for it?
    Or suggest me the link for it.
    Also please check out this http://1drv.ms/1E99miA Vishwa Raj ( Computer Hobbyist) Content Creator at Microsoft Community Center Web Developer at Sanity Softwares Pvt. Ltd Beginners in Windows Phone App Development.

    You cannot access a SQL Server Database from Windows Store App directly. You have to create a service layer (e.g a WCF service) that communicates with the database and then access this service from your app. There is a an example available here:
    https://code.msdn.microsoft.com/windowsapps/How-to-access-data-from-5f2602ec.
    ...and here:
    http://www.c-sharpcorner.com/UploadFile/7e39ca/connect-windows-store-apps-to-sql-server-database-using-wcf/.
    The samples are written in C# but you should get the idea. If you need help with converting certain parts of the code you could use an online calculator such as this one:
    http://converter.telerik.com/
    Or if you have some VB specific problem you could also start a new thread in the Visual Basic forum:
    https://social.msdn.microsoft.com/Forums/vstudio/en-US/home?forum=vbgeneral
    Please remember to close your threads by marking helpful posts as answer and then start a new thread if you have a new question. Please don't post several questions in the same thread. 

  • I cannot use my voice calls and cellular data simultaneously. Is there any fox for it?

    I recently updated mu iphone 4s and now i am not able to use my cellular data and voice calls simultaneously. I am in a great fix. Is there any solution to it?

    Hi Apple ...(you are not),
    Welcome to the Support Communities!
    There are a couple of places where the Apple ID is used, so the first thing I would suggest is to go to the appleid.apple.com website and make sure everything is up to date there.   Then, sign out of your iTunes Store Account and sign back in with the correct Apple ID and password.   Finally, look at the settings for your Computer Administrator account and make sure that is correct as well.   I'm including a few articles for you that explain this information in more detail.
    Apple ID: Changing your Apple ID
    http://support.apple.com/kb/HT5621?viewlocale=en_US
    Rescue email address and how to reset Apple ID security questions
    http://support.apple.com/kb/HT5312
    Apple ID: What to do after you change your Apple ID
    http://support.apple.com/kb/HT5796?viewlocale=en_US&locale=en_US
    This is the information on how to confirm or change your User Admin account for the computer itself.
    OS X Mavericks: If you forget your login password
    http://support.apple.com/kb/PH14120?viewlocale=en_US
    I hope this information helps ...
    - Judy

  • Send & receive data over GPRS

    Hi All !!!
    I am developing a program to receive and send data over GPRS. A remote device is sending data at a particular port (6600) of my server. I am able to read that through ServerSocket. However I am not being able to send any data to that device.
    Any help?

    I am using the code:
    // Constructor
    public ServerSocketReader(Socket socket) {
    super("MultiSocketThread");
    this.clientSocket = socket;
    this.setDaemon(true);
    public void run() {
    try {
    OutputStream out = clientSocket.getOutputStream();
    InputStreamReader in = new InputStreamReader(clientSocket.getInputStream ());
    //BufferedWriter bw = new BufferedWriter(new FileWriter(_filepath, true));
    java.util.Date date = new java.util.Date();
    SimpleDateFormat sdf = new SimpleDateFormat("EEE, dd-MMM-yy HH:mm:ss");
    GprsProtocol protocol = new GprsProtocol();
    int charCount = 0;
    char[] cBuffer = new char[1000];
    byte[] bBuffer;
    String fromClient = "", toClient = "START";
    int ii = 0;
    while ((ii = in.read()) != -1) {
    fromClient = fromClient + (char)ii;
    if (fromClient.endsWith("2Y")) { //according to protocol
    toClient = protocol.processInput(fromClient); //Protocol
    bBuffer = toClient.getBytes();
    for (int k=0; k<bBuffer.length; k++) {
    out.write ((char)bBuffer[k]);
    out.flush();
    fromClient = "";
    out.close ();
    in.close ();
    clientSocket.close ();
    //bw.close();
    } catch (IOException ioe) {
    //out.println("Error::" + e);
    System.out.println("Error in writing file : ");
    ioe.printStackTrace();
    } catch (Exception e) {
    System.out.println("Error in ServerSocketReader : ");
    e.printStackTrace();
    finally {
    //this.destroy();
    I am geeting the error at line :-
    while ((ii = in.read()) != -1) {
    the error is :-
    java.net.SocketException: A connection with a remote socket was reset by that socket.: A connection with a remote socket was rese
    by that socket.
    at java.net.SocketInputStream.socketRead(Native Method)
    at java.net.SocketInputStream.read(SocketInputStream.java:104)
    at java.net.SocketInputStream.read(SocketInputStream.java:82)
    at java.io.InputStreamReader.fill(InputStreamReader.java(Compiled Code))
    at java.io.InputStreamReader.read(InputStreamReader.java:256)
    at java.io.InputStreamReader.read(InputStreamReader.java:229)
    at ServerSocketReader.run(ServerSocketReader.java(Compiled Code))

  • Dimbuild causes network error 10054 "cannot send data"

    Can anyone help with this? I have an <BR>ASO app that I run dimbuilds on every month. Every month I get the same error message when the dimbuild runs:<BR><BR>Error 1042012 - Network Error [10054]: Cannot send Data.<BR><BR>If I make an exact copy of the app and run the dimbuild on the copy, I get no errors and the dimbuild works fine. But when I run it on the original app, I always get the error message. <BR>Yet this month's app is a copy that the dimbuild worked on last month. <BR><BR>Does anyone out there know why this keeps happening? Any suggestions deeply appreciated. <BR>Thanks.<BR><BR>

    <p>Hi Anaguiu,<br>I would clear the database and build dimensions using dimbuild rulewith no data in database<br>and then load data using data load rule.<br><br><br><br>Additionally I found some information at<br><br>http://dev.hyperion.com/techdocs/essbase/essbase_71/Docs/errmsgs/ernetwrk.htm#1042012<br><br>Quote<br>"1042012 Network error message: Cannot Send Data<br>Possible Problems<br>Analytic Services cannot send data over the network using namedpipes.<br><br>Possible Solutions<br>Increase the values for NETDELAY and NETRETRYCOUNT.<br>Check the index cache size, data cache size, and data block size tomake sure that they are within the recommended ranges. "<br><br><br>------------------<br>[email protected]<br></p>

  • Sending Data Through a Output Stream...

    Hello,
    I am writing a program that works on a network...a server is running and client will connect to the server and send specific data for the server to complete transactions on.
    The transactions that are mainly seen are SQL SELECT statements and as you can imagine a statement could bring back many records.
    At present I have been able to send specific data through streams and have turned this into parameters on the server side and performed SQL. What I need help with or suggestions on is how to get the data back to the client. In some cases it may need to be displayed on screen or just used for further processing?
    Please let me know if this is not 100% clear.
    Thanks,
    P

    If you are able to send data over a network, then I assume that you know how to do network programming in Java, as well as knowing SQL.
    Java has JDBC - Java DataBase Connectivity API that supports your requirements in full.
    If you require a custom solution, then you need to be able to read data back from the server - when the server returns the ResultSet back to the client.
    A Socket object has both input and output streams. Seems that you know about the output stream, do you not know about the input stream?
    If the server is setup to send data back to the client over the same socket, then you should simply be able to read the results back from the socket's input stream.

  • Is sending photos over iMessage on wifi free?

    My iPad is wifi only so if I send pictures over wifi, will it cost my wifi bill?

    sending data over wifi cost the same no matter if it's don using a phone an ipad or a computer
    consult your wifi internet provider as to what cost you pay pr, mb

  • TCL SNMP send data

                       Hello I need some help with my problem.
    My Cisco device comunicate over SNMP, I need sens spetial data over SMS, and see way but try do it more good.
    Switch_1 (Send $data over TCL and SNMP)
    if [catch {action_snmp_trap intdata1 "424242" strdata "$data"} result] {
    error $result $errorInfo
    } else {
    action_syslog msg "SNMP sent"}
    Switch_2 (recieve SNMP message and must send it to Cellular int.)
    event manager applet SNMP
    event snmp-notification oid 1.3.6.1.4.1.9.10.91.1.2.3.1.9. oid-val "424242" op eq src-ip-address xxx.xxx.xxx.xxx
    action 10 cellular 0/0/1 gsm sms send 8xxxxxxxxxx "$data"
    I try know can EEM get strdada from SNMP, and put it to next action command? Than you.

    Hello Joseph, can posable overwrite one OID in one script?
    If I try do it, sw get error:
    Aug  4 14:08:01: %HA_EM-6-LOG: sw.tcl: Duplicate oid: 1.3.6.1.4.1.33333.2.0
    Aug  4 14:08:01: %HA_EM-6-LOG: sw.tcl:     while executing
    Aug  4 14:08:01: %HA_EM-6-LOG: sw.tcl: "sys_reqinfo_snmp_trapvar var vbinds oid 1.3.6.1.4.1.33333.2.0 string $line "
    Aug  4 14:08:01: %HA_EM-6-LOG: sw.tcl:     invoked from within
    Aug  4 14:08:01: %HA_EM-6-LOG: sw.tcl: "$slave eval $Contents"
    Aug  4 14:08:01: %HA_EM-6-LOG: sw.tcl:     (procedure "eval_script" line 7)
    Aug  4 14:08:01: %HA_EM-6-LOG: sw.tcl:     invoked from within
    Aug  4 14:08:01: %HA_EM-6-LOG: sw.tcl: "eval_script slave $scriptname"
    Aug  4 14:08:01: %HA_EM-6-LOG: sw.tcl:     invoked from within
    Aug  4 14:08:01: %HA_EM-6-LOG: sw.tcl: "if {$security_level == 1} {       #untrusted script
    Aug  4 14:08:01: %HA_EM-6-LOG: sw.tcl:      interp create -safe slave
    Aug  4 14:08:01: %HA_EM-6-LOG: sw.tcl:      interp share {} stdin slave
    Aug  4 14:08:01: %HA_EM-6-LOG: sw.tcl:      interp share {} stdout slave
    Aug  4 14:08:01: %HA_EM-6-LOG: sw.tcl: ..."
    Aug  4 14:08:01: %HA_EM-6-LOG: sw.tcl:     (file "tmpsys:/lib/tcl/base.tcl" line 50)
    Aug  4 14:08:01: %HA_EM-6-LOG: sw.tcl: Tcl policy execute failed:
    Aug  4 14:08:01: %HA_EM-6-LOG: sw.tcl: Duplicate oid: 1.3.6.1.4.1.33333.2.0

  • Cannot send SMS when voice and data enabled on 4G

    Iphone 6 on AT&T. When I enable Voice and Data for LTE, I cannot send or receive SMS messages. If I turn off LTE or just enable data over LTE, SMS works.
    I have reset the network setting, disabled iMessages and re-enabled, removed SIM car and replaced it, and restarted the phone. I have not restored the phone from scratch though and would like to avoid that.
    iMessages works fine.
    Any help?

    DavidsMacbook wrote:
    Iphone 6 on AT&T. When I enable Voice and Data for LTE, I cannot send or receive SMS messages. If I turn off LTE or just enable data over LTE, SMS works.
    I have reset the network setting, disabled iMessages and re-enabled, removed SIM car and replaced it, and restarted the phone. I have not restored the phone from scratch though and would like to avoid that.
    SMS is a carrier feature so, th first thing I would do is contact AT&T. There are a number of other threads in the forum about people have issues with AT&T and Voice over LTE, notably Caller ID.

Maybe you are looking for

  • How can i change my mac book air ID registered in beginning

    I purchased two macs and put same email address during registeration, how can I change the ID for one mac so that they are identified as different computers?

  • TO Not Created For DN (Delivery Note) Issue

    Hi For a DN (Delivery Note) TO (Transfer Order) is not created. Wat could be the problem.. wat need to be checked.. Wats the process flow here.. Vijay

  • Import Outlook 2010 contact into Mac OS X Address Book

    *Help needed!* In our company, we run PCs with Windows XP and MS Office 2010. For private usage I have a MacBook with Snow Leopard. Since quite I while, I am trying to export the contacts from my Outlook 2010 address book into the preferred Address B

  • My ipod nano can't work !!!

    my ipod nano just connected USB, then it shown black color apple logo, 1 mintues later, it shown menu screen, but it doesn't work, even switch it off. It still stay in menu screen about 15 mins, no any feedback.

  • Terminal Commands for Identifying  Apps as 32-Bit, 64-Bit, or Both

    I posted a prior topic on this matter, but cannot find it. I have seen these what I am asking about, but can't locate them. I am trying to identify the terminal commands noted in my subject. Message was edited by: donv (The Ghost) Message was edited