Discussion Board

Results 1 to 9 of 9
  1. #1
    Regular Contributor gmsk19's Avatar
    Join Date
    Jan 2007
    Location
    Bangalore
    Posts
    285
    I have allocated "protected" UIDs given to me by symbiansigned.com I want to install a signed application on Nokia E61 which uses Symbian v9 OS. But i am not able to install the application.

    I am getting an error message saying "unable to install".
    My guess is its an UID allocation issue thats causing the problem.

    Can anyone please help me out??

  2. #2
    Nokia Developer Champion kiran10182's Avatar
    Join Date
    Mar 2006
    Location
    Helsinki, Finland
    Posts
    8,236
    Hi,
    Quote Originally Posted by gmsk19
    I have allocated "protected" UIDs given to me by symbiansigned.com I want to install a signed application on Nokia E61 which uses Symbian v9 OS. But i am not able to install the application.

    I am getting an error message saying "unable to install".
    My guess is its an UID allocation issue thats causing the problem.

    Can anyone please help me out??
    I hope Antony's blog may help you:
    http://blogs.forum.nokia.com/view_entry.html?id=93

    Find out all the occurances of "Unable to Install" from above blog.

    Regards.
    Kiran.

  3. #3
    Regular Contributor gmsk19's Avatar
    Join Date
    Jan 2007
    Location
    Bangalore
    Posts
    285
    do you have any information regharding SECUREID?

  4. #4
    Nokia Developer Champion kiran10182's Avatar
    Join Date
    Mar 2006
    Location
    Helsinki, Finland
    Posts
    8,236
    Hi,
    Quote Originally Posted by gmsk19
    do you have any information regharding SECUREID?
    Following is from SDK help:
    SID stands for "Secure Identifier." It is a locally unique identifier that is used to determine which private directory a process can access. It is also used to identify the caller applications.
    Find out more information about it from SDK help under "Platform Security FAQ".
    Search for "SID" in the SDK help.
    You would find good information from there.

    Regards.
    Kiran.

  5. #5
    Regular Contributor gmsk19's Avatar
    Join Date
    Jan 2007
    Location
    Bangalore
    Posts
    285
    Quote Originally Posted by kiran10182
    Hi,


    Following is from SDK help:


    Find out more information about it from SDK help under "Platform Security FAQ".
    Search for "SID" in the SDK help.
    You would find good information from there.

    Regards.
    Kiran.
    Hi Kiran,
    the problem seems to be due to data caging..
    One application cannot write into another applications private folders,but we checked this also...

    It is something to do with the two files we are trying to write to the mobile...
    Here is the package file... check it out and please tell me....


    ;Standard SIS file header
    #{"MyApplication"},(0x10003a3f),1,0,0

    ;Localised Vendor name
    %{"Vendor Name-EN"}

    ;Unique Vendor name
    :"blaze"

    ;Supports Series 60 v 3.0
    [0x101F7961], 0, 0, 0, {"Series60ProductID"}

    ;Files to install

    "C:\Symbian\9.1\S60_3rd_MR_3\Epoc32\release\gcce\urel\MyApplication.exe" -"!:\sys\bin\MyApplication.exe"

    "C:\Symbian\9.1\S60_3rd_MR_3\Epoc32\data\z\resource\apps\MyApplication.rsc" -"!:\resource\apps\MyApplication.rsc"

    "C:\Symbian\9.1\S60_3rd_MR_3\Epoc32\data\z\resource\apps\MyApplicationicon.mif" -"!:\resource\apps\MyApplicationicon.mif"

    "C:\Symbian\9.1\S60_3rd_MR_3\epoc32\data\z\private\20008F73\apps\MyApplication_reg.rsc" -"!:\private\10003a3f\import\apps\MyApplication_reg.rsc"

    "C:\Symbian\9.1\S60_3rd_MR_3\Epoc32\Data\z\resource\plugins\MyApplicationEngine.rsc" -"!:\resource\plugins\MyApplicationEngine.rsc"

    "C:\Symbian\9.1\S60_3rd_MR_3\Epoc32\release\gcce\urel\MyApplicationEngine.dll" -"!:\sys\bin\MyApplicationEngine.dll"

    "C:\Symbian\9.1\S60_3rd_MR_3\Epoc32\release\gcce\urel\EAXP.DLL" -"!:\sys\bin\EAXP.DLL"

    "C:\Symbian\9.1\S60_3rd_MR_3\Epoc32\winscw\c\private\20008F73\infoFile.txt" -"!:\private\10003a3f\infoFile.txt"

    "C:\Symbian\9.1\S60_3rd_MR_3\Epoc32\winscw\c\resource\apps\MyApplicationBitmap.mbm" -"!:\resource\apps\MyApplicationBitmap.mbm"

  6. #6
    Nokia Developer Moderator wizard_hu_'s Avatar
    Join Date
    Feb 2006
    Location
    Mallorca, Holiday
    Posts
    27,683
    These two lines are mixed somehow:
    "C:\Symbian\9.1\S60_3rd_MR_3\epoc32\data\z\private\20008F73\apps\MyApplication_reg.rsc" -"!:\private\10003a3f\import\apps\MyApplication_reg.rsc"
    "C:\Symbian\9.1\S60_3rd_MR_3\Epoc32\winscw\c\private\20008F73\infoFile.txt" -"!:\private\10003a3f\infoFile.txt"
    The _reg.rsc (which belongs to the system) should got from 1003a3f to 10003a3f, the infoFile.txt (which belongs to your application) should go from 20008F73 to 20008F73:
    Code:
    "C:\Symbian\9.1\S60_3rd_MR_3\epoc32\data\z\private\10003a3f\apps\MyApplication_reg.rsc" -"!:\private\10003a3f\import\apps\MyApplication_reg.rsc"
    "C:\Symbian\9.1\S60_3rd_MR_3\Epoc32\winscw\c\private\20008F73\infoFile.txt" -"!:\private\20008F73\infoFile.txt"
    Last edited by wizard_hu_; 2007-01-17 at 16:45.

  7. #7
    Regular Contributor gmsk19's Avatar
    Join Date
    Jan 2007
    Location
    Bangalore
    Posts
    285
    Quote Originally Posted by wizard_hu_
    These two lines are mixed somehow:The _reg.rsc (which belongs to the system) should got from 1003a3f to 10003a3f, the infoFile.txt (which belongs to your application) should go from 20008F73 to 20008F73:
    Code:
    "C:\Symbian\9.1\S60_3rd_MR_3\epoc32\data\z\private\10003a3f\apps\MyApplication_reg.rsc" -"!:\private\10003a3f\import\apps\MyApplication_reg.rsc"
    "C:\Symbian\9.1\S60_3rd_MR_3\Epoc32\winscw\c\private\20008F73\infoFile.txt" -"!:\private\20008F73\infoFile.txt"
    Hi wu,
    I actually started out with what u told,but it did not work out... so i was medling with the UIds...

    Can u tell me where to find this UID3... it seems we have to assign it as follows
    UID3=SECUREID
    help me out plz? stuck with the problem from last 2 days!!!

  8. #8
    Registered User Kaka_Bian's Avatar
    Join Date
    Jan 2007
    Posts
    1
    I think it caused by you used a unprotected UID (0x10003a3f) for your sis file. For Symbian OS v9, the protected UID start with 0x2XXXXXXX

  9. #9
    Nokia Developer Moderator ltomuta's Avatar
    Join Date
    Sep 2004
    Location
    Tampere, Finland
    Posts
    11,335
    Quote Originally Posted by Kaka_Bian
    I think it caused by you used a unprotected UID (0x10003a3f) for your sis file. For Symbian OS v9, the protected UID start with 0x2XXXXXXX
    That is, the use of 0x10003a3f is valid for system's application registration data cage but it cannot be used as packageUID in *.pkg. See SDK docs and Symbian Signed testing criteria PKG-07.

Similar Threads

  1. Blanket net access permission for signed midlets on 6600 / 6630
    By dfun in forum Mobile Java Networking & Messaging & Security
    Replies: 0
    Last Post: 2006-04-21, 09:47
  2. 6610 Unable to open installed applications
    By vpdesai in forum Mobile Java General
    Replies: 2
    Last Post: 2005-05-14, 13:51
  3. Nokia 6600, install signed midlet?
    By ossipetz in forum Mobile Java Tools & SDKs
    Replies: 3
    Last Post: 2003-11-18, 12:51
  4. Replies: 1
    Last Post: 2003-09-18, 07:32
  5. Unable to connect to Internet if Nokia PC Suite 4.81 is installed
    By jonnisbett in forum PC Suite API and PC Connectivity SDK
    Replies: 1
    Last Post: 2002-11-21, 04:09

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