Re: Symbian error= -36

The link below may help.
http://newlc.com/Symbian-OS-Error-Codes.html
It gives the definitions for the Symbian error codes. Sorry that I could not be of more help.

hi it is a great help, at leats i know what error -36 means.
KErrDisconnected -36 Disconnected
connection disconnected. i do not understand why.
Maybe i should not sleep in my thread, or the socket times out?
In the wireless toolkit emulator it works perfect. What is wrong with my Nokia N80 phone, E50 also?
Problem with the socket implementation of that phone?
regards
seb

Similar Messages

  • Need help with my HttpConnection From Midlet To Servlet...

    NEED HELP ASAP PLEASE....
    This class is supposed to download a file from the servlet...
    the filename is given by the midlet... and the servlet will return the file in bytes...
    everything is ok in emulator...
    but in nokia n70... error occurs...
    Http Version Mismatch shows up... when the pout.flush(); is called.. but when removed... java.io.IOException: -36 occurs...
    also i have posted the same problem in nokia forums..
    please check also...
    http://discussion.forum.nokia.com/forum/showthread.php?t=105567
    now here are my codes...
    midlet side... without pout.flush();
    public class DownloadFile {
        private GmailMidlet midlet;
        private HttpConnection hc;
        private byte[] fileData;
        private boolean downloaded;
        private int lineNumber;
    //    private String url = "http://121.97.220.162:8084/ProxyServer/DownloadFileServlet";
        private String url = "http://121.97.221.183:8084/ProxyServer/DownloadFileServlet";
    //    private String url = "http://121.97.221.183:8084/ProxyServer/Attachments/mark.ramos222/GmailId111d822a8bd6f6bb/01032007066.jpg";
        /** Creates a new instance of DownloadFile */
        public DownloadFile(GmailMidlet midlet, String fileName) throws OutOfMemoryError, IOException {
            System.gc();
            setHc(null);
            OutputStream out = null;
            DataInputStream is= null;
            try{
                setHc((HttpConnection)Connector.open(getUrl(), Connector.READ_WRITE));
            } catch(ConnectionNotFoundException ex){
                setHc(null);
            } catch(IOException ioex){
                ioex.printStackTrace();
                midlet.alertScreen = new AlertScreen("Error C1", ioex.toString(),
                        null, AlertType.ERROR);
                midlet.alertScreen.setTimeout(Alert.FOREVER);
                midlet.display.setCurrent(midlet.alertScreen);
            try {
                if(getHc() != null){
                    getHc().setRequestMethod(HttpConnection.POST);
                    getHc().setRequestProperty("Accept","*/*");
                    getHc().setRequestProperty("Http-version","HTTP/1.1");
                    lineNumber = 1;
                    getHc().setRequestProperty("CONTENT-TYPE",
                            "text/plain");
                    lineNumber = 2;
                    getHc().setRequestProperty("User-Agent",
                            "Profile/MIDP-2.0 Configuration/CLDC-1.1");
                    lineNumber =3;
                    out = getHc().openOutputStream();
                    lineNumber = 4;
                    PrintStream pout = new PrintStream(out);
                    lineNumber = 5;
                    pout.println(fileName);
                    lineNumber = 6;
    //                pout.flush();
                    System.out.println("File Name: "+fileName);
                    lineNumber = 7;
                    is = getHc().openDataInputStream();
                    long len = getHc().getLength();
                    lineNumber = 8;
                    byte temp[] = new byte[(int)len];
                    lineNumber = 9;
                    System.out.println("len "+len);
                    is.readFully(temp,0,(int)len);
                    lineNumber = 10;
                    setFileData(temp);
                    lineNumber = 11;
                    is.close();
                    lineNumber = 12;
                    if(getFileData() != null)
                        setDownloaded(true);
                    else
                        setDownloaded(false);
                    System.out.println("Length : "+temp.length);
                    midlet.setAttachFile(getFileData());
                    lineNumber = 13;
                    pout.close();
                    lineNumber = 14;
                    out.close();
                    lineNumber = 15;
                    getHc().close();
            } catch(Exception ex){
                setDownloaded(false);
                ex.printStackTrace();
                midlet.alertScreen = new AlertScreen("Error C2+ line"+lineNumber,
                        ex.toString()+
                        " | ",
                        null, AlertType.ERROR);
                midlet.alertScreen.setTimeout(Alert.FOREVER);
                midlet.display.setCurrent(midlet.alertScreen);
        public HttpConnection getHc() {
            return hc;
        public void setHc(HttpConnection hc) {
            this.hc = hc;
        public String getUrl() {
            return url;
        public void setUrl(String url) {
            this.url = url;
        public byte[] getFileData() {
            return fileData;
        public void setFileData(byte[] fileData) {
            this.fileData = fileData;
        public boolean isDownloaded() {
            return downloaded;
        public void setDownloaded(boolean downloaded) {
            this.downloaded = downloaded;
    }this is the midlet side with pout.flush();
    showing Http Version Mismatch
    public class DownloadFile {
        private GmailMidlet midlet;
        private HttpConnection hc;
        private byte[] fileData;
        private boolean downloaded;
        private int lineNumber;
    //    private String url = "http://121.97.220.162:8084/ProxyServer/DownloadFileServlet";
        private String url = "http://121.97.221.183:8084/ProxyServer/DownloadFileServlet";
    //    private String url = "http://121.97.221.183:8084/ProxyServer/Attachments/mark.ramos222/GmailId111d822a8bd6f6bb/01032007066.jpg";
        /** Creates a new instance of DownloadFile */
        public DownloadFile(GmailMidlet midlet, String fileName) throws OutOfMemoryError, IOException {
            System.gc();
            setHc(null);
            OutputStream out = null;
            DataInputStream is= null;
            try{
                setHc((HttpConnection)Connector.open(getUrl(), Connector.READ_WRITE));
            } catch(ConnectionNotFoundException ex){
                setHc(null);
            } catch(IOException ioex){
                ioex.printStackTrace();
                midlet.alertScreen = new AlertScreen("Error C1", ioex.toString(),
                        null, AlertType.ERROR);
                midlet.alertScreen.setTimeout(Alert.FOREVER);
                midlet.display.setCurrent(midlet.alertScreen);
            try {
                if(getHc() != null){
                    getHc().setRequestMethod(HttpConnection.POST);
                    getHc().setRequestProperty("Accept","*/*");
                    getHc().setRequestProperty("Http-version","HTTP/1.1");
                    lineNumber = 1;
                    getHc().setRequestProperty("CONTENT-TYPE",
                            "text/plain");
                    lineNumber = 2;
                    getHc().setRequestProperty("User-Agent",
                            "Profile/MIDP-2.0 Configuration/CLDC-1.1");
                    lineNumber =3;
                    out = getHc().openOutputStream();
                    lineNumber = 4;
                    PrintStream pout = new PrintStream(out);
                    lineNumber = 5;
                    pout.println(fileName);
                    lineNumber = 6;
                    pout.flush();
                    System.out.println("File Name: "+fileName);
                    lineNumber = 7;
                    is = getHc().openDataInputStream();
                    long len = getHc().getLength();
                    lineNumber = 8;
                    byte temp[] = new byte[(int)len];
                    lineNumber = 9;
                    System.out.println("len "+len);
                    is.readFully(temp,0,(int)len);
                    lineNumber = 10;
                    setFileData(temp);
                    lineNumber = 11;
                    is.close();
                    lineNumber = 12;
                    if(getFileData() != null)
                        setDownloaded(true);
                    else
                        setDownloaded(false);
                    System.out.println("Length : "+temp.length);
                    midlet.setAttachFile(getFileData());
                    lineNumber = 13;
                    pout.close();
                    lineNumber = 14;
                    out.close();
                    lineNumber = 15;
                    getHc().close();
            } catch(Exception ex){
                setDownloaded(false);
                ex.printStackTrace();
                midlet.alertScreen = new AlertScreen("Error C2+ line"+lineNumber,
                        ex.toString()+
                        " | ",
                        null, AlertType.ERROR);
                midlet.alertScreen.setTimeout(Alert.FOREVER);
                midlet.display.setCurrent(midlet.alertScreen);
        public HttpConnection getHc() {
            return hc;
        public void setHc(HttpConnection hc) {
            this.hc = hc;
        public String getUrl() {
            return url;
        public void setUrl(String url) {
            this.url = url;
        public byte[] getFileData() {
            return fileData;
        public void setFileData(byte[] fileData) {
            this.fileData = fileData;
        public boolean isDownloaded() {
            return downloaded;
        public void setDownloaded(boolean downloaded) {
            this.downloaded = downloaded;
    }here is the servlet side...
    protected void processRequest(HttpServletRequest request, HttpServletResponse response)
        throws ServletException, IOException {
            if(request.getMethod().equals("POST")){
                BufferedReader dataIN = request.getReader();
                String fileName = dataIN.readLine();
                File file = new File(fileName);
                String contentType = getServletContext().getMimeType(fileName);
                response.setContentType(contentType);
                System.out.println("Content Type: "+contentType);
                System.out.println("File Name: "+fileName);
                int size = (int)file.length()/1024;
                if(file.length() > Integer.MAX_VALUE){
                    System.out.println("Very Large File!!!");
                response.setContentLength(size*1024);
                FileInputStream fis = new FileInputStream(fileName);
                byte data[] = new byte[size*1024];
                fis.read(data);
                System.out.println("data lenght: "+data.length);
                ServletOutputStream sos = response.getOutputStream();
                sos.write(data);
    //            out.flush();
            }else{
                response.setContentType("text/plain");
                PrintWriter out = response.getWriter();
                BufferedReader dataIN = request.getReader();
                String msg_uid = dataIN.readLine();
                System.out.println("Msg_uid"+msg_uid);
                JDBConnection dbconn = new JDBConnection();
                String fileName = dbconn.getAttachment(msg_uid);
                String[] fileNames = fileName.split(";");
                int numFiles = fileNames.length;
                out.println(numFiles);
                for(int i = 0; i<numFiles; i++){
                    out.println(fileNames);
    out.flush();
    out.close();
    Message was edited by:
    Mark.Ramos222

    1) Have you looked up the symbian error -36 on new-lc?
    2) Have you tried the example in the response on forum nokia?
    3) Is the address "121.97.220.162:8084" accessible from the internet, on the device, on the specified port?

  • Http Connection Problem on 7650 Emulator

    HI!
    I'm trying to establish a http connection with my tomcat server. My code is as following:
    private void callServlet() throws IOException
    HttpConnection http = null;
    InputStream iStrm = null;
    // Data is passed at the end of url for GET
    /* String url = "http://localhost:8080/webserv" + "?" +
    "account=" + tfAcct.getString() + "&" +
    "password=" + tfPwd.getString();*/
    try
    http = (HttpConnection) Connector.open("http://heavenfighter.homeftp.org:8080/webserv?account=marco&password=test");
         catch(IOException e)
              fmMain.append("Verbindung fehlgeschlagen");
         System.out.println(e.toString());
         try
    // Client Request
    // 1) Send request method
    http.setRequestMethod(HttpConnection.GET);
    // 2) Send header information - none
    // 3) Send body/data - data is at the end of URL
    // Server Response
    fmMain.append("Antwort" + http.getResponseCode());
    if (http.getResponseCode() == HttpConnection.HTTP_OK)
    iStrm = http.openInputStream();
    // 2) Get header information - none
    // 3) Get body (data)
    int length = (int) http.getLength();
    if (length > 0)
    byte servletData[] = new byte[length];
    iStrm.read(servletData);
    // Update the string item on the display
    fmMain.append("You passed to the servlet: \n" + new String(servletData));
    else
    fmMain.append("Unable to read data");
    catch (Exception e)
    fmMain.append("Network error2");
    System.out.println(e.toString());
    finally
    // Clean up
    if (iStrm != null)
    iStrm.close();
    if (http != null)
    http.close();
    After a few seconds, i get the network2 error and a message
    java.io.IOException: Status = -20015
    What does it means?
    How can i connect to a http server???
    Thanks

    Sorry, I didn't realize you where talking about an emulator. My advice is relevant only on a real phone.
    Anyway, here's some reading material that could help you:
    Related posts on Nokia's forum (you might have to register before you can enter):
    http://nkn.forum.nokia.com/forum/search.php?s=&action=showresults&searchid=452072&sortby=&sortorder=
    Symbian error codes (and unfortunately -20015 doesn't appear):
    http://www.symbian.com/developer/techlib/papers/errores/Erresapi.html
    shmoove

  • Error in using jsr-82 in symbian java

    Dear all,
    I am recently writing java application which require using bluetooth api
    (JSR-82). During the compilation, the program works fine. Unfortunately,
    when I try to run it with the emulator, error does come up. I have tried
    different classpath setting already. But the problem still can't be solved.
    Following is the details:
    epocdrive_j=C:\Symbian\UIQ_21\epoc32\Java\
    epocdrive_t=C:\Symbian\UIQ_21\erj
    classpath =
    C:\Symbian\UIQ_21\epoc32\java\lib\classes.zip;C:\Symbian\UIQ_21\epoc32\java\
    lib\emptyapi.zip;C:\Symbian\UIQ_21\erj\classes;C:\Symbian\UIQ_21\erj\ext\qaw
    t.jar;C:\Symbian\UIQ_21\erj\ext\util.jar;C:\Symbian\UIQ_21\erj\ext\btapi.jar
    ;C:\Symbian\UIQ_21\epoc32\java\ext\javaphone.jar;
    command used for compile : "javac -target 1.1 *.java"
    command used for running emulator: "pjava_g -cp t:\PrintClient PrintClient"
    error : "Exception in thread "main" java.lang.NoClassDefFoundError:
    javax/bluetooth/DiscoveryListener"
    This program I am doing is the PrintClient example in JSR82-spec_1.0a.pdf
    can anyone spot any error in my work??
    thank you very much!

    I could be totally wrong here, but i believe the error given means that "DiscoveryListener.class" can not be found in the classpath given, including as part of the jar files listed in the class path.
    Can you check for that filename on your system and tell us where it is if found?

  • Java.io.ioexception :Symbian OS error=-5105

    Hello friends...
    I encountered above error when i run my application on mobile device. I develop program that connect to remote server. When i run program it takes lots of time to connect and then Symbian OS Error -5105(about route not available) is occured. Any one can tell me,what should i do to solve this probelm.
    Thanks in advance.

    There is no need to double post!
    http://forum.java.sun.com/thread.jspa?threadID=704340&messageID=4083594#4083594
    te means (and you'd know if it you would have searched with google):
    -5105      IPv6: No route available
    So apparently you are using IPv6 and it can't find a route to the host you are connecting to.

  • BluetoothStateException: Symbian OS Error= -44 !!!

    guys, i'm studying the code on how to communicate using a Bluetooth device, i'm using MIDP2.0 and J2ME's WTK 2.2... and I got this error after I run my application on my phone.. it works fine on the emulator
    BluetoothStateException: Symbian OS Error = -44 : General : System ErrorI have no idea what's goin on in my code.. any help would be greatly appreciated..
    Many THanks ...
    below is my code
    import java.io.*;
    import javax.microedition.io.*;
    import javax.microedition.lcdui.*;
    import javax.microedition.midlet.*;
    import javax.bluetooth.*;
    public class BluetoothMIDlet extends MIDlet implements
        Runnable, CommandListener {
        public BluetoothMIDlet() {
             // Create a Form and add the Exit command to the Form
            Form f = new Form("Server");
            f.addCommand(new Command("Exit", Command.EXIT, 1));
            f.setCommandListener(this);
            Display.getDisplay(this).setCurrent(f);
            try {
                // Make the local device discoverable for the
                // client to locate
                f.append("getLocalDevice...");
                LocalDevice local = LocalDevice.getLocalDevice();
                if (!local.setDiscoverable(DiscoveryAgent.GIAC)) {
                    f.append("Failed to change to the " +
                        "discoverable mode");
                    return;
                   f.append("LocalDevice... done.");
                // Create a server connection object to accept
                // a connection from a client
                StreamConnectionNotifier notifier =
                    (StreamConnectionNotifier)
                    Connector.open("btspp://localhost:" +
                        "86b4d249fb8844d6a756ec265dd1f6a3");
                f.append("StreamConnectionNotifier... done.");       
                   System.out.println ("!!! Bluetooth is now running....");
                // Accept a connection from the client -
                // !!! Must have a client !!!
                //System.out.println ("\n... testing....");
                StreamConnection conn = notifier.acceptAndOpen();
                // Open the input to read data from
                InputStream in = conn.openInputStream();
                ByteArrayOutputStream out = new
                    ByteArrayOutputStream();
                // Read the data sent from the client until
                // the end of stream
                int data;
                while ((data = in.read()) != -1) {
                    out.write(data);
                // Add the text sent from the client to the Form
                f.append(out.toString());
                // Close all open resources
                in.close();
                conn.close();
                notifier.close();
            } catch (BluetoothStateException e) {
                 System.out.println ("\n!!! BluetoothStateException");
                f.append("BluetoothStateException: ");
                f.append(e.getMessage());
            } catch (IOException e) {
                 System.out.println ("\n!!!IOException");
                f.append("IOException: ");
                f.append(e.getMessage());
         * Starts a background thread when the MIDlet is
         * started.
        public void startApp()
            throws MIDletStateChangeException {
            new Thread(this).start();
        public void pauseApp() {}
        public void destroyApp(boolean unconditional) {}
        public void run() {}
         * Destroys the MIDlet when a Command occurs.
        public void commandAction(Command c, Displayable d) {
            notifyDestroyed();
    }

    -- ok, I think I know now,, the reason why it throws that exception is I need to "turn-ON" first my Bluetooth connectivity before I run my application...
    now, my question is, can my application implicitly turn-ON the Bluetooth ?
    thanks

  • Symbian OS error = -5105:no_route

    Hello friends...
    I encountered above error when i run my application on mobile device. I develop program that connect to remote server. When i run program it takes lots of time to connect and then Symbian OS Error -5105 is occured. Any one can tell me,what should i do to solve this probelm.
    Thanks in advance.

    There is no need to double post!
    http://forum.java.sun.com/thread.jspa?threadID=704340&messageID=4083594#4083594
    te means (and you'd know if it you would have searched with google):
    -5105      IPv6: No route available
    So apparently you are using IPv6 and it can't find a route to the host you are connecting to.

  • Problem updating N8 to Symbian Belle-Error code 20...

    Hello.
    I tried to update my Nokia N8 from Symbian Anna to Symbian Belle using Nokia Suite as it became available. The update got downloaded but while it was preparing to install, there was an error and its code was 2000. I retried several times but no luck. Same error 2000.
    How do I fix this problem please!?
    Solved!
    Go to Solution.

    @TroubleGirl
    At this point in update process N8 has to disconnect from Nokia Suite connectivity mode and load an additional driver Nokia USB ROM to flash software and this doen't seem to be happening.
    You could try repairing Nokia Suite installation, remove and re-install or perhaps use standalone Nokia Software Updater application:http://nds1.nokia.com/files/support/...erSetup_EN.exe
    Happy to have helped forum with a Support Ratio = 42.5

  • Symbian OS Error: -14

    i m new to java and j2me. i m developing chatting client. i have almost completed it. but when i m testing it on Nokia 9300 Communicator it gives exception like java.microedition.media Exception: Symbian OS Error: -14. this exception occurs while chatting with other person with rapid pace.
    and one more problem while connecting to GPRS it gives me warning messages. same with while accessing memory.
    plz give me solutions.

    can anyone help me abt this error. javax.microedition.media Exception: Symbian OS Error: -14

  • Symbian Anna - home screen error - no icons shown.

    Today while refreshing WLans suddenly phone give some error, which I couldn't read, cause was touching screen consistently. Then realized that suddenly all screens go back to their default values. It was changing between home screens and refreshing icons (like it does when phone turns on back from off). And then suddenly all screens got lost and main screen had no icons on it. I immediately took battery away. And put back. When the phone started, it was again with only primary screen and no icons on it. Even date, time, profile and notifications pane. There is no way to delete or to add a widget. when you try to add,it says homescreen is full. I added additional screen, and that works fine. But primary screen is in unworking condition, and there is no way to delete it...how to fix it? (E6/Anna)
    Solved!
    Go to Solution.

    Could only suggest that you backup essential data with Nokia Suite and try resetting to "Out of box" state by keying in *#7370# followed by 12345 (default Nokia lock code unless altered by user).
    Got a problem if this doesn't resolve issue as similarly I run my E6-00 upon Anna and don't want to update it!
    Happy to have helped forum in a small way with a Support Ratio = 37.0

  • System error on nokia c7 symbian belle

    Hi, I'm having problem on my nokia c7, sometimes it hangs and when i restart it shows a message ''system error'', i don't knows why is this happening i restored my phone but still its showing error report although in phone message it shows the number instead of person name which is already saved in contacts. Please help.........

    Hi tarbiya,
    Please perform a hard reset by entering *#7370# and default security code 12345.
    Don't forget to make a back up first with Nokia Suite. Go to Tools > Back up, but don't make a back up of your settings. 
    You can restore the back up onto your phone after the reset by going to Tools > Restore. 
    Also update the phone's software to make sure it works to it's full potential, you can do this by clicking on the green arrow in Nokia Suite. 
    Let me know if you manage to resolve the issue, otherwise I can provide further support.
    Iris9290
    If my post has helped you in any way, please accept it as a solution or click on the white star, so that other users will be able to benefit from it too.

  • Camerea error after Symbian ANNA Update

    I recently updated my C7's software to ANNA, after that its front camera is not working it says"Unexpected error occured", and says to try restarting the camera and if that does not work, the Phone. I've done both, but invain.
    Whats the problem, does anybody else got any similar problem?
    NOKIA please give a fix for this bug.....
    Solved!
    Go to Solution.

    aaaaaaaaaaaa  now I try to remove micro SD and camera stop working...this is redicilous, so what can I do. Sorry for my english.

  • Nokia C-7 software error (Symbian OS3)

    Hey, im in the middle of my GCSE's and have to remove the battery from my phone when in a exam, when i come to put the battery back in the menu button does not work, meaning i cant acces anything that isnt available on voice command or the home screen.
    I have in the past had to do a hard reset, but i dont fancy having to do this after every exam i go to cos  it deletes everything, so anyone any ideas? 
    Thanks for reading.

    Ok people i contacted NOKIA and this is what they replied, but... no luck, and im not going to send my phone in as last time it took a few weeks.
    I am going to wait untill Symbian OS3 ANNA is released and see if this solves the problem, if not ill come back here. 
    (message from Nokia)
    Dear Mr. Edwards,
    Thank you for contacting Nokia Care.
    We understand that you are having an issue with your Nokia C7-00 after removing the battery. We suggest that you perform the following troubleshooting steps to rectify the issue:
    Powercyle:
    1. Kindly turn off your phone.
    2. Remove the battery, SIM card and memory card for 5 minutes.
    3. Place back the battery, SIM card and memory card and turn on you phone.
    If performing a powercycle has not resolved the issue, we suggest that you do a soft reset on your Nokia C7-00. To do this, kindly follow the steps below:
    1. Go to the phone's main screen and press *#7780#.
    2. You will be prompted to restore the factory settings and it will ask for a lock code. If you have not changed the code, the default is 12345.
    3. Your phone will automatically restart after pressing the code.
    Furthermore, if the issue still persist after performing a soft reset. We recommend that you perform a software update on your Nokia C7-00 instead.  The latest version for the Nokia C7-00 is version 014.002.
    Remember to do a backup before performing a software update as this deletes data.You may back up you files using Ovi Suite so that you will only need to connect your device to your PC. To back up your files using Ovi Suite, kindly follow the steps below:
    1. Download and install Ovi Suite from the link below:
    http://www.nokia.co.uk/support/download-software/ovi-suite/compatibility-and-download
    2. Connect the phone you want to back up to your computer with a USB  cable. You can also use a Bluetooth connection. Your phone may ask you  how you want to connect. Select PC Suite and then select OK.
    3. In Nokia Ovi Suite, select Tools > Backup. Nokia Ovi Suite reads your phone and prepares a list of information that can be backed up.
    4. Select the information that you want to back up. If you want to change where the backup file is saved, select Browse and choose another location. If you have a lot of  music, photos or videos on your phone, including them in the backup will cause the backup process to be slower.
    5. Select Start to begin the backup. Do not disconnect or switch off your phone during the backup. If you need to stop the backup, select Stop. Nokia Ovi Suite will reach a  safe stop point and will then stop the backup.
    6. Click Finish to close the back up wizard.
    After making a backup proceed to the following steps to complete the software update:
    1.) Charge your battery – this is very important; charge your battery to the full power before starting the update process; if you run out of battery in the middle of updating you can seriously harm your phone (it  probably won’t even start up)
    2.) Download Nokia Software Updater – install the updater; this piece of software will guide you through the whole update process; you might need
    to unblock it in your firewall
    3.) Launch the Nokia Sofware Updater – from now on it’s really simple, just follow the guide and you’ll be fine; the whole updating process takes several minutes to complete, don’t try to cancel it in the middle in any case, your risk damaging your phone, USB cable needed again.
    4.) Restore your data – if you used a memory card for backup then you simply go to the Tools – Memory select Options – Restore from card; if you used Nokia PC Suite you have to connect your phone to the pc via USB cable, select Backup and Restore. Now you have your  phone loaded with the newest software. If you experienced some problems with your phone performance before the update process should fix it. So go on and check it out. To make sure your phone is really updated type *#0000# when in idle screen and check the software version.

  • PSION/Symbian KERN-EXEC error

    I have inherited a PersonalJava business application which runs on PSION s5/7, Pocket PC and Windows. For some reason on the PSIONs we have started getting reports of the following from users...
    PROGRAM CLOSED
    Program AWT-SERVER 00
    Reason Code KERN-EXEC
    Reason Number 3
    when they try to start a new version of the application.
    We are investigating why this should happen, but it would be great to hear from anone who has had previously experienced such an error when running a Java app on a PSION. The .jar file is 290KB for this version of the app.. was previously 252KB.... is it a possibility that this is too big? Is there a max jar size for the PSION JVM?...
    Anyway replies would be appreciated.
    Thanks

    The JVM we're using is the withIntent JVM from TAO:
    http://tao-group.com/ and http://withintent.biz/
    This is the JVM used on the Psion Teklogix netpad. I don't know about availability for Series 5/7. The nearest thing to a Series 5/7 is the netBook, which does not have an official TAO JVM available, though there was talk of one being released - I don't know what progress has been made here, or if one is still going to be released.
    I'd checkout http://www.psionteklogix.com and submit a query there.
    Good luck.

  • E72..error -39 symbian s60 v. 74.000. Communicator

    how to solve error - 39... E72.. Communicator.. What is the correct yahoo url for mail.. Thanks

    Hi pormaza
    Can you be more specific in regards to this issue. What are trying to do when this error occurs?
    The more detail you can provide the better
    Thanks
    If you find this post helpful, a click upon the white star at bottom would always be appreciated.
    If it also solves your problem, clicking ACCEPT AS SOLUTION below it will benefit other users!

Maybe you are looking for

  • How I Managed to Install Windows 8.1 Pro on an iMac 27-inch, Late 2013

    As is typical with many of my Boot Camp installs, this one did *not* goes as smoothly as planned. This installation was particularly troublesome, so I thought I would share how I managed to set up Boot Camp on a brand new iMac (27-inch, Late 2013) us

  • Sales Pricing Procedure : Statistical Condition type and Reqt.

    Hi, I wish to know what else is the use of marking the condition type statistical except the ones i know. (a) now included in the final price. but will be seen in the condtions (b) Can be used to send that value to a particular account. What is the u

  • ITunes won't let me edit artist information.

    Sometimes it will, sometimes it won't. What I'm talking about is... I have a lot of music without artist names, so when I click the blank space to edit the artist information... it does nothing. But that's only on SOME. The others will let me. I'm ju

  • Problem with downloading adobe reader

    i have windows vista home, internet explorer 8. any time i try to download adobereader it says that my explorer crushes... is there any solution for this problem???

  • Help! Lighting Effects filter has disappeared.

    As the headline says, the Lighting Effects filter has disappeared from the Render options in the Filters menu of Photoshop CS5. Can someone please tell me how to get it back? Thanks!