Discussion Board

Page 1 of 5 12345 LastLast
Results 1 to 15 of 63

Thread: Known Issues

  1. #1
    (Retired) Nokia Developer Admin. Nokia Ron's Avatar
    Join Date
    Jan 2006
    Location
    Michigan
    Posts
    4,664
    Please use this thread to post known issues with the Java and S60 development. This is not for possible bugs but only verified issues.

    Ron

  2. #2
    Nokia Developer Champion balagopalks's Avatar
    Join Date
    Nov 2003
    Location
    Bangalore , India
    Posts
    4,427
    In case if any one missed: Here is a quick link to "Known Issues In The Nokia 6600 MIDP 2.0 Implementation v1.7" explained much in detail with possible solutions/work arounds.
    http://www.forum.nokia.com/info/sw.n..._7_en.pdf.html

    Regards
    Gopal

  3. #3
    Registered User sun-shine's Avatar
    Join Date
    Jul 2006
    Posts
    4
    Hi All,

    I am facing a strange problem in Nokia 6600. I have created a simple form with a datefield. The form is being displayed fine. But when I change the GMT offset (+0.00 to -6.00 or any negative offset), the application is crashed. By debugging I came to know that it crashes at the constructor of DateField.

    This behaviour is only specific to this phone model. I have tested it on various 6600 phones but it has same behaviour. This thing doesn't occure in any other phone(Nokia 6260, 3230, Sony Ericsson k750i).

    Please advice.
    Thanks.

  4. #4
    Nokia Developer Champion njzk2's Avatar
    Join Date
    Mar 2005
    Location
    Paris
    Posts
    814
    Concerning 6230i, and may be some other devices that i don't know.

    the bluetooth connexion may not deliver all the data at once. Reading through the Stream may not let you get the whole data ina single shot, even if your buffer is not filled.
    One solution is to know the size of the data you are expecting, but in any case, give the bluetooth stack a some time and make several reads separated by a little time, until you read nothing or you are sure that you have all you need.

  5. #5
    Regular Contributor MananW's Avatar
    Join Date
    Aug 2005
    Posts
    151
    Hi All

    I have developed an application that works fine on 6681,3250.
    But when I tested this application on 6131 it does not work.

    My application connects to server(aspx page) and writes the content on mobile phone's local memory.This part is not working on 6131.

    Any comments???????
    Cheers,
    Manan

  6. #6
    (Retired) Nokia Developer Admin. Nokia Ron's Avatar
    Join Date
    Jan 2006
    Location
    Michigan
    Posts
    4,664
    When reporting known issues, try to give information to the fields listed below. Indicate the technology and platform/device, and write at least an overview of the known issue. Give a solution/workaround if you can.

    Technology:
    Reported against: (Platform/Devices/SW version)
    Subject:
    Detailed description:

    See the following examples:

    Resources cannot be prefetched after deallocation

    Using Bluetooth serial port in MIDlets

    Reinstallation problem in early SW builds on devices compliant with S60 2nd Edition, Feature Pack 1

    Canceling the installation of an application fails on the Nokia 6600

    Using authorization requires authentication in Bluetooth security manager

    Browser Control interface stops working after delete/reconstruct
    Last edited by Nokia Ron; 2006-09-08 at 15:39.

  7. #7
    Nokia Developer Champion hartti's Avatar
    Join Date
    Apr 2003
    Location
    USA, CA
    Posts
    7,192
    MananW, did you get an exception? Remember that the available directories on diifferent phone platforms are different. You should not use hard coded directory names, but get the accessible directores from the system as described in these documents.
    http://www.forum.nokia.com/info/sw.n..._v1_1.zip.html
    http://www.forum.nokia.com/info/sw.n..._2_en.zip.html

    Hartti

  8. #8
    Regular Contributor MananW's Avatar
    Join Date
    Aug 2005
    Posts
    151
    Ok One more problem I get on some phones is while installing my application which is signed I get error "certificate not on phone or SIM" while this application is working on many other phones.
    Is this a known issue?
    Cheers,
    Manan

  9. #9
    Nokia Developer Champion balagopalks's Avatar
    Join Date
    Nov 2003
    Location
    Bangalore , India
    Posts
    4,427
    AFAIK, the certificates may vary in different devices and also it may differ depending upon the region and some times depending upon different operators. Is your device an operator specific variant? Which certificate are you using?

    Regards
    Gopal

  10. #10
    When a server responds with a redirection (30X) the current connection
    gets screwed up. No headers are available and it's not possible to read
    from the incoming stream.
    In short, something like the example for the S40 (with a POST method)
    http://www.forum.nokia.com/Technical...mples_HTTP.htm
    doesn't work in S60 2nd ed devices (or at least in the 6630)

    The emulator works as expected.

    Tested on a stock Nokia 6630 phone.
    v 5.03.08
    17-08-05
    RM-1

  11. #11
    Regular Contributor harish13_ks's Avatar
    Join Date
    Sep 2006
    Posts
    72
    i installed an application into my nokia 6600.... it was the basic helloworld application which i modified........ this application takes in a input file and also gives an output file......
    this application seems to work fine in the emulator it also build fine for the device..... but when i execute the program in my device nothing happens........ no output file is created...... i do have the input file at the path
    C:\system\apps\
    but the output file is not created.......... this is one problem

    another thing is the basic hello world program when i executed it in my device it executes properly the first time but after that it doesnt execute........ when i press hello it just quits.........

    so plzzzzzzzzzzzzzzzzzzzzzzzzz can neone give me a solution to ne one of these problems
    preferable the first one...........

  12. #12
    Registered User juarezjunior's Avatar
    Join Date
    Dec 2005
    Location
    Brazil
    Posts
    1,883
    Hi harish13_ks,

    Please start your own thread to keep the forum organized, ok?

    no output file is created...... i do have the input file at the path

    What do you mean? Are you trying to use JSR-75 FileConnection on Nokia 6600? This device doesn't implement this API.

    Please clarify.

    BR,

    Juarez Jr
    Juarez Alvares Barbosa Junior - Brazil

  13. #13
    Regular Contributor harish13_ks's Avatar
    Join Date
    Sep 2006
    Posts
    72
    ok sorry the first post was not detailed enough...........

    i installed an application into my nokia 6600.... it was the basic helloworld application which i modified........ this application takes in a input file and also gives an output file...... this input and output files were created using C code not C++........ so im using fread and fwrite

    is it allowed to use fread and fwrite in Symbian applications.........

    this application seems to work fine in the emulator it also builds fine for the device..... but when i execute the program in my device nothing happens........ no output file is created......
    the input file is located at the following path in my device
    C:\system\apps\
    but the output file is not created.......... this is one problem

    another thing is the basic hello world program when i executed it in my device it executes properly the first time but after that it doesnt execute........ when i press hello it just quits.........

  14. #14
    Registered User juarezjunior's Avatar
    Join Date
    Dec 2005
    Location
    Brazil
    Posts
    1,883
    Hi,

    If you're talking about C++ this is the wrong section, go to the Symbian C++ instead (you cannot use pure c, ok???).

    FN Symbian C++
    http://discussion.forum.nokia.com/fo...isplay.php?f=6

    BR,

    Juarez Jr
    Juarez Alvares Barbosa Junior - Brazil

  15. #15
    Registered User Rafoso's Avatar
    Join Date
    Oct 2006
    Location
    Recife - PE, Brazil
    Posts
    7
    Slow Graphic Transformations.
    Description: Flip and rotation transformations usind MIDP 2.0 API is so slow.
    Reported against: S60 MIDP 2.0 devices
    Solution: Using the Nokia UI API instead of the MIDP 2.0 API

    Mutable Images do not perform correcly using NokiaUI API.
    Description: An image created with DirectGraphics.createImage(...) will not be painted correcly using DirectGraphics.drawImage(...).
    Reported against: 6600
    Solution: Use MIDP 2.0 methods to create and paint images in 6600 device.

Page 1 of 5 12345 LastLast

Similar Threads

  1. GCCE issues
    By apsaarin in forum Symbian Tools & SDKs
    Replies: 18
    Last Post: 2010-06-18, 13:13
  2. 6820 memory issues
    By jennydeng in forum Mobile Java General
    Replies: 2
    Last Post: 2009-09-15, 18:33
  3. S60 Known Issues
    By Nokia Ron in forum Symbian C++
    Replies: 68
    Last Post: 2008-04-25, 07:48
  4. Series 60 graphics and sound issues
    By Teh_Architect in forum Mobile Java Media (Graphics & Sounds)
    Replies: 0
    Last Post: 2005-08-08, 11:03
  5. WAP Push Viewer issues on 3650
    By wapian in forum Digital Rights Management & Content Downloading
    Replies: 2
    Last Post: 2003-10-14, 07:49

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Nokia Developer aims to help you create apps and publish them so you can connect with users around the world.

京ICP备05048969号  © Copyright Nokia 2013 All rights reserved