Invalid signature value under java 1.5.0_10 and PKCS11

Hi!
I have a problem with my GemSafe "Smart Card" and Java 1.5. I've developed a program that signs a document, every thing seems to be fine, but when I try to verify the signature a "Signature encoding error" is thrown. If we change the line:
Signature verify = Signature.getInstance("SHA1withRSA");using:
Signature verify = Signature.getInstance("SHA1withRSA", pkcs11Provider);The verification status is "OK"! But it has no sense to use that provider in the server!
What's wrong? I cannot continue :'(
Many thanks.
Here is the sample code:
import java.io.*;
import java.util.*;
import java.security.*;
import java.security.cert.*;
public class PatoFirma {
    public static void main (String args[]) {
        try {
            PatoFirma pf=new PatoFirma ();
            pf.go();
        catch (Exception ex) {
            ex.printStackTrace();
    public void go () throws Exception {
        // Provider.
        Provider pkcs11Provider = new sun.security.pkcs11.SunPKCS11("c:/cardConfig.txt");
        // Access to the smart card.
        char[] pin = "1234".toCharArray();
        KeyStore keyStore = KeyStore.getInstance("PKCS11", pkcs11Provider);
        keyStore.load(null, pin);
        // Get the first alias in the smart card.
        Enumeration aliasesEnum = keyStore.aliases();
        String alias = (String) aliasesEnum.nextElement();
        // Use this sample doc:
        byte[] doc = "pato".getBytes();
        // Sign.
        Signature signatureAlgorithm = Signature.getInstance("SHA1withRSA", pkcs11Provider);
        signatureAlgorithm.initSign((PrivateKey) keyStore.getKey(alias, null));
        signatureAlgorithm.update(doc);
        byte[] digitalSignature = signatureAlgorithm.sign();
        // Verify.
        Signature verify = Signature.getInstance("SHA1withRSA");
        verify.initVerify(keyStore.getCertificate(alias));
        verify.update(doc);
        boolean flag = verify.verify(digitalSignature);
        System.out.println("-->" + (flag ? "TRUE":"FALSE"));
}

hi!
I have nearly the same problem.
maybe you can help me.
public boolean verify1(byte[] text, byte[] mySignature, RSAPublicKey key){
          try {
          Signature sig = Signature.getInstance("SHA1withRSA");
          sig.initVerify(key);
// calculate the hash of a data I've signed
          String Hash = ComputeHash.getHash(text);
          sig.update(Hash.getBytes(),0,Hash.getBytes().length);
          return sig.verify(mySignature);
          }catch ( NoSuchAlgorithmException e){
          return false;
          catch (InvalidKeyException e){
          return false;
          catch (SignatureException e){
          return false;
     }Any ideas?!?
thanks, Robert

Similar Messages

  • "iTunes + Quicktime" has an invalid signature. It will not be installed.

    What am I supposed to do???
    I have tried and tried for weeks now.
    1. a box pops up that says "Apple Software Update" and it says "New software is available from apple"
    2. I click on "Install 1 Item"
    3. I click on "accept"
    4. It acts like its downloading...
    5. "iTunes + Quicktime" has an invalid signature. It will not be installed.
    and after i click okay it says if problem presists then click on tools>Download only...
    i did that and it STILL SAYS THE SAME THING!!
    HELP!?!?!?

    I don't understand it ... but it works..
    1. Get a POP-Up that says I need to update my Quicktime and iTunes players.
    2. I click ok -- DO IT!!
    3. I get the error -- "quicktime has an invalid signature".
    3a. I google the phrase
    4. I come here are read these pages ...
    5. I go to microsoft,com and do not find SP3 for XP .. and think that the comments here are "right on" that is not the first choice .. gettting something "new" from Mr. Gates and his crew.
    6. I go to apple.com ...download the files
    7...... and all is well??!!!!
    8.... wondering ...where does that pop-up come from that asks me to update ..?? if not from apple??!!
    Oh Well ... Very happy now ... thank you all for taking the time to input...and educate this old man.
    Respectfully,
    CP

  • Java.sql.SQLException: Invalid precision value. Cannot be less than zero

    Hi,
    In my portlet application have several jsf tables which bind to several oracle tables. I have tested the portlet in pluto and tried to deploy it on liferay. However, I get an exception stating:
    java.sql.SQLException: Invalid precision value. Cann
    ot be less than zero
    What could this exception mean? Has anyone else encountered this?
    Marc
    P.S. The trace is shown below:
    Feb 6, 2007 12:34:56 AM org.apache.catalina.core.ApplicationDispatcher invoke
    SEVERE: Servlet.service() for servlet jsp threw exception
    java.lang.RuntimeException: java.sql.SQLException: Invalid precision value. Cann
    ot be less than zero
    at com.sun.data.provider.impl.CachedRowSetDataProvider.setCursorRow(Cach
    edRowSetDataProvider.java:343)
    at com.sun.data.provider.impl.CachedRowSetDataProvider.setCursorIndex(Ca
    chedRowSetDataProvider.java:300)
    at com.sun.data.provider.impl.CachedRowSetDataProvider.getRowCount(Cache
    dRowSetDataProvider.java:624)
    at com.sun.rave.web.ui.component.TableRowGroup.getRowKeys(TableRowGroup.
    java:806)
    at com.sun.rave.web.ui.component.TableRowGroup.getFilteredRowKeys(TableR
    owGroup.java:429)
    at com.sun.rave.web.ui.component.TableRowGroup.getRowCount(TableRowGroup
    .java:749)
    at com.sun.rave.web.ui.component.Table.getRowCount(Table.java:307)
    at com.sun.rave.web.ui.renderer.TableRenderer.renderTitle(TableRenderer.
    java:400)
    at com.sun.rave.web.ui.renderer.TableRenderer.encodeBegin(TableRenderer.
    java:123)
    at javax.faces.component.UIComponentBase.encodeBegin(UIComponentBase.jav
    a:683)

    I've dug deeper into this problem and am able reproduce the error in the Pluto server. To reproduce this error, I modified my Oracle jdbc driver from the JSC embedded driver (smoracle.jar) to the Oracle native driver (ojdbc14.jar). Now, I am getting the exception in my Sun Application Server:
    What is the difference between ojdbc14.jar and smoracle.jar that could cause this problem? What can I do so that I can fix this problem for ojdbc14.jar?
    Thanks,
    Marc
    P.S.
    The problem is with the clob column (DOR_NOTE_TX). The stack trace is:
    [#|2007-02-06T09:00:53.663-0800|INFO|sun-appserver-pe8.2|javax.enterprise.system.stream.out|_ThreadID=16;|
    Reader executing query ps=0 SELECT DOR_NOTE_DT, DOR_NOTE_TX FROM DOR.DOR_NOTE_DATA WHERE DOR_NOTE_CD='SECURITY' AND TO_CHAR(DOR_Note_Dt, 'mm/dd/yyyy') = '02/05/2007'
    No Params|#]
    [#|2007-02-06T09:00:53.679-0800|WARNING|sun-appserver-pe8.2|javax.enterprise.system.stream.err|_ThreadID=16;|
    java.sql.SQLException: Invalid precision value. Cannot be less than zero
    Message was edited by:
    marcnikko

  • Error while attaching document to report on Portal - Invalid selection valu

    Hello All,
    We are running our reports on Portal and as per the business requirement the users have to create comments or attach documents to certain amounts in certain columns and once they create the comment a document icon shows up near that amount (for example there are 3 columns Budget, actual, balance then the user have to create comment for some amounts which needs explanation) they do that from context menu  Documents -> Create new Comment.
    Now we want those documents to be saved on Infoprovider level and not on master data for any particular object. We have activated the flag "Characteristic is document property" on related infoobjects. We have the flag to display document icon on Infoprovider active in the web template. Now when I run the report I am able to create new comments on first two columns and when the report refreshes it shows me icon near that amount but it gives me errors on third column after the report refreshes itself. Now when I go in portal KM repository where documents are stored I do see the document that I created for the third column as well so looks like the document is getting created and being stored but the issue is when it tries to display the icon on that third column.
    The error I get is this:
    The initial exception that caused the request to fail was:
    Invalid selection value:  AttributeMember
    com.sap.ip.bi.bics.dataaccess.resource.impl.bi.exceptions.BicsResourceBwRuntimeException: Invalid selection value:  AttributeMember
    at com.sap.ip.bi.bics.dataaccess.resource.impl.bi.selector.selection.ProviderRange.setLowForced(ProviderRange.java:297)
    at com.sap.ip.bi.bics.dataaccess.resource.impl.bi.selector.selection.ProviderRange.setLow(ProviderRange.java:291)
    at com.sap.ip.bi.bics.dataaccess.resource.impl.bi.selector.selection.ProviderRange.set(ProviderRange.java:469)
    at com.sap.ip.bi.bics.dataaccess.consumer.impl.selector.selection.SingleMember.set(SingleMember.java:125)
    at com.sap.ip.bi.km.common.assignment.AssignmentMember.isContained(AssignmentMember.java:192)
    Please give some inputs if anyone is facing same problem or is anyone has worked previously with this kinda of stuff.
    Thanks in advance.
    Kiran

    Hi!
    Have you solved this problem? I have the same problem after a SPS implementation (SPS 17). The message appears when we select a single value in a DP (hierarchical filter item) that filters another one, but when I select a node it doesn't.
    Before the patch implementation the apliccation worked ok.
    Any idea?
    Thanks in advance.
    Jose

  • Itunes 10.7 wont startup or run on windows 7 64 bit,, while downloading it from previous version of itunes say invalid signatures.

    whenever i used to download something from itunes it restarts in mid,, and starts again and does the some for a long time and atlast says error 8008. Then i tried to upgrade it new itunes would download for some time then gives error saying invalid signatures,, I then downloaded itunes 10.7 from apple website.. download completes and it wont run.. wont start up.. I have tried Run as administrator used new user accounts, downloaded it again and again deleted temp folder aswell, deleted itunes library from my music folder aswell, done everything i found in discussions but that wont help,

    Apologies about the delay. I've been brooding.
    Although we don't know where the specific relevant keys are on modern versions of iTunes, there's a shotgun approach we can take to dealing with them, which has a reasonable chance of success in this case. The complicating factor in your case is that you've got a 64-bit Windows. So there's an extra hoop to jump through.
    The basic approach is the procedure from the following weblog entry:
    [Solving setup errors by using the SubInACL tool to repair file and registry permissions|http://blogs.msdn.com/astebner/archive/2006/09/04/solving-setup-err ors-by-using-the-subinacl-tool-to-repair-file-and-registry-permissions.aspx]
    The complicating factor is that we have to make an additional edit to the reset.cmd file.
    When you're in Notepad, replacing the two YOURUSERNAME values with the name of your Windows 7 user account, in the first line of the batch file, replace the:
    %programfiles%
    ... with:
    %ProgramFiles(x86)%
    (On a 64-bit Windows system, subinacl is installed in a different location than on 32-bit systems. So unless we make that change, the reset.cmd isn't going to be able to find subinacl and the reset.cmd won't work.)
    While you're in Notepad editing the file, make sure each of the nine lines of the file start of a new line. (Sometimes they get smooshed up together on a single line, and then again the reset.cmd won't work.)
    I'd strongly suggest setting up a System Restore point immediately prior to running the reset.cmd. There's instructions on that in the following document:
    http://www.bleepingcomputer.com/tutorials/tutorial143.html#manual

  • 2911 ISM-SRE-300 CUE 8.6.7 install failure...Verifying ... Invalid signature in command line file !!

    ISM-SRE-300 seems to be a loop at boot with Verifying ... Invalid signature in command line file
    Any ideas?
    Log
    Install of ftp://*****:*****@10.100.64.21/cue-vm-k9.SPA.sme.8.6.7.pkg in progress
    Install status : Waiting for RBIP registration
    No localstore
    2911#
    [Resuming connection 1 to 10.102.66.254 ... ]
    Initializing memory. Please wait...
    Memory initialization OK. Continue...
    Authenticating boot loader....
    Secondary Boot Loader authenticated - booting....
    Please enter '***' to change boot configuration:
    Detect and Initialze network device
    Backup current platform configurations....
    SRE step 1 - SM registration...
    SRE step 2 - SM requests key file info...
    SRE step 3 - SM stores registration info...
    SRE configuration keeps the same. No flash update needed!
    SRE step 4 - SM downloads key-file...
    Writing keyfile to flash Size 891
    writing complete.
    Updating flash with bootloader configuration.
    Please wait .................. done.
    SRE step 5 - SM requests installer info...
    SRE step 6 - SM stores installer info...
    Updating flash with bootloader configuration.
    Please wait .................. done.
    SRE step 7 - SM now downloads installer
    done.
    SRE step 8 - SM requests tcl header file info...
    SRE step 9 - SM now downloads the tcl header file
    TCL header file downloaded completely size: 691
    SRE step 10 - SM requests tcl file info...
    SRE step 11 - SM now downloads the tcl file
    TCL file downloaded completely size: 38933
    SRE step 12 - SM now boots Installer
    Verifying ... done.
    Starting Kernel.
    Platform: ism
    INIT: version 2.86 booting
    mounting proc fs ...
    mounting sys fs ...
    mounting /dev/shm tmpfs ...
    kernel.sem = 1900 4000 32 100
    vm.overcommit_memory = 1
    vm.min_free_kbytes = 8192
                    Welcome to Cisco Service Engine
    Setting the system time from hardware clock
    ********** rc.aesop ****************
    Populating resource values from /etc/ism_rsrc_file
    Populating resource values from /etc/default_rsrc_file
    Populating resource values from /etc/products/cue/default_rsrc_file
    Populating resource values from /etc/products/cue/ism_rsrc_file
    ==> Management interface is eth0
    ==> Management interface is eth0
    IOS IP Address Registration complete.
    Kernel IP routing table
    Destination     Gateway         Genmask         Flags   MSS Window  irtt Iface
    10.102.66.0    *               255.255.255.0   U         0 0          0 eth0
    default         142.102.66.254  0.0.0.0         UG        0 0          0 eth0
    Size of buff is: 65536
    65536 bytes written
    Valid License file not found: Using default values
    INIT: Entering runlevel: 2
    ********** rc.post_install ****************
    Changing owners and file permissions.
    INIT: Switching to runlevel: 4
    INIT: Sending processes the TERM signal
    STARTED: dwnldr_startup.sh
    sre_type=  1
            Welcome to Cisco Systems Service Engine Helper Software
    Downloading ftp cue-vm-k9.SPA.sme.8.6.7.pkg
    Bytes downloaded :  727736
    Validating package signature ... done
     - Parsing package manifest files... complete.
    No installed manifests found.
     - Checking Package dependencies... complete.
    Downloading ftp cue-vm-langpack.sme.8.6.7.pkg
    Error: Download error
     Can not download cue-vm-langpack.sme.8.6.7.pkg
    error code 550 : error type 'Can not ▒
    Initializing memory. Please wait...
    Memory initialization OK. Continue...
    DDR Memory 0512 MB detected
    Genuine Intel(R) processor              1.06GHz
    BIOS ISM 2.6,  BIOS Build date: 10/16/2009
    System now booting...
    Authenticating boot loader....
    Secondary Boot Loader authenticated - booting....
    Please enter '***' to change boot configuration:
    Detect and Initialze network device
    Backup current platform configurations....
    SRE step 1 - SM registration...
    Response - no installation needed (len: 422)
    SRE Installation Not Needed
    Restoring orignial configuration...
    Updating flash with bootloader configuration.
    Please wait .................. done.
    Loading disk:/bzImage ... Loading disk:/cmdlineextra ... done.
    Verifying ... Invalid signature in command line file !!
    Corrupted command line detected
    done.
    Starting Kernel.
    Initializing memory. Please wait...
    Memory initialization OK. Continue...
    DDR Memory 0512 MB detected
    Genuine Intel(R) processor              1.06GHz
    BIOS ISM 2.6,  BIOS Build date: 10/16/2009
    System now booting...
    Authenticating boot loader....
    Secondary Boot Loader authenticated - booting....
    Please enter '***' to change boot configuration:
    Detect and Initialze network device
    Backup current platform configurations....
    SRE step 1 - SM registration...
    Response - no installation needed (len: 422)
    SRE Installation Not Needed
    Restoring orignial configuration...
    Updating flash with bootloader configuration.
    Please wait .................. done.
    Loading disk:/bzImage ... Loading disk:/cmdlineextra ... done.
    Verifying ... Invalid signature in command line file !!
    Corrupted command line detected
    done.
    Starting Kernel.
    Initializing memory. Please wait...
    Memory initialization OK. Continue...
    DDR Memory 0512 MB detected
    Genuine Intel(R) processor              1.06GHz
    BIOS ISM 2.6,  BIOS Build date: 10/16/2009
    System now booting...
    Authenticating boot loader....
    Secondary Boot Loader authenticated - booting....
    Please enter '***' to change boot configuration:
    Detect and Initialze network device
    Backup current platform configurations....
    SRE step 1 - SM registration...
    Response - no installation needed (len: 422)
    SRE Installation Not Needed
    Restoring orignial configuration...
    Updating flash with bootloader configuration.
    Please wait .................. done.
    Loading disk:/bzImage ... Loading disk:/cmdlineextra ... done.
    Verifying ... Invalid signature in command line file !!
    Corrupted command line detected
    done.
    Starting Kernel.
    Initializing memory. Please wait...
    Memory initialization OK. Continue...
    DDR Memory 0512 MB detected
    Genuine Intel(R) processor              1.06GHz
    BIOS ISM 2.6,  BIOS Build date: 10/16/2009
    System now booting...
    Authenticating boot loader....
    Secondary Boot Loader authenticated - booting....
    Please enter '***' to change boot configuration:
    Detect and Initialze network device
    Backup current platform configurations....
    SRE step 1 - SM registration...
    Response - no installation needed (len: 422)
    SRE Installation Not Needed
    Restoring orignial configuration...
    Updating flash with bootloader configuration.
    Please wait .................. done.
    Loading disk:/bzImage ... Loading disk:/cmdlineextra ... done.
    Verifying ... Invalid signature in command line file !!
    Corrupted command line detected
    done.
    Starting Kernel.
    Initializing memory. Please wait...
    Memory initialization OK. Continue...
    DDR Memory 0512 MB detected
    Genuine Intel(R) processor              1.06GHz
    BIOS ISM 2.6,  BIOS Build date: 10/16/2009
    System now booting...
    Authenticating boot loader....
    Secondary Boot Loader authenticated - booting....
    Please enter '***' to change boot configuration:
    Detect and Initialze network device
    Backup current platform configurations....
    SRE step 1 - SM registration...
    Response - no installation needed (len: 422)
    SRE Installation Not Needed
    Restoring orignial configuration...
    Updating flash with bootloader configuration.
    Please wait .................. done.
    Loading disk:/bzImage ... Loading disk:/cmdlineextra ... done.
    Verifying ... Invalid signature in command line file !!
    Corrupted command line detected
    done.
    Starting Kernel.
    Initializing memory. Please wait...
    Memory initialization OK. Continue...
    DDR Memory 0512 MB detected
    Genuine Intel(R) processor              1.06GHz
    BIOS ISM 2.6,  BIOS Build date: 10/16/2009
    System now booting...
    Authenticating boot loader....
    Secondary Boot Loader authenticated - booting....
    Please enter '***' to change boot configuration:
    Detect and Initialze network device
    Backup current platform configurations....
    SRE step 1 - SM registration...
    Response - no installation needed (len: 422)
    SRE Installation Not Needed
    Restoring orignial configuration...
    Updating flash with bootloader configuration.
    Please wait .................. done.
    Loading disk:/bzImage ... Loading disk:/cmdlineextra ... done.
    Verifying ... Invalid signature in command line file !!
    Corrupted command line detected
    done.
    Starting Kernel.
    Initializing memory. Please wait...
    Memory initialization OK. Continue...
    DDR Memory 0512 MB detected
    Genuine Intel(R) processor              1.06GHz
    BIOS ISM 2.6,  BIOS Build date: 10/16/2009
    System now booting...

    ISM-SRE-300 seems to be a loop at boot with Verifying ... Invalid signature in command line file
    Any ideas?
    Log
    Install of ftp://*****:*****@10.100.64.21/cue-vm-k9.SPA.sme.8.6.7.pkg in progress
    Install status : Waiting for RBIP registration
    No localstore
    2911#
    [Resuming connection 1 to 10.102.66.254 ... ]
    Initializing memory. Please wait...
    Memory initialization OK. Continue...
    Authenticating boot loader....
    Secondary Boot Loader authenticated - booting....
    Please enter '***' to change boot configuration:
    Detect and Initialze network device
    Backup current platform configurations....
    SRE step 1 - SM registration...
    SRE step 2 - SM requests key file info...
    SRE step 3 - SM stores registration info...
    SRE configuration keeps the same. No flash update needed!
    SRE step 4 - SM downloads key-file...
    Writing keyfile to flash Size 891
    writing complete.
    Updating flash with bootloader configuration.
    Please wait .................. done.
    SRE step 5 - SM requests installer info...
    SRE step 6 - SM stores installer info...
    Updating flash with bootloader configuration.
    Please wait .................. done.
    SRE step 7 - SM now downloads installer
    done.
    SRE step 8 - SM requests tcl header file info...
    SRE step 9 - SM now downloads the tcl header file
    TCL header file downloaded completely size: 691
    SRE step 10 - SM requests tcl file info...
    SRE step 11 - SM now downloads the tcl file
    TCL file downloaded completely size: 38933
    SRE step 12 - SM now boots Installer
    Verifying ... done.
    Starting Kernel.
    Platform: ism
    INIT: version 2.86 booting
    mounting proc fs ...
    mounting sys fs ...
    mounting /dev/shm tmpfs ...
    kernel.sem = 1900 4000 32 100
    vm.overcommit_memory = 1
    vm.min_free_kbytes = 8192
                    Welcome to Cisco Service Engine
    Setting the system time from hardware clock
    ********** rc.aesop ****************
    Populating resource values from /etc/ism_rsrc_file
    Populating resource values from /etc/default_rsrc_file
    Populating resource values from /etc/products/cue/default_rsrc_file
    Populating resource values from /etc/products/cue/ism_rsrc_file
    ==> Management interface is eth0
    ==> Management interface is eth0
    IOS IP Address Registration complete.
    Kernel IP routing table
    Destination     Gateway         Genmask         Flags   MSS Window  irtt Iface
    10.102.66.0    *               255.255.255.0   U         0 0          0 eth0
    default         142.102.66.254  0.0.0.0         UG        0 0          0 eth0
    Size of buff is: 65536
    65536 bytes written
    Valid License file not found: Using default values
    INIT: Entering runlevel: 2
    ********** rc.post_install ****************
    Changing owners and file permissions.
    INIT: Switching to runlevel: 4
    INIT: Sending processes the TERM signal
    STARTED: dwnldr_startup.sh
    sre_type=  1
            Welcome to Cisco Systems Service Engine Helper Software
    Downloading ftp cue-vm-k9.SPA.sme.8.6.7.pkg
    Bytes downloaded :  727736
    Validating package signature ... done
     - Parsing package manifest files... complete.
    No installed manifests found.
     - Checking Package dependencies... complete.
    Downloading ftp cue-vm-langpack.sme.8.6.7.pkg
    Error: Download error
     Can not download cue-vm-langpack.sme.8.6.7.pkg
    error code 550 : error type 'Can not ▒
    Initializing memory. Please wait...
    Memory initialization OK. Continue...
    DDR Memory 0512 MB detected
    Genuine Intel(R) processor              1.06GHz
    BIOS ISM 2.6,  BIOS Build date: 10/16/2009
    System now booting...
    Authenticating boot loader....
    Secondary Boot Loader authenticated - booting....
    Please enter '***' to change boot configuration:
    Detect and Initialze network device
    Backup current platform configurations....
    SRE step 1 - SM registration...
    Response - no installation needed (len: 422)
    SRE Installation Not Needed
    Restoring orignial configuration...
    Updating flash with bootloader configuration.
    Please wait .................. done.
    Loading disk:/bzImage ... Loading disk:/cmdlineextra ... done.
    Verifying ... Invalid signature in command line file !!
    Corrupted command line detected
    done.
    Starting Kernel.
    Initializing memory. Please wait...
    Memory initialization OK. Continue...
    DDR Memory 0512 MB detected
    Genuine Intel(R) processor              1.06GHz
    BIOS ISM 2.6,  BIOS Build date: 10/16/2009
    System now booting...
    Authenticating boot loader....
    Secondary Boot Loader authenticated - booting....
    Please enter '***' to change boot configuration:
    Detect and Initialze network device
    Backup current platform configurations....
    SRE step 1 - SM registration...
    Response - no installation needed (len: 422)
    SRE Installation Not Needed
    Restoring orignial configuration...
    Updating flash with bootloader configuration.
    Please wait .................. done.
    Loading disk:/bzImage ... Loading disk:/cmdlineextra ... done.
    Verifying ... Invalid signature in command line file !!
    Corrupted command line detected
    done.
    Starting Kernel.
    Initializing memory. Please wait...
    Memory initialization OK. Continue...
    DDR Memory 0512 MB detected
    Genuine Intel(R) processor              1.06GHz
    BIOS ISM 2.6,  BIOS Build date: 10/16/2009
    System now booting...
    Authenticating boot loader....
    Secondary Boot Loader authenticated - booting....
    Please enter '***' to change boot configuration:
    Detect and Initialze network device
    Backup current platform configurations....
    SRE step 1 - SM registration...
    Response - no installation needed (len: 422)
    SRE Installation Not Needed
    Restoring orignial configuration...
    Updating flash with bootloader configuration.
    Please wait .................. done.
    Loading disk:/bzImage ... Loading disk:/cmdlineextra ... done.
    Verifying ... Invalid signature in command line file !!
    Corrupted command line detected
    done.
    Starting Kernel.
    Initializing memory. Please wait...
    Memory initialization OK. Continue...
    DDR Memory 0512 MB detected
    Genuine Intel(R) processor              1.06GHz
    BIOS ISM 2.6,  BIOS Build date: 10/16/2009
    System now booting...
    Authenticating boot loader....
    Secondary Boot Loader authenticated - booting....
    Please enter '***' to change boot configuration:
    Detect and Initialze network device
    Backup current platform configurations....
    SRE step 1 - SM registration...
    Response - no installation needed (len: 422)
    SRE Installation Not Needed
    Restoring orignial configuration...
    Updating flash with bootloader configuration.
    Please wait .................. done.
    Loading disk:/bzImage ... Loading disk:/cmdlineextra ... done.
    Verifying ... Invalid signature in command line file !!
    Corrupted command line detected
    done.
    Starting Kernel.
    Initializing memory. Please wait...
    Memory initialization OK. Continue...
    DDR Memory 0512 MB detected
    Genuine Intel(R) processor              1.06GHz
    BIOS ISM 2.6,  BIOS Build date: 10/16/2009
    System now booting...
    Authenticating boot loader....
    Secondary Boot Loader authenticated - booting....
    Please enter '***' to change boot configuration:
    Detect and Initialze network device
    Backup current platform configurations....
    SRE step 1 - SM registration...
    Response - no installation needed (len: 422)
    SRE Installation Not Needed
    Restoring orignial configuration...
    Updating flash with bootloader configuration.
    Please wait .................. done.
    Loading disk:/bzImage ... Loading disk:/cmdlineextra ... done.
    Verifying ... Invalid signature in command line file !!
    Corrupted command line detected
    done.
    Starting Kernel.
    Initializing memory. Please wait...
    Memory initialization OK. Continue...
    DDR Memory 0512 MB detected
    Genuine Intel(R) processor              1.06GHz
    BIOS ISM 2.6,  BIOS Build date: 10/16/2009
    System now booting...
    Authenticating boot loader....
    Secondary Boot Loader authenticated - booting....
    Please enter '***' to change boot configuration:
    Detect and Initialze network device
    Backup current platform configurations....
    SRE step 1 - SM registration...
    Response - no installation needed (len: 422)
    SRE Installation Not Needed
    Restoring orignial configuration...
    Updating flash with bootloader configuration.
    Please wait .................. done.
    Loading disk:/bzImage ... Loading disk:/cmdlineextra ... done.
    Verifying ... Invalid signature in command line file !!
    Corrupted command line detected
    done.
    Starting Kernel.
    Initializing memory. Please wait...
    Memory initialization OK. Continue...
    DDR Memory 0512 MB detected
    Genuine Intel(R) processor              1.06GHz
    BIOS ISM 2.6,  BIOS Build date: 10/16/2009
    System now booting...

  • Photoshop CC extension with invalid signature and Photoshop default installed extensions cannot be loaded

    I have a Creative Cloud subscription for Photoshop CC. All Creative Clouds products are updated to the latest versions. When I tried to install Tony Kuyper's TKActionv3 Photoshop extension using the Adobe Extension Manager CC on my PC desktop, I received an error message the extension contained an invalid signature and wouldn't be installed. I had previously installed the extension on my laptop without any problems. At the same time, I also noticed the default installed Photoshop CC extensions (e.g., Adobe Exchange, Kuler, Mini Bridge, Behance) could not be loaded using the Windows/Extension command. I receive an error message that the command could not be completed because the extension could not be loaded. After contacting Tony Kuyper, he suggested that I try the steps mentioned in the following weblink: https://forums.adobe.com/message/6029768. The steps basically consist of uninstalling and reinstalling all the Creative Cloud apps associated with Photoshop CC. I tried the steps multiple times, but I am still having the same problems. I can find the default installed Photoshop CC extensions on my machine, so I don't know why they can't be loaded.
    I posted this question in the Extension Manager group. Should I also post it in the Adobe Photoshop group?
    Thanks for your assistance,
    Mark Curtis

    Zhihong,
    I received your e-mail with the questions below. I answered some of your questions: answers in red and underlined. In addition to posting in the forum, I also replied to your e-mail address, but the message was returned as undeliverable. What e-mail address should I use for sending you the log files.
    Thanks,
    Mark
    Hi Mark,
    Here is a workaround to make the extension display again:
    You can bypass the check for extension signature by editing the CSXS preference properties file, located at:
    • Win: regedit > HKEY_CURRENT_USER/Software/Adobe/CSXS.5
    • Mac: /Users/<username>/Library/Preferences/com.adobe.CSXS.5.plist
    Add a new entry “PlayerDebugMode” of type "string" with the value of "1". And then restart Photoshop and try again. Please let us know if this work around can work.
    And could you please help to offer following information for us to find the root cause? Thanks:
    1. Which PS version are you using? On what platform, Windows or Mac OS? Photoshop CC (64-Bit) 14.2.1 x64, Windows 7 Ultimate (64-Bit)
    2. The extension cannot be loaded since when? 5/25/2014
    3. What is the version of imslib.dll/.framework and PlugPlugOwl.dll/.framework? It locates at path like “C:\Program Files\Adobe\Adobe Photoshop CC (64 Bit)”. 7.0.0.145, 4.2.0.36
    4. Can you get the CSXS log and send it to us? Please add a “LogLevel” key with value “6” in registry (PS should be restarted for the log level change to take effect):
    • Win: regedit > HKEY_CURRENT_USER/Software/Adobe/CSXS.5
    • Mac: /Users/USERNAME/Library/Preferences/com.adobe.CSXS.5.plist
    Then restart PS and the log file will be generated at:
    • Win: C:\Users\USERNAME\AppData\Local\Temp\csxs5-PHSP.log
    • Mac: /Users/USERNAME/Library/Logs/CSXS/csxs5-PHSP.log
    Thanks!

  • HT1926 itunes wont update because of invalid signature?

    on Windows Pro, trying to update itunes and it stops towards end of download, wont install because of "invalid signature".  how do i do a "manual update"?

    cannot remove an older version of bonjour
    Download the Windows Installer CleanUp utility from the following page (use one of the links under the "DOWNLOAD LOCATIONS" thingy on the Major Geeks page):
    http://majorgeeks.com/download.php?det=4459
    To install the utility, doubleclick the msicuu2.exe file you downloaded.
    Now run the utility ("Start > All Programs > Windows Install Clean Up"). In the list of programs that appears in CleanUp, select any Bonjour entries and click "Remove", as per the following screenshot:
    Quit out of CleanUp, restart the PC and try another install. Does it go through this time?

  • I am trying to update iTunes but it says I have an invalid signature

    I want to update my iTunes but half way through it errors out and says I have a invalid signature. How do I fix this?

    Download the Windows Installer CleanUp utility from the following page (use one of the links under the "DOWNLOAD LOCATION" thingy on the Major Geeks page):
    http://majorgeeks.com/download.php?det=4459
    To install the utility, doubleclick the msicuu2.exe file you downloaded.
    Now run the utility ("Start > All Programs > Windows Install Clean Up").
    In the list of programs that appears in CleanUp, select any QuickTime entries and click "Remove", as per the following screenshot:
    Quit out of CleanUp, restart the PC. Now try another QuickTime install. Does it go through properly this time?

  • Couldn't export schema because of invalid argument value and other errors.

    Hello, All.
    I am using an oracle 10g database, which is running on a Redhat9 linux server, to manage our lab information.
    I plan to export a schema (only tables, not the real data) into a file.
    First, I used the Enterprise Manager to export. I went through and complete the export job. After submitting, the system says:
    There is a problem writing to the export files: ORA-39094: Parallel execution not supported in this database edition..
    So I just copy the PL/SQL code which would be send to the source database and comment the set_parallel procedure.
    The code is listed here:
    declare
    h1 NUMBER;
    begin
    begin
    h1 := dbms_datapump.open (operation => 'EXPORT', job_mode => 'SCHEMA', job_name => 'EXPORT000468', version => 'COMPATIBLE');
    end;
    --begin
    --dbms_datapump.set_parallel(handle => h1, degree => 1);
    --end;
    begin
    dbms_datapump.add_file(handle => h1, filename => 'EXPDAT.LOG', directory => 'DATA_FILE_DIR', filetype => 3);
    end;
    begin
    dbms_datapump.set_parameter(handle => h1, name => 'KEEP_MASTER', value => 0);
    end;
    begin
    dbms_datapump.metadata_filter(handle => h1, name => 'SCHEMA_EXPR', value => 'IN(''FLOWLIMS'')');
    end;
    begin
    dbms_datapump.set_parameter(handle => h1, name => 'ESTIMATE', value => 'BLOCKS');
    end;
    begin
    dbms_datapump.add_file(handle => h1, filename => 'EXPDAT%U.DMP', directory => 'DATA_FILE_DIR', filetype => 1);
    end;
    begin
    dbms_datapump.set_parameter(handle => h1, name => 'INCLUDE_METADATA', value => 1);
    end;
    begin
    dbms_datapump.data_filter(handle => h1, name => 'INCLUDE_ROWS', value => 0);
    end;
    begin
    dbms_datapump.set_parameter(handle => h1, name => 'DATA_ACCESS_METHOD', value => 'AUTOMATIC');
    end;
    begin
    dbms_datapump.start_job(handle => h1, skip_current => 0, abort_step => 0);
    end;
    begin
    dbms_datapump.detach(handle => h1);
    end;
    end;
    I paste the code in an SQL*Plus session and execute it. The system says:
    declare
    ERROR at line 1:
    ORA-39001: invalid argument value
    ORA-06512: at "SYS.DBMS_SYS_ERROR", line 79
    ORA-06512: at "SYS.DBMS_DATAPUMP", line 2486
    ORA-06512: at "SYS.DBMS_DATAPUMP", line 2718
    ORA-06512: at line 23
    I am not very sure which part is wrong for I have exported another schema successfully using this method just now.
    Any advice is highly appreciated!
    Qian

    Well, I will list more details about how to complete the job here.
    1) Go to the Enterprise Manager, log in as FLOWLIMS (I just want to export the schema FLOWLIMS)
    2)Go to the "Maitenance"
    3)Under the "Utilities", select the "Export to files"
    4)in the next page: Export: Export Type, select "Schemas"
    5) in the next page, select the schema "FLOWLIMS"
    6) in the next page, select these parameters:
    Maximam Number of Threads in Export job: 1
    Estimate Disk Space: Blockes
    7) when I click the "Estimate Disk Space Now", it says :
    Export Estimate Failed
    There is a problem writing to the export files: ORA-39094: Parallel execution not supported in this database edition..
    8) So I give up extimating
    9) Other options:
    I select "Generate Log file"
    The Directory Object is the default value "DATA_FILE_DIR"
    The Log File is the default value "EXPDAT.LOG"
    10) the advanced options are like these:
    Content: What to export from the Source Database: "Metadata only"
    Export content: "include all objects"
    Flashback: select "As the specified System Change Number (SCN)
    SCN: just accept the default number 28901412
    Query: select nothing. I need all fields of all tables.
    11) in the next page, I accept the default directory object "DATA_FILE_DIR" and the default File Name "EXPDAT%U.DMP". The Maximam File Size is blank, I just leave it blank.
    12) in the next page "Schedule" , I select to start the job immediatly.
    13) in the next page "Review", it shows:
    Export Type          Schemas
    Statistics type          Estimate optimizer statistics when data is imported
    Parallelism          1
    Files to Export          DATA_FILE_DIR EXPDAT%U.DMP
    Log File          DATA_FILE_DIR EXPDAT.LOG
    and the PL/SQL is like that:
    declare
    h1 NUMBER;
    begin
    begin
    h1 := dbms_datapump.open (operation => 'EXPORT', job_mode => 'SCHEMA', job_name => 'EXPORT000487', version => 'COMPATIBLE');
    end;
    begin
    dbms_datapump.set_parallel(handle => h1, degree => 1);
    end;
    begin
    dbms_datapump.add_file(handle => h1, filename => 'EXPDAT.LOG', directory => 'DATA_FILE_DIR', filetype => 3);
    end;
    begin
    dbms_datapump.set_parameter(handle => h1, name => 'KEEP_MASTER', value => 0);
    end;
    begin
    dbms_datapump.metadata_filter(handle => h1, name => 'SCHEMA_EXPR', value => 'IN(''FLOWLIMS'')');
    end;
    begin
    dbms_datapump.set_parameter(handle => h1, name => 'ESTIMATE', value => 'BLOCKS');
    end;
    begin
    dbms_datapump.add_file(handle => h1, filename => 'EXPDAT%U.DMP', directory => 'DATA_FILE_DIR', filetype => 1);
    end;
    begin
    dbms_datapump.set_parameter(handle => h1, name => 'INCLUDE_METADATA', value => 1);
    end;
    begin
    dbms_datapump.data_filter(handle => h1, name => 'INCLUDE_ROWS', value => 0);
    end;
    begin
    dbms_datapump.set_parameter(handle => h1, name => 'DATA_ACCESS_METHOD', value => 'AUTOMATIC');
    end;
    begin
    dbms_datapump.start_job(handle => h1, skip_current => 0, abort_step => 0);
    end;
    begin
    dbms_datapump.detach(handle => h1);
    end;
    end;
    14) after I click the "submit" , it shows:
    Export Submit Failed
    There is a problem writing to the export files: ORA-39094: Parallel execution not supported in this database edition..
    15) I copy the PL/SQL, comment this part:
    --begin
    --dbms_datapump.set_parallel(handle => h1, degree => 1);
    --end;
    I run it in an iSQL*Plus Release 10.1.0.2,
    It shows:
    declare
    ERROR at line 1:
    ORA-39001: invalid argument value
    ORA-06512: at "SYS.DBMS_SYS_ERROR", line 79
    ORA-06512: at "SYS.DBMS_DATAPUMP", line 2486
    ORA-06512: at "SYS.DBMS_DATAPUMP", line 2718
    ORA-06512: at line 23
    Could anybody help? Thanks a lot!
    Qian

  • VO Substitution : JBO-25006 : Invalid parameter value passed for source

    Hello All,
    I want to add 2 new fields (attribute columns) to an existing VO for which I am trying to use VO substitution. I have followed these steps.
    1.     Downloaded all the class files from server to local machine
    2.     Opened an OA project and extended the VO by changing sql query to add 2 attribute columns
    3.     Added 2 transient VO attributes to map them to the added fields in sql query
    4.     Create a BC4J substitution and imported jpx file using jpximporter
    While opening the page which consisted the original VO that I extended (creditRequestsVO), I am getting below error. Appreciate if anyone can throw any light on this.
    Exception Details.
    oracle.apps.fnd.framework.OAException: oracle.jbo.InvalidParamException: JBO-25006: Invalid parameter value creditRequestsVO for source passed to method ViewLinkImpl.setSource. Explanation: view def mismatch
    at oracle.apps.fnd.framework.webui.OAPageErrorHandler.prepareException(OAPageErrorHandler.java:1247)
    at oracle.apps.fnd.framework.webui.OAPageErrorHandler.processErrors(OAPageErrorHandler.java:1435)
    at oracle.apps.fnd.framework.webui.OAPageBean.processRequest(OAPageBean.java:2542)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1892)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:536)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:424)
    at OA.jspService(_OA.java:212)
    at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
    at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:379)
    at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
    at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
    at oracle.apps.jtf.base.session.ReleaseResFilter.doFilter(ReleaseResFilter.java:26)
    at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
    at oracle.apps.fnd.security.AppsServletFilter.doFilter(AppsServletFilter.java:318)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:621)
    at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
    at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
    at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:313)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
    at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
    at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
    at java.lang.Thread.run(Thread.java:619)
    ## Detail 0 ##
    oracle.apps.fnd.framework.OAException: oracle.jbo.InvalidParamException: JBO-25006: Invalid parameter value creditRequestsVO for source passed to method ViewLinkImpl.setSource. Explanation: view def mismatch
    at oracle.apps.fnd.framework.OAException.wrapperException(OAException.java:896)
    at oracle.apps.fnd.framework.webui.OAPageErrorHandler.prepareException(OAPageErrorHandler.java:1169)
    at oracle.apps.fnd.framework.webui.OAPageErrorHandler.processErrors(OAPageErrorHandler.java:1435)
    at oracle.apps.fnd.framework.webui.OAPageBean.processRequest(OAPageBean.java:2542)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1892)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:536)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:424)
    at OA.jspService(_OA.java:212)
    at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
    at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:379)
    at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
    at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
    at oracle.apps.jtf.base.session.ReleaseResFilter.doFilter(ReleaseResFilter.java:26)
    at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
    at oracle.apps.fnd.security.AppsServletFilter.doFilter(AppsServletFilter.java:318)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:621)
    at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
    at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
    at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:313)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
    at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
    at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
    at java.lang.Thread.run(Thread.java:619)
    oracle.apps.fnd.framework.OAException: oracle.jbo.InvalidParamException: JBO-25006: Invalid parameter value creditRequestsVO for source passed to method ViewLinkImpl.setSource. Explanation: view def mismatch
    at oracle.apps.fnd.framework.OAException.wrapperException(OAException.java:896)
    at oracle.apps.fnd.framework.webui.OAPageErrorHandler.prepareException(OAPageErrorHandler.java:1169)
    at oracle.apps.fnd.framework.webui.OAPageErrorHandler.processErrors(OAPageErrorHandler.java:1435)
    at oracle.apps.fnd.framework.webui.OAPageBean.processRequest(OAPageBean.java:2542)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1892)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:536)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:424)
    at OA.jspService(_OA.java:212)
    at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
    at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:379)
    at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
    at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
    at oracle.apps.jtf.base.session.ReleaseResFilter.doFilter(ReleaseResFilter.java:26)
    at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
    at oracle.apps.fnd.security.AppsServletFilter.doFilter(AppsServletFilter.java:318)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:621)
    at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
    at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
    at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:313)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
    at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
    at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
    at java.lang.Thread.run(Thread.java:619)
    Edited by: Bhavesh J Shah on Feb 22, 2010 1:58 AM

    Hi Rama,
    Parameter being passted to LeadHeaderDetailsVO is not right. Check the parameter values that are being passed,wether there are right or not
    Thanks
    Sandeep

  • Flex 4.7 AIR 16.0 SDK invalid signature

    I Am trying to publish a beta version of my app to Apple to leverage TestFlight testers but I keep getting an Invalid Signature error. 
    Invalid Signature - Make sure you have signed your application with a distribution certificate, not an ad hoc certificate or a development certificate. Verify that the code signing settings in Xcode are correct at the target level (which override any values at the project level). If you are certain your code signing settings are correct, choose "Clean All" in Xcode, delete the "build" directory in the Finder, and rebuild your release target.
    I Have made sure to create a distribution certificate and provisioning profile.  I have also ensured the Default-568h@2x file is included. Not sure what else to do.
    i Am using Flex BuiOder 4.7 with air sdk 16.0 and am using XCODE 5.1.1 to build Certs and profiles.
    any suggestions?

    I used ditto on Mac. I would make a backup copy of the Flex SDK first.
    Then use ditto to update the SDK with AIR SDK.
    -ted

  • Invalid signature error on submission to iTunes connect

    I'm at the hair-tearing out end of stuck. Any help would be greatly appreciated.
    I've developed an app using Build.Phonegap and MVC4 for IOS. Now I'm stuck on the final hurdle: submitting the app to iTunes connect through APP Loader.
    I successfully uploaded the application.And then, immediately after I get an email that reads as follows: -
    Invalid Signature - Make sure you have signed your application with a distribution certificate, not an ad hoc certificate or a development certificate. Verify that the code signing settings in Xcode are correct at the target level (which override any values at the project level). Additionally, make sure the bundle you are uploading was built using a Release target in Xcode, not a Simulator target. If you are certain your code signing settings are correct, choose "Clean All" in Xcode, delete the "build" directory in the Finder, and rebuild your release target.
    Once these issues have been corrected, go to the Version Details page and click "Ready to Upload Binary." Continue through the submission process until the app status is "Waiting for Upload." You can then deliver the corrected binary.
    I've checked, re-checked and double-checked again the certificate.p12 and the provisioning profile. They all look good to me, set to distribution not 'ad hoc'. The deployment type is set to 'Apple Ap store'.

    please help me out

  • 1.6.0_10 and 11, Memory leak returning variables from Java to JavaScript

    Environment: Windows XP SP2, IE7, JScript 5.7, JRE 1.6.0_11-b03 and 1.6.0_10
    Memory allocated in Java and returned as a JavaScript variable value is not garbage collected in Java when the JavaScript variable is re-used.
    In the following simplified example, a populated HashMap is returned from the applet test1 method to the JavaScript variable hash1.
    The JavaScript variable hash1 is re-used on the next iteration so I would expect it should be marked for garbage collection.
    In 1.6.0_7 and previous releases, the memory associated with this Java HashMap is freed implicitly.
    In 1.6.0_10 and 1.6.0_11 the HashMap memory is never freed.
    Is this is what we should expect, a feature of the significant LiveConnect changes that were part of 1.6.0_10?
    Do we need to rewrite our code to call new Java methods from JavaScript explicitly freeing the memory, in this example calling the freeMem method?
    Has anybody else experienced this problem since 1.6.0_10?
    Thanks
    Rob
    Example code ...
    TestRLApplet.java
    import java.applet.Applet;
    import java.util.HashMap;
    public class TestRLApplet extends Applet
    private HashMap hash1;
    public TestRLApplet()
    public void init()
    public HashMap test1()
    hash1 = new HashMap();
    for (int i = 0; i <10; i++) {
    hash1.put(Integer.toString(i),Integer.toString(i));
    return (hash1);
    public void freeMem() {
    hash1.clear();
    hash1 = null;
    TestClient.htm
    <HEAD>
    <TITLE></TITLE>
    <SCRIPT LANGUAGE="javascript">
    function window_onload()
    var hash1;
    testAppplet = document.TestRLApplet;
    for (cnt=0; cnt < 1000; cnt++)
    hash1= testAppplet.test1();
    </SCRIPT>
    </HEAD>
    <object
    classid = "clsid:8AD9C840-044E-11D1-B3E9-00805F499D93"
    WIDTH = 1 HEIGHT = 1 NAME = "TestRLApplet" >
    <PARAM NAME = CODE VALUE = "TestRLApplet.class" >
    <PARAM NAME = ARCHIVE VALUE = "../applets/TestRLApplet.jar" >
    <PARAM NAME = NAME VALUE = "TestRLApplet" >
    <PARAM NAME = MAYSCRIPT VALUE = true >
    <param name = "type" value = "application/x-java-applet;version=1.6">
    <param name = "scriptable" value = "false">
    </object>
    <BODY LANGUAGE=javascript onload="return window_onload()" leftMargin=40 id=body >
    </BODY>
    </HTML>
    Java Console
    Java Plug-in 1.6.0_10
    Using JRE version 1.6.0_10 Java HotSpot(TM) Client VM
    c: clear console window
    f: finalize objects on finalization queue
    g: garbage collect
    h: display this help message
    l: dump classloader list
    m: print memory usage
    o: trigger logging
    q: hide console
    r: reload policy configuration
    s: dump system and deployment properties
    t: dump thread list
    v: dump thread stack
    x: clear classloader cache
    0-5: set trace level to <n>
    Memory: 5,056K Free: 2,551K (50%) ... completed.
    Memory: 7,996K Free: 3,499K (43%) ... completed.
    Memory: 7,996K Free: 1,038K (12%) ... completed.
    Memory: 13,180K Free: 3,745K (28%) ... completed.
    Memory: 22,844K Free: 5,614K (24%) ... completed.
    Memory: 37,984K Free: 15,009K (39%) ... completed.
    Memory: 37,984K Free: 13,069K (34%) ... completed.
    Memory: 37,984K Free: 6,125K (16%) ... completed.
    Memory: 65,088K Free: 25,107K (38%) ... completed.
    Memory: 65,088K Free: 21,201K (32%) ... completed.
    Memory: 65,088K Free: 13,381K (20%) ... completed.
    Memory: 65,088K Free: 7,967K (12%) ... completed.
    Memory: 65,088K Free: 5,013K (7%) ... completed.
    Memory: 65,088K Free: 414K (0%) ... completed.

    What are you missing?
    I inherited this app and signing the third party jars is how it was setup, I was wondering the same thing too, why was it necessary to sign the third party jars?
    The applet runs in either JRE 1.6.0_13 or JRE 1.6.0_27 depending on the other Java apps the user uses. JRE 1.6.0_13 does not have the mixed code security (so it is like is disable), but JRE 1.6.0_27 does have the mixed code security and the applet will not launch with mixed code security enable, so we have to disable it. With all the hacking going on in the last two years, is important to improve security; so this is a must.
    Yes, I always clear up the cache.
    Any idea on how to resolve this problem?

  • LiveCycle form error in Acrobat 8 "Invalid enumerated value: postSubmit"

    I created a form in LiveCycle ES that has a submit button by email. When this form is opened in Acrobat 9, no error messages pop up. When it is opened in Acrobat 8 the error message pops up "Invalid enumerated value: postSubmit".  I have seen other discussions regarding this error, but no answers.  Is there a way to fix this?

    The problem is with LiveCycle Designer ES2 version 9.x. In this version under the File-> Form Properties if you select SetFocus and turn it on it puts the following code into the XML:
    </
    script> 
    <?templateDesigner expand 1?></variables><
    proto/><
    desc><
    text name="version">9.0.0.0.20091029.1.612548.606130</text></
    desc> 
    <?templateDesigner expand 1?>
    <
    event activity="postSubmit" ref="$form" name="event__postSubmit"><
    script contentType="application/x-javascript">//+ GENERATED - DO NOT EDIT (ID:881AD7B1-842A-4CF3-BE05-E05C44ED287E CRC:3815899415)SetFocusOnFirstFailedField.DoSetFocusOnFirstFailedField(this);
    </
    script>
    If you notice in the above code the postSubmit event. This postSubmit event is not supported in versions of Acrobat/Reader prior to version 9. Even though you have set the file to support version 7 this remains in the code. I resolved this by turning off setFocus in the Form Validation

Maybe you are looking for