Nokia X3-02 C++ TCP/IP Application

Running a MoSync application that uses cellular network to send a TCP/IP message (80-100 bytes long) to a TCP/IP server.
Connect time is constantly stand on about 5 minutes (minutes).
When using the MoSync emulator it takes a split of second.
I checked it on 2 different cellular networks with same results.
Is there any kind of X3-02 setting that may cause that miserable performance?
Thanks,

answered your question here: http://discussions.nokia.com/t5/Connectivity/Nokia-X3-02-C-TCP-IP-Application/m-p/1728572#M45444

Similar Messages

  • Nokia C5-03 move newly installed application to me...

     Hi,
    How do you move your installed application from phone memory to memory card in Nokia C5-03
    Regards,
    S

    Hello Shareen, the application once installed in your phone cannot be moved to memory card. The only option is to remove the application from phone memory and then install it to your memory card.
    Nokia C7

  • Nokia Asha 201 hides the games & applications

    My
    Nokia 201 asha hides the games and applications downloads such as
    whatsapp and facebook, when I open my apps, it shows gallery(images,
    music, etc) instead of my apps downloads, how am I suppose to fix this?
    Moderator's notes: The post was edited. A more appropriate subject is provided.

    Is that the error message word for word?
    Because I never faced that particular error message and not be able to find it on the Internet. Mhm.
    Were you able to use that trick, mentioned in that other thread?
    If that does not work either, we have to double-check Nokia » Menu » Settings » Configuration. For that, which Internet APN do you need for your network operator and type of contract? If you do not know, we can look it up, but need the name of your operator, and the country your are in.

  • Nokia 6300: Lost memory card = Lost applications

    Hi
    Does anyone know if I can download the Collection software that came on the included memory card of my new 6300?
    I somehow lost the microSD card and no way I'm i retracing my steps to try and find it. Ive ordered a bigger memory card but wanted to download the applications that originally came with the phone.
    I've tried a few routes Nokia/Orange but no one seems to know. I'm looking to anyone out there who may have an idea.
    Many thanks
    Barry

    I had the same problem and contacted Nokia help email,
    Solution
    1. Install Nokia PC suite on your PC.
    2. Have original memory card with games etc on it in your phone.
    3. Connect your phone by cable to your PC and select Nokia mode on your phone and File manager in PC suite.
    4.Select 'memory card' in the window that appears and select all folders on the card, transfer the folders to your 'desktop' on your PC.
    5. Place your new 1GB card into a usb card reader and transfer the folders from your desktop to the new card.
    6. Replace the new card for the old and all should be OK, you are supposed to be-able to transfer direct from the PC to your phone but the 'Games & Collection' folders won't move !.
    John.

  • Nokia 5610 Xpress Music - Problem with Application...

    Hi all..
    I have a problem in my Nokia 5610 Xpress Music.
    I can't access Applications! When I enter an application, a message says:"supportive file. nothing to display". However, I can enter some of the 'Applications' from the 'Go to' button in the stand by screen. My 'Calculator' has disappeared from my Organizer.
    If anyone helps to solve this problem, it would be highly appreciated. Thanks in advance.
    Regards,
    musicsick2000.

    Most of us here are just nokia users like you or anybody else who asks a problem here and seeks a solution.We are not professionals,and only try to help others.
    Now, in this present case: For an instance,The calculator has disappeared. It is a part of firmware which cannot be edited.If it was a symbian phone then there was a possibility of developing a patch.But, with s40's the only option you have is to go for an firmware upgrade,if you can do it by yourself then well enough.Otherwise you need to visit the care center where you can get your firmware updated or get a stable firmware which has a calculator.
    Was this post of some help? Click 'Kudos' star on the right hand side of this post. Your gesture will be highly appreciated!

  • Simple TCP chat application half duplex not working for me

    I m having a problem in TCP application working half duplex
    My friend runs client program who is in near by city and i run the server program in my system
    Let my ip address is 116.x.y.z
    My server program is
    import java.net.*;
         import java.io.*;
         public class tcpserver
             public static void main(String args[]) throws IOException
              ServerSocket s1=null;
              try
                 s1=new ServerSocket(98);
              catch(IOException e)
                 System.err.println("Could not find port 98");
                 System.exit(1);
              Socket c=null;
              try
                 c=s1.accept();
                 System.out.println("Connection from"+c);
                                      catch(IOException e)
                 System.out.println("Accept failed");
                 System.exit(1);
              PrintWriter out=new PrintWriter(c.getOutputStream(),true);
              BufferedReader in=new BufferedReader(new InputStreamReader(System.in));
              System.out.println("I am ready,type now");
              String l=in.readLine();
              while(l!=null)
                 out.println(l);
              out.close();
              in.close();
              c.close();
              s1.close();
         }The Client program is which my friend executes is
    import java.net.*;
         import java.io.*;
         public class tcpclient
             public static void main(String arg[]) throws IOException
              Socket s=null;
              BufferedReader b=null;
              try
                 s=new Socket(InetAddress.getByName("116.x.y.z"),98);
                 b=new BufferedReader(new InputStreamReader(s.getInputStream()));
              catch(UnknownHostException u)
                 System.err.println("I dont know host");
                 System.exit(0);
              String inp;
              while((inp=b.readLine())!=null)
                 System.out.println(inp);
                 break;
              b.close();
              s.close();
         }Important Note: When i run this program specifying within my system its working ( i mean running the program in two different windows(terminals) its working for me)
    When i give the client program to my friend its getting compiling for him but not running for him
    Its showing him unknownhost exception and main method not found like this.
    Please correct the above code or else just what kind of strategy we should follow in order to get rid of this problem
    When i normally run this program in my system
    the output when i run in my own system is
    Output for running tcpserver.java
    ~\JDK2~1.0\bin>java tcpserver
    Connection fromSocket[addr=/116.x.y.z,port=1930,localport=98] // in output i edit the ip address text
    I am ready,type now
    this is test text
    Output for running tcpclient.java
    ~\JDK2~1.0\bin>java tcpclient
    this is test text
    My problem is its working in my system when it exceeds out the output is not available for me
    Help me Please !!!

              String l=in.readLine();
              while(l!=null)
              out.println(l);
              }That will print the same thing forever. Make it the same as the loop in the client.
    Important Note: When i run this program specifying within my system its working ( i mean running the program in two different windows(terminals) its working for me)Looping forever might be what you call 'working'. I don't.
    Its showing him unknownhost exception and main method not found like this.Change this:
    new Socket(InetAddress.getByName("116.x.y.z"),98)to this:
    new Socket("116.x.y.z",98)although your friend may then run into connectivity problems ...

  • My nokia 110 doesn't browse with application why?...

    any time i want to browse with application on my nokia 110 the internet icon doesn't appear and it doesn't connect

    have you checked with your network carrier that you have the correct settings for mobile internet, and that mobile internet is indeed activated on your service?

  • Nokia 6021 : I deleted the clock application. How ...

    Hello,
    while trying to free some space by deleting applications from my Nokia 6021 I ended up deleting a clock application, which was in fact the clock shown on the main screen of my phone.
    Now I don´t have a clock on my 6021 anymore (in fact, I can have it as screensaver, but I like it shown in the main screen).
    How can I get that clock back? Can I dowload it from somewhere in the internet? I tried to copy the application from another 6021 which had it, but got no success.
    Thanks for you help.
    Ricardo Bonon

    Well, 3 options, I guess: 1st, copy it manually (as what you did) from another mobile having the same model and firmware version… 2nd option, do the factory resetting thing (it may revive your clock in many instances)… if still no luck, here’s the 3rd option: flash your present firmware and install new one… I’m sure this will get everything back to normal… (hey, be reminded of those data that you are going to lost once you do the flashing… believe me, it’s more than clock function)
    …err… can you tell us how did you deleted your clock from your main menu… it’s quite interesting, huh?
    …actually, just for us to avoid the same mistake…

  • Tcp packets application

    hi, i would like to be able to capture application packets eg from yahoo . Next i have to extract the destination port and ip address...is there anyway to do it? I have to use tcp sockets.
    Is there anyway to do this? Basically, I make a connection between to peer computers, then applications are supposed to use this connection ...any help, advice, code would be appreciated
    So for example, yahoo would send the packets to the listening program on the same machine, the listening program then sends the packets over to the other peer listening program on another machine and then this peer listening program sends the packets back to yahoo allowign communication

    Java doesn't have the lowlevel raw-sockets support for IP required for packet sniffing. c.f. snort.
    You could implement a caching proxy server to implement these requirements..

  • What Application is required for Programming a game for a Nokia 7650

    Hello, I am new to all this and I would like to program a game on a Nokia 7650, I have downloaded a few games and transfered them via infrared to my phone (JAD and JAR files)which are pretty cool. All I know they are either written in Java or C++.I understand C++, is faster but more difficult to program so I would like to begin using Java. Please advise me what Java Application I need on my PC to write a Game for the Nokia 7650, there are so many Applications on the Java Site, I have no idea which one to download.I am not interested writting a game on the pc only the mobile. Many thanks.

    .I am not interested writting a game on the pc only the mobile. Many thanksYou still 'write' the game on the PC, you simply deploy it on the mobile :)
    1) Learn java
    2) Learn how to write games
    3) Learn the mobile phone API, and how to write small, efficient programs
    4) start writing mobile games
    if you've never done any programming before, then you've got >1years work there :S

  • Nokia 6021 tcp/ip

    hey i'm wondering what does the packaet data connectivity mean?
    can i connect my nokia to my home tcp/ip i.e wireless router?
    if so how?
    or is this the connect between the computer and the phone for i.e surfin on the computer thorugh gprs etc?

    Hi!
    I think I have the same problem... I can't access WiFi connection in open WLANs, I just can connect to WLAN via DHCP... But this problem appeared after first attempt to connect via DHCP. Before there were no problems to connect to open WLANs... I really don't want hard reset of my phone...
    Any suggestions? 
    Thanks!

  • New Islamic applications for Nokia 6300

    Hi everyone,
    I recently bought my Nokia 6300 (little more than a month). Recently Nokia is releasing 6300 with preloaded Islamic applications. I tried to nokia.com/ramadan, however there I could not download Islamic applications for my Nokia 6300. Though, there are links available for N73 and other phones.
    Is there anyway I can get these applications? Any web link? OR can anyone send me these to email address?
    Thanks in advance.

    Hi,
    Actually, Nokia has released Islamic applications specifically for 6300 as well (as is mentioned at http://mea.nokia.com/english/ramadan). These applications are available for download for S60 phones however, there is no link for downloading these applications for S40 phones.

  • IM messaging application error in Nokia 6301

    Everytime I try to open the IM application in my Nokia 6301 I get the following application error/Details: Java/lang/IllegalAccess Error: Cannot access class com/nokia/mid/ui/lcdui/DisplayStateListener from class am.
    I have try solving this problem doing the Rest. factory sett: *Restore settings only And Restore all without success. I'm able to restore the phone to the factory settings but still unable to open the IM application.
    I have also tried: Nokia Pc Suite & Nokia software updater without success.
    Any ideas how can I recover this application?
    Thanks

    I found out that the error was due to a wave file which i tried to play.
    This link says to use "audio/wav" instead of "audio/x-wav" ...but still 6230i does not play the wav file.
    Pls visit this link :
    http://forum.nokia.com/document/Forum_Nokia_Technical_Library/contents/FNTL/audio_x-wav_throws_MediaException_on_Nokia_6230i.htm
    Any idea why this might be happening?

  • What kind of applications is supported by nokia 52...

    I tried to install a software but it says my mobile doesnt support SIS.... what kind of software can I install then ?

    Nokia 5200 is type of phone that falls into the catagory of series 40.
    As far as I know series 40 phones do not support sis or sisx files to install.
    Only series 60 [1st,2nd and 3rd edition] along wid dead series 90 and series 80 can run sis files.
    Nokia 5200 support installation of JAVA applications,games etc.
    They are plenty.
    Try a google search.
    Thanks.

  • Nokia C2-01 Application Error.

    I have Nokia C2-01, after RESTORING ALL the phone restarts and am directed to date&time settings after which my phone automatically starts to open My Nokia (it displays "opening my Nokia") but suddenly my phone displays "Application error" detail of error is "Illegal state java/lang/illegal state Exception Error occurred." This kind of error didnt happen before its something that started recently about one after buying the phone and updating its software to Version 11.40. The error keep showing after every restore. I dont understand reason for this error kindly advise.

    Please, let us continue in your other thread …

Maybe you are looking for

  • To Send HTML Format and excel file attachment  in same mail

    Dear All,         Have requerment ,to send a mail options HTML table format and same data in excel file attachement.have capable to do the html format using methods BCS .but how to send excel format attachment in same  mail. Please guide me how to do

  • Trouble with Zen Touch Butt

    All of the sudden, my backwards and forwards buttons don't work, and I have to press hard on the OK button for it to work. Is this the death of my player, or is there an actual solution? Thanks in advance

  • F.13 for Intercompany accounts

    Is there a way to configure F.13 so it can clear intercompany accounts instead of clearing via F-03 manually? If not, is there another tool that will help me clear across co codes for certain GL accounts? I mean if there is a debit in GL account 1 in

  • WHT deduction on Check reciept through FBCJ

    HI All I have a scenario of advance receipt which i am doing through FBCJ Check Receipt Option. I am facing a problem that it is not posting an entry of TDS (WHT) at the time of receipt however TDS (WHT) entry is getting generated if am posting throu

  • Are Truncate and Trunc SQL ISO ANSI compliance ?

    Somebody has idea of which of the statements TRUNCATE and TRUNC are SQL ISO ANSI compliance ? is Truncate a function or a statement ? Thanks Nelson