How do I correct this error E_AUTH_BAD_DEVICE_KEY_OR_PKCS12?

I am trying to download some books from the public library and am receiving this error message E_AUTH_BAD_DEVICE_KEY_OR_PKCS12.  Does anyone know how to correct?  Ever since I downloaded the new version of Adobe Digital Editions I have had nothing but problems.
Thank you!!

Some ebook sellers use the Adobe DRM mechanism, but rather than relying on the Adobe ID for authorization have their own Vendor ID (their own user/password).
You could be able to read your old books but not the new one if all the old books used the Adobe ID, but the new one used a separate Vendor ID.
Check with the ebook seller if you should be using a separate  Vendor ID.
ADE1.7.2 does not support different vendor IDs.  V2.0 does, but I am not sure exactly how to get it to do so.
The user guide says ' The best way to do this is to supply an Adobe ID or Vendor ID, associating the book with your ID.',
but doesn't say how to do this.

Similar Messages

  • I upgraded iTunes to 11.  I now receive an error message which reads - 'The iTunes Library file cannot be saved. An unknown error occurred (-50).  How do I correct this error?

    I upgraded iTunes to 11.  I now receive an error message which reads - 'The iTunes Library file cannot be saved. An unknown error occurred (-50).  How do I correct this error?
    Thanks
    TDB

    I know this doesn't help you Bud, but I've had this issue for at least the last couple of versions.  If I can ask, what is you enviornment like?  Local PC only, libray saved on another PC/Server? 
    In my case my library is on Windows 2003 server with the share mapped to drive M:  This has worked for many years through both XP and Windows 7 until and update a while ago. 
    Thanks,
    Rob

  • ITunes Error Message 'The iTunes Library file cannot be saved. An unknown error occurred (-50).  How do I correct this error?

    iTunes Error Message 'The iTunes Library file cannot be saved. An unknown error occurred (-50).  How do I correct this error?

    I know this doesn't help you Bud, but I've had this issue for at least the last couple of versions.  If I can ask, what is you enviornment like?  Local PC only, libray saved on another PC/Server? 
    In my case my library is on Windows 2003 server with the share mapped to drive M:  This has worked for many years through both XP and Windows 7 until and update a while ago. 
    Thanks,
    Rob

  • When attempting to sync my ipod I get an error OxE8004002 how can I correct this error

    When attempting to sync my ipod to my pc, I get an error OxE8004002; how can I correct this error?
    It is just since I uploaded the 6.1.5.

    iPhone, iPad, iPod touch: Unknown error containing '0xE' when connecting

  • How do I correct this error, "The catalog could not be opened due to an unexpected error."?

    How do I correct this error, "The catalog could not be opened due to an unexpected error."?

    Surely you could provide some more information. Your system, what version of LR, is this your first attempt at using the program, or what has been prior experience?  Things are a bit foggy.

  • When trying to udate iTunes on my PC, I recieve the error message "The older version of iTunes cannot be removed"  How do I correct this error and not lose all the music I have in iTunes?

    When trying to update my version of iTunes on my PC with Windows 7,  I receive the error message "The older version of iTunes cannot be romoved".  How do I correct this problem without losing all the music that I have in iTunes on my PC?

    (1) Download the Windows Installer CleanUp utility installer file (msicuu2.exe) from the following Major Geeks page (use one of the links under the thingy on the Major Geeks page):
    http://majorgeeks.com/download.php?det=4459
    (2) Doubleclick the msicuu2.exe file and follow the prompts to install the Windows Installer CleanUp utility. (If you're on a Windows Vista or Windows 7 system and you get a Code 800A0046 error message when doubleclicking the msicuu2.exe file, try instead right-clicking on the msicuu2.exe file and selecting "Run as administrator".)
    (3) In your Start menu click All Programs and then click Windows Install Clean Up. The Windows Installer CleanUp utility window appears, listing software that is currently installed on your computer.
    (4) In the list of programs that appears in CleanUp, select any iTunes entries and click "Remove", as per the following screenshot:
    (5) Quit out of CleanUp, restart the PC and try another iTunes install. Does it go through properly this time?

  • When ever I reboot my device, I get an error message that says, "runtime error info.plist not found". What is this, how does it effect my ipod and how do I correct this error?

    I have an ipod touch 64gb. Lately, I discovered an error message on the lockscreen that says "Runtime Error Info.plist not found". What is this, will it effect my ipod, how does it effect my ipod and how do I correct the error? (I see the error message when I power up my ipod and when I reboot).

    Follow  this article:
    How to restart the Apple Mobile Device Service (AMDS) on Windows

  • How can I correct this error: no matching code signing identity found

    I signed up as an apple developer so I could download the tools to learn to build apps. I just installed Xcode 5.1.1, when i opened the program and created my first test project I got an error message: "no matching code signing identity found". how can i get rid of (correct) this error? I am just learning and I am not ready to join the $99 developer program yet.

    Try setting Signing to None in the Target General pane.

  • How do I correct this error pairing record missing for iPad in iTunes?

    How do I correct the error pairing record missing in iTunes for my iPad?

    Quit iTunes, restart your computer, restart the iPad and then try again. Try another USB port as well.

  • Current update failed to install properly. Downloaded current version and now I have the error message regarding MSVCR80.dll Itunes worked well to before the update. How can I correct this error?

    An update was downloaded and failed to install properly. When I tried to use the old Itunes, I get the message "The program can't start because MSVCR80.dll is missing from your computer". I then received the message "iTunes was not installed correctly. Please reinstall iTunes"I tried reinstalling with the same error message. I then uninstalled the old version, downloaded the new version and still received the same message. How do I solve this problem?

    Followed mspanner's instructions and was able to correct the problem. Thanks for the help.

  • How can I correct this error:  Error(24,7): PLS-00103:

    I have the following Trigger
    create or replace
    TRIGGER "CODE_BARRAS"
    before insert or update of CODIGO_BARRAS on PAGOS FOR EACH ROW
    begin
    IF INSERTING THEN
    IF LENGTH(:NEW.CODIGO_BARRAS) = 66 THEN
    :NEW.EAN := SUBSTR(:NEW.CODIGO_BARRAS, 4,13);
    :NEW.CODIGO_CUENTA := SUBSTR(:NEW.CODIGO_BARRAS, 21,22);
    :NEW.NRO_DOCUMENTO := 0;
    :NEW.VALOR_PAGO := SUBSTR(:NEW.CODIGO_BARRAS, 47,10);
    :NEW.FECHA_PAGO := TO_CHAR(SYSDATE,'YYYYMMDD');
    :NEW.NUM_LOTE := NUM_LOTE();
    ELSIF LENGTH(:NEW.CODIGO_BARRAS) = 62 THEN
    :NEW.EAN := SUBSTR(:NEW.CODIGO_BARRAS, 4,13);
    :NEW.CODIGO_CUENTA := SUBSTR(:NEW.CODIGO_BARRAS, 21,9);
    :NEW.NRO_DOCUMENTO := SUBSTR(:NEW.CODIGO_BARRAS, 30,9);
    :NEW.VALOR_PAGO := SUBSTR(:NEW.CODIGO_BARRAS, 43,10);
    :NEW.FECHA_PAGO := TO_CHAR(SYSDATE,'YYYYMMDD');
    :NEW.NUM_LOTE := NUM_LOTE();
    END IF;
    END IF;
    END IF;
    EXCEPTION
    when no_data_found then
    DBMS_OUTPUT.PUT_LINE(' NO HAY INFORMACION, CODIGO ERRADO');
    end;
    Which generates the following error me
    Error(24,7): PLS-00103: Se ha encontrado el símbolo "IF" cuando se esperaba uno de los siguientes: ; <an identifier> <a double-quoted delimited-identifier>
    how do I correct the tigger?_
    I am grateful for your help..._

    Hi Rey-user6318244!
    You may delete the last END IF; to correct your trigger
    create or replace
    TRIGGER "CODE_BARRAS"
    before insert or update of CODIGO_BARRAS on PAGOS FOR EACH ROW
    begin
    IF INSERTING THEN
    IF LENGTH(:NEW.CODIGO_BARRAS) = 66 THEN
    :NEW.EAN := SUBSTR(:NEW.CODIGO_BARRAS, 4,13);
    :NEW.CODIGO_CUENTA := SUBSTR(:NEW.CODIGO_BARRAS, 21,22);
    :NEW.NRO_DOCUMENTO := 0;
    :NEW.VALOR_PAGO := SUBSTR(:NEW.CODIGO_BARRAS, 47,10);
    :NEW.FECHA_PAGO := TO_CHAR(SYSDATE,'YYYYMMDD');
    :NEW.NUM_LOTE := NUM_LOTE();
    ELSIF LENGTH(:NEW.CODIGO_BARRAS) = 62 THEN
    :NEW.EAN := SUBSTR(:NEW.CODIGO_BARRAS, 4,13);
    :NEW.CODIGO_CUENTA := SUBSTR(:NEW.CODIGO_BARRAS, 21,9);
    :NEW.NRO_DOCUMENTO := SUBSTR(:NEW.CODIGO_BARRAS, 30,9);
    :NEW.VALOR_PAGO := SUBSTR(:NEW.CODIGO_BARRAS, 43,10);
    :NEW.FECHA_PAGO := TO_CHAR(SYSDATE,'YYYYMMDD');
    :NEW.NUM_LOTE := NUM_LOTE();
    END IF;
    END IF;
    EXCEPTION
    when no_data_found then
    DBMS_OUTPUT.PUT_LINE(' NO HAY INFORMACION, CODIGO ERRADO');
    end;yours sincerely
    Florian W.
    P.S. Please enclose your code into to get formated output. Thanks a lot!
    Edited by: Florian W. on 23.02.2009 16:02                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Since your updates today 09/02/2011 I cannot open a new TAB manually; how do I correct this error?

    Your updates activated automatically today.
    Since that time, newlinks activated do open up in a new TAB
    But.......
    I can no longer open up the next TAB manually so that I can open an URL myself.
    What bug has caused this and how long will it mtake to correct it please?
    I can no longer browse on Firefox.

    Clear Cookies & Cache
    * https://support.mozilla.com/en-US/kb/Template:clearCookiesCache
    Clear the Network Cache
    * https://support.mozilla.com/en-US/kb/How%20to%20clear%20the%20cache#w_clear-the-cache
    Troubleshooting extensions and themes
    * https://support.mozilla.com/en-US/kb/Troubleshooting%20extensions%20and%20themes
    Check and tell if its working.

  • How do I correct this error when dropping and adding a policy

    I am new to database administration and have run across this issue (thank you for your help!):
    Oracle Database 11g Release 2, Patch Set One (11.2.0.2)
    ERROR:
    RDBA ALERT
    + Errors in file /u01/app/oracle/diag/rdbms/prdrmed/prdrmed2/trace/prdrmed2_j000_4171.trc:
    A ORA-12012: error on auto execute of job "RMDBA"."FGA SET AUDIT"
    A ORA-04022: nowait requested, but had to wait to lock dictionary object
    PROCEDURE THAT CAUSED THE ERROR:
    procedure set_audit (p_owner_name in varchar2, p_table_name in varchar2)
    is
      v_plcy_index           pls_integer := 0;
      v_column_list          varchar2(2000);
        procedure clear_audit (p_owner_name in varchar2, p_table_name in varchar2)
        is
        begin
            for a in (SELECT object_schema, object_name, policy_name
                        FROM SYS.DBA_AUDIT_POLICIES
                       where policy_name like '%PHI_'
                         AND object_schema = nvl(p_owner_name, object_schema)
                         and object_name   = nvl(p_table_name, object_name)) loop
              dbms_fga.DROP_policy (object_schema   => a.object_schema,
                                       object_name     => a.object_name,
                                       policy_name     => a.policy_name);
              COMMIT;
            end loop;
        end clear_audit;
    begin
      delete from RMDBA.RM_PHI_COLUMNS
      where (owner, table_name, column_name) not in (select owner, table_name, column_name from dba_tab_columns);
      commit;
      for a in (SELECT * FROM (
                select OWNER, TABLE_NAME, AUDIT_CONDITION, COLUMN_NAME,
                       row_number() over
                           (partition by owner, table_name order by owner, table_name) new_table,
                       row_number() over
                           (partition by owner, table_name, audit_condition order by owner, table_name, audit_condition) new_policy,
                       lead(owner||table_name||audit_condition) over
                           (partition by owner, table_name, audit_condition order by owner, table_name, audit_condition) create_policy
                  from RM_phi_COLUMNS
                 where owner = nvl(p_owner_name, owner)
                   and table_name = nvl(p_table_name, table_name))
                 order by OWNER, TABLE_NAME, NEW_TABLE, AUDIT_CONDITION, NEW_POLICY) loop
        if a.new_table = 1 then
            clear_audit(a.owner, a.table_name);
            v_plcy_index := 1;
        else
           if a.new_policy = 1 then
              v_plcy_index := v_plcy_index + 1;
           end if;
        end if;
        v_column_list := v_column_list || a.column_name||', ';
        if a.create_policy is null then
           v_column_list := substr(v_column_list,1,length(v_column_list)-2);
           DBMS_FGA.ADD_POLICY (OBJECT_SCHEMA      => a.owner,
                                  OBJECT_NAME        => a.table_name,
                                  POLICY_NAME        => substr(a.table_name,1,25)||'_PHI'||to_char(v_plcy_index),
                                  AUDIT_CONDITION    => a.audit_condition,
                                  AUDIT_COLUMN       => v_column_list,
                                  AUDIT_COLUMN_OPTS  => DBMS_FGA.ANY_COLUMNS,
                                  STATEMENT_TYPES    =>'SELECT',
                                  ENABLE             => TRUE
           COMMIT;
           v_column_list := NULL;
        end if;
      end loop;
    END set_audit;Edited by: MRiddle on May 15, 2012 8:46 AM
    Edited by: MRiddle on May 15, 2012 8:59 AM
    Edited by: MRiddle on May 15, 2012 10:57 AM

    Welcome to the forums: Two thoughts.
    1. Read the FAQ and learn how to use tags so we can read what you post.
    2. In what version? Any time you post anything in these forums if you do not post hardware, operating system, database version, and other critical factors related to your question most likely instead of getting a useful answer you will get a question asking you to provide the information you omitted.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • When I open iTunes I receive a message that says error 4002. How do I correct this error?

    When I open iTunes I receive a message stating: "we could not complete your iTunes Store request. An unknown error occurred (4002). There was an error in the iTunes Store. Please try again".  I have uninstalled an re-downloaded iTunes and all its' components as recommended by an Apple support tech. This did not work, still getting error message. What to do?

    1. Update iTunes to the latest version. Plug in your iPod. If iTunes still can't recognize it, then in iTunes in the top left corner click help> run diagnostics. On the box that comes up, check the last two things. Click next and it should identify your iPod.
    2. Click on your windows start menu. Type in "services". Click on it and when it pops up, on the bottom of it click on "standard". Now Scroll down to find "Apple Mobile Device" Right click it when you see it and click on "Start". When it has started, close iTunes and replug in your iPod and it should show up.
    3. Check the USB cable
    4. Verify that Apple Mobile Device Support is installed
    5. Restart the Apple Mobile Device Service and verify that the Apple Mobile Device USB Driver is installed.
    6. If you just want to add some photos, songs and movies from computer to your devices, you can use an iTunes alternative to do the job.
    7. Check for third-party software conflicts.

  • My mail won't load via iCloud on my desktop.  It comes up with the message "Missing resources".  How do I correct this?

    My mail won't load via iCloudonmy desktop.  It comes up with the message "Missing resources".  My network is working properly and I've checked Apple's reporting system to see if any systems are down (they are not). I am asked to submit the report to Apple (which I have)...but how do I correct this error sothat I can access my mail via iCloud on my desktop iMac?

    Here is the error message information:  DOES THIS HELP ANYONE FIGURE OUT WHAT IS HAPPENING?  All other iCloud Services work.
    IS FATAL
    true
    APPLICATION NAME
    mail
    TITLE
    Mail could not be loaded
    MESSAGE
    There was a problem loading the application due to a possible network error or missing resources. Please try again.
    LOG
    Tue, 17 Mar 2015 15:35:30 GMT:  DEBUG: MAIL in main()
    Tue, 17 Mar 2015 15:35:30 GMT:  DEBUG: Creating local CK.User object
    Tue, 17 Mar 2015 15:35:30 GMT:  DEBUG: Creating local CK.AccountPreferences object
    Tue, 17 Mar 2015 15:35:30 GMT:  DEBUG: -->  Request 1:   POST to https://p04-mailws.icloud.com:443/wm/preference?clientBuildNumber=15B.9bb3ce9&cl ientId=548F3122-7920-4BB0-8988-1F5BFD99D289&dsid=1018646875,  headers: Content-Type=text/plain,  body: (omitted)
    Tue, 17 Mar 2015 15:35:30 GMT:  DEBUG: ----------------> Request out: /wm/preference-list-->1426606530328/1
      wmsid: null
      params: {"locale":"en-us","timeZone":"US/Eastern"}
    Tue, 17 Mar 2015 15:35:30 GMT:  DEBUG: SC.Object:sc1473:dispatch('load content')
    Tue, 17 Mar 2015 15:35:30 GMT:  DEBUG: "2.0 Waiting for Content" handled event 'load content' (no transition)
    Tue, 17 Mar 2015 15:35:30 GMT:  DEBUG: SC.Object:sc2647:dispatch('noContent')
    Tue, 17 Mar 2015 15:35:30 GMT:  DEBUG:   "6.2 pop up View" handled event 'noContent' with a transition to "6.2.2 No Content"
    Tue, 17 Mar 2015 15:35:30 GMT:  DEBUG:     -> entering "6.2.2 No Content"
    Tue, 17 Mar 2015 15:35:30 GMT:  WARN:  REJECTING SERVER RESPONSE CoreMail.MailRequest.willReceive:
      Status:0
      Request:/wm/preference
      Wmsid:null
      Redirect Count:1
      Timeout Redirect Count:1
      ResponseText:
    Tue, 17 Mar 2015 15:35:30 GMT:  DEBUG: -->  Request 2:   POST to https://p04-mailws.icloud.com:443/wm/preference?clientBuildNumber=15B.9bb3ce9&cl ientId=548F3122-7920-4BB0-8988-1F5BFD99D289&dsid=1018646875,  headers: Content-Type=text/plain,  body: (omitted)
    Tue, 17 Mar 2015 15:35:30 GMT:  DEBUG: ----------------> Request out: /wm/preference-list-->1426606530328/1
      wmsid: null
      params: {"locale":"en-us","timeZone":"US/Eastern"}
    Tue, 17 Mar 2015 15:35:30 GMT:  ERROR: GIVING UP ON RETRIES, CoreMail.MailRequest.willReceive:
    responseText: ,
    this._redirectCount: 1
    Tue, 17 Mar 2015 15:35:30 GMT:  DEBUG: <--  Response 2:  0  (84ms),  headers:   body: (empty)
    Tue, 17 Mar 2015 15:35:30 GMT:  DEBUG: <---------------- Request in: /wm/preference-list-->1426606530328/1,httpStatus: 0,round trip time: 85ms, wmsid: null
    Tue, 17 Mar 2015 15:35:30 GMT:  ERROR: retrieveResponseError:
      ServerPreferencesDataSource.retrieveResponse
      error:-1/0
      guid:serverPrefsGuid
    Tue, 17 Mar 2015 15:35:30 GMT:  ERROR: Bootstrap error: Preferences.RefreshError
    TYPE
    server
    APP STATECHART
    SC.Statechart:sc1031
      initialized: true
      name: cloudos-statechart
      current-states: [
        active.application.displayingCurrentApp
      state-transition:
        active: false
        suspended: false
      handling-event: false
    BUILD NUMBER
    15B.169e9f7
    TIME
    Tue Mar 17 2015 11:35:32 GMT-0400 (EDT)        (1426606532298)
    HOST
    www.icloud.com
    USER AGENT
    Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_2) AppleWebKit/600.3.18 (KHTML, like Gecko) Version/8.0.3 Safari/600.3.18
    DSID
    1018646875
    ENVIRONMENT
    PROD
    RECENT LOG MESSAGES
    Tue, 17 Mar 2015 15:35:30 GMT:  DEBUG: MAIL in main()
    Tue, 17 Mar 2015 15:35:30 GMT:  DEBUG: Creating local CK.User object
    Tue, 17 Mar 2015 15:35:30 GMT:  DEBUG: Creating local CK.AccountPreferences object
    Tue, 17 Mar 2015 15:35:30 GMT:  DEBUG: -->  Request 1:   POST to https://p04-mailws.icloud.com:443/wm/preference?clientBuildNumber=15B.9bb3ce9&cl ientId=548F3122-7920-4BB0-8988-1F5BFD99D289&dsid=1018646875,  headers: Content-Type=text/plain,  body: (omitted)
    Tue, 17 Mar 2015 15:35:30 GMT:  DEBUG: ----------------> Request out: /wm/preference-list-->1426606530328/1
      wmsid: null
      params: {"locale":"en-us","timeZone":"US/Eastern"}
    Tue, 17 Mar 2015 15:35:30 GMT:  DEBUG: SC.Object:sc1473:dispatch('load content')
    Tue, 17 Mar 2015 15:35:30 GMT:  DEBUG: "2.0 Waiting for Content" handled event 'load content' (no transition)
    Tue, 17 Mar 2015 15:35:30 GMT:  DEBUG: SC.Object:sc2647:dispatch('noContent')
    Tue, 17 Mar 2015 15:35:30 GMT:  DEBUG:   "6.2 pop up View" handled event 'noContent' with a transition to "6.2.2 No Content"
    Tue, 17 Mar 2015 15:35:30 GMT:  DEBUG:     -> entering "6.2.2 No Content"
    Tue, 17 Mar 2015 15:35:30 GMT:  WARN:  REJECTING SERVER RESPONSE CoreMail.MailRequest.willReceive:
      Status:0
      Request:/wm/preference
      Wmsid:null
      Redirect Count:1
      Timeout Redirect Count:1
      ResponseText:
    Tue, 17 Mar 2015 15:35:30 GMT:  DEBUG: -->  Request 2:   POST to https://p04-mailws.icloud.com:443/wm/preference?clientBuildNumber=15B.9bb3ce9&cl ientId=548F3122-7920-4BB0-8988-1F5BFD99D289&dsid=1018646875,  headers: Content-Type=text/plain,  body: (omitted)
    Tue, 17 Mar 2015 15:35:30 GMT:  DEBUG: ----------------> Request out: /wm/preference-list-->1426606530328/1
      wmsid: null
      params: {"locale":"en-us","timeZone":"US/Eastern"}
    Tue, 17 Mar 2015 15:35:30 GMT:  ERROR: GIVING UP ON RETRIES, CoreMail.MailRequest.willReceive:
    responseText: ,
    this._redirectCount: 1
    Tue, 17 Mar 2015 15:35:30 GMT:  DEBUG: <--  Response 2:  0  (84ms),  headers:   body: (empty)
    Tue, 17 Mar 2015 15:35:30 GMT:  DEBUG: <---------------- Request in: /wm/preference-list-->1426606530328/1,httpStatus: 0,round trip time: 85ms, wmsid: null
    Tue, 17 Mar 2015 15:35:30 GMT:  ERROR: retrieveResponseError:
      ServerPreferencesDataSource.retrieveResponse
      error:-1/0
      guid:serverPrefsGuid
    Tue, 17 Mar 2015 15:35:30 GMT:  ERROR: Bootstrap error: Preferences.RefreshError

Maybe you are looking for