Adobe Content Server 4.1 - Cound not find server's private key in the keystore

Hello,
I have getting following error when i setup fulfillment services of Adobe Content Server 4.1.1
type Exception report
message
description The server encountered an internal error () that  prevented it from fulfilling this request.
exception
javax.servlet.ServletException: Servlet execution threw an exception
root cause
java.lang.Error: Cound not find server's private key in the keystore
     com.adobe.adept.fulfillment.security.ServerConfig.init(ServerConfig.java:156)
     com.adobe.adept.fulfillment.security.ServerConfig.getSigningURL(ServerConfig.java:48)
     com.adobe.adept.fulfillment.servlet.FulfillmentServerStatus.getServers(FulfillmentServerStatus.java:34)
     com.adobe.adept.common.servlet.Status.checkUp(Status.java:355)
     com.adobe.adept.common.servlet.Status.doGet(Status.java:424)
     javax.servlet.http.HttpServlet.service(HttpServlet.java:617)
     javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
note The full stack trace of the root cause is available in the  Apache Tomcat/6.0.20 logs.
My fulfillment-conf.txt contains following:
com.adobe.adept.log.level=trace
com.adobe.adept.log.file=C:\acs4\log\fulfillment.log
com.adobe.adept.persist.sql.driverClass=com.mysql.jdbc.Driver
com.adobe.adept.persist.sql.dialect=mysql
com.adobe.adept.persist.sql.connection=jdbc:mysql://127.0.0.1:3306/adept
com.adobe.adept.persist.sql.user=acesdbuser
com.adobe.adept.persist.sql.password=******
com.adobe.adept.serviceURL=http://127.0.0.1:8080/fulfillment
com.adobe.adept.fulfillment.security.licensesignURL=https://nasigningservice.adobe.com/licensesign
com.adobe.adept.fulfillment.security.keystore=pkcs12
com.adobe.adept.fulfillment.security.pkcs12.file=file:///C:/ACS4/operator.p12
com.adobe.adept.fulfillment.security.keystore.user=operator4acs
com.adobe.adept.fulfillment.security.keystore.password=******
Any Idea?
Regards,

Are you sure you created the .p12 file with the correct '-name' friendly name? The value for -name must match the value com.adobe.adept.fulfillment.security.keystore.user

Similar Messages

  • A fatal error when attempting to access the SSL server credential private key. Error code 0x8009030d. Windows 8.1.

    Hi,
    We develop a server-side application which receives incoming https connections using self-signed certificate. It was all ok while we were using Windows 7 or Windows 2008 as OS, but when our clients started installing Windows 8 as server OS they encountered
    big problem: application got unavailable in few hours after start. 
    In event logs we have following:
    A fatal error occurred when attempting to access the SSL server credential private key. The error code returned from the cryptographic module is 0x8009030d. The internal error state is 10001.
    After restart, application recreates certificate and all works normal few hours till next fatal error.
    This
    article did not help us. And I repeat that this error appears only on Windows 8 (we tested on Windows 8.1). Windows 2012 Server we did not test yet.
    How we can solve this problem?
    Best regards.

    Hi,
    Since this article released in 2008,I suspect the code mentioned in this article doesn't  supprot Windows 8.
    And since the certificate was written by C#,I suggest you submit a new case on MSDN Forum as they will be more professional on your issue:
    https://social.msdn.microsoft.com/Forums/en-US/home
    Regards,
    Kelvin hsu
    TechNet Community Support

  • Adobe Content Server

    I am wondering if Adobe Content Server is phased out or not.
    And if not: What is the price? Is it impossible to get this information?

    We configured Adobe Content Server 3.0.1 and created one store and one library, when we want to lend a eBook i am unable to locate the option for lending the eBook in "Availbility" tag page of "Books" Tab when i set the "Adjust" option to value "Loan".
    Please let me know whether my version of content server allows us to package a eBook for lending if so where can i find the option for lending the eBook.

  • Removing book from Adobe Content Server

    Hello.
    I would like to remove book from Adobe Content Server. I used answers from that thread http://forums.adobe.com/thread/621994 .I successfully removed book from distributor inventory but can not remove it from operator (built-in distributor) inventory. I got this error:
    data="E_ADEPT_DATABASE http://acs.authorcloudware.com:8080/admin/ManageResourceKey Cannot delete or update a parent row: a foreign key constraint fails (`adept`.`fulfillmentitem`, CONSTRAINT `fulfillmentitem_ibfk_2` FOREIGN KEY (`resourceid`) REFERENCES `resourcekey` (`resourceid`))"
    How can I delete data from 'fulfillmentitem' table from php script?
    Best regards,
    Tamara.

    Finally, I found a way to remove book from adobe content server. This article Public Knowledge Base helped me a lot.
    So, in order to remove book from acs you need to make 4 requests:
    - request to admin/ManageDistributionRights with distributor ID
    - request to admin/ManageDistributionRights built-in distributor ID
    - request to admin/ManageResourceItem
    - request to admin/ManageResourceKey
    This is how my requests look like:
    //Remove book from distributor
    <request action='delete' auth='builtin' xmlns='http://ns.adobe.com/adept'>
         <nonce>Mjc3MjQzMTI=</nonce>
         <expiration>2014-05-26T09:57:37+00:00</expiration>
         <distributionRights>
              <distributor>urn:uuid:3bbdd5ee-c325-4ba9-86d9-8cc428d725ac</distributor>
              <resource>urn:uuid:cd9879ce-7648-49ad-8202-243a54486938</resource>
         </distributionRights>
    </request>
    //Remove book from built-in distributor
    <request action='delete' auth='builtin' xmlns='http://ns.adobe.com/adept'>
         <nonce>MjYzNDA0ODQ=</nonce>
         <expiration>2014-05-26T09:57:38+00:00</expiration>
         <distributionRights>
              <distributor>urn:uuid:00000000-0000-0000-0000-000000000001</distributor>
              <resource>urn:uuid:cd9879ce-7648-49ad-8202-243a54486938</resource>
         </distributionRights>
    </request>
    //Remove Resource Item Info
    <request action='delete' auth='builtin' xmlns='http://ns.adobe.com/adept'>
         <nonce>MjYxMDgxOTI=</nonce>
         <expiration>2014-05-26T09:57:38+00:00</expiration>
         <resourceItemInfo>
              <resource>urn:uuid:cd9879ce-7648-49ad-8202-243a54486938</resource>
              <resourceItem>0</resourceItem>
         </resourceItemInfo>
    </request>
    //Remove the resource key
    <request action='delete' auth='builtin' xmlns='http://ns.adobe.com/adept'>
         <nonce>MjgyNjU2NDI=</nonce>
         <expiration>2014-05-26T09:57:39+00:00</expiration>
         <resourceKey>
              <resource>urn:uuid:cd9879ce-7648-49ad-8202-243a54486938</resource>
              <resourceItem>0</resourceItem>
         </resourceKey>
    </request>
    Value of "resourceItem" tag is important. Actually I didn't find description in documentation what this tag means. I found that this is optional resource item index and that default value is 1. But when I send delete request with 1 in <resourceItem> the last request, which remove resource key, return error. If you know what this tag mean please answer in this thread.

  • Adobe Content Server 3.0.1 Store and Library conflicts

    Dear All,
    I am working on Adobe Content Server 3.0.1 and able to configure it to ecommerce site but i am unable to package the books when both library and store is configured on my Adobe content server 3.0.1 at a time.
    please let me known the version of the content server i using is licensed to use only store or a library at a given time.

    We configured Adobe Content Server 3.0.1 and created one store and one library, when we want to lend a eBook i am unable to locate the option for lending the eBook in "Availbility" tag page of "Books" Tab when i set the "Adjust" option to value "Loan".
    Please let me know whether my version of content server allows us to package a eBook for lending if so where can i find the option for lending the eBook.

  • Where to create adobe content server trial account?

    hi there,
    where i create trial server account for adobe content server 4?
    is it give me account for sign - in to acs operator client?
    thanks.

    Hi,
    I'm not sure what SDK you're exactly referring to. But you can use server-side actionscrip and an IDE like Adobe Flash Builder/Flash Professional for client side actionscript to develop your two-way application.
    Hope this helps. Let me know if you have any other queries.
    Thanks,
    Apurva

  • Future Adobe Content Server options

    As everyone knows, ACS 3 as a standalone product is no longer available; the official text from website:
    "Adobe Content Server 3 is no longer distributed by Adobe as a standalone product. Instead, a number of Adobe Partners, including service providers and content aggregators, offer Content Server protection as a convenient hosted service."
    Delivering protected PDF files to our customers through a hosted service (ADEPT or through a partner) is not an option for many reasons. LiveCyle does not appear to be the right solution either.
    Can anyone give insight into whether this gap in product offering will be addressed?

    Content Server Technology for a special edition of Adobe InDesign CS3 ME
    I seek to license Adobe Content Server-like Technology for a special edition of Adobe InDesign CS3 ME in which a user must activate this special edition of Adobe InDesign CS3 ME so that the coponants of special OpenType fonts, InDesign scripts, and keyboard drivers only function together as a group and on a specific hardware configuration. When these software elements are separated and are not joined by this specific hardware configuration, no element functions.
    If you think you can accomplish this, please email me Scott Irwin at [email protected]

  • Integrate Adobe content server with Virtuemart.

    Hello,
         Please provide me some information or guidence regarding integration of Adobe content server and virtue mart  in to virtuemart shopping cart or e book store.
         If i need to provide changes into the code ,then please guide me for that code also.
         It would be grate if any body can provide us exact solution regarding integration.
         I am waiting for reply with solution.
    Thanks & Regards,
    Nayan Jogi

    Hello,
    I have seen on the internet you asking for help in that issue.
    I am now starting a project to create an ebook shop in Spain and I would like to ask you how the system based on Content Server and Virtuemart worked? Did you find too much problems? Is the website already released?
    Thanks for your help,
    Jaime Farres

  • Suggested User base on Adobe Content Server

    I was trying to get some statistics for the supported user base for Adobe Content server 4.01. We have one server Dual Core processor with 4 GB RAM on windows 2008 server. I would like to know what is the load that this server can support during document fulfilment process. We are expecting around 300000 users to download documents from Adobe Content Server in next couple of years and we are trying to see what are ways that we can scaleup the infrastructure to support huge user downloads.
    It would be really helpful if some one shares us the concurrent user load supported by Adobe Content Server

    We configured Adobe Content Server 3.0.1 and created one store and one library, when we want to lend a eBook i am unable to locate the option for lending the eBook in "Availbility" tag page of "Books" Tab when i set the "Adjust" option to value "Loan".
    Please let me know whether my version of content server allows us to package a eBook for lending if so where can i find the option for lending the eBook.

  • Need Adobe content Server

    Please I need help ??. I am look for a trial version of Adobe Content Server or a full license version if its not possible to obtain the trail.
    I have written to a couple of solution providers without response. Adobe has since taken their hands off this product and does not appear to provide any help information at this stage.
    If you can help me out I will be very grateful.
    Bushfaller.

    Hello Carlson,
    Your email arrived in my mailbox, we are located in Belgium and at present time, can provide with ACS. Certipost is a joint venture of the Belgian Post and Belgacom (one of the Belgian telecommunication companies).
    Thru our department eworker, we have the expertise of the DRM market (digital rights management). May you could let me know what the purpose of purchasing an ACS is, may be I could help you.
    Kind regards
    Monique Brown
    Business Development Manager
    www.certipost.be
    Direct line : +32 53 60 11 68
    Mobile: +32 473 25 06 24

  • Preview or Sample Book using Adobe Content Server 4.0

    We are using Adobe Content Server 4 to process PDF files into ebooks. Now we want to provide Preview  or Sample books of these ebooks. By Preview I meant, lesser pages per chapter so that user can read some content of the book and if he/she likes the content then he/she can purchase the complete ebook. I am wondering if there is a way in Adobe Content Server 4.0 that can help us creating these Previews or Sample books. Our limitation is that we want that ACS 4.0 automatically create the preview from the complete book. It means that we do not want to provide PDF with limited number of pages. We want to provide complete PDF file and ACS 4 should automatically select some of the pages to create Preview or Sample ebook. Does Adobe COntent Server 4.0 has such functionality that can help us in creating Sample ebooks or Previews?
    Message was edited by: Logical Vikash Sharma

    Subsetting or creating sample documents is not a feature of ACS4.  I would suggest looking at using/creating your own sample creator.

  • I need to re download Adobe X ... but can not find the place on the website for such a procedure?

    I have purchased Adobe X ... Now, I need to re download Adobe X ... but can not find the place on the website for such a procedure?

    http://prodesigntools.com/adobe-cs5-5-direct-download-links.html
    You NEED to sign in at this link: https://www.adobe.com/account/sign-in.adobedotcom.html?returnURL=%2Fcfusion%2Fmembership%2 Findex.cfm%3Fpid%3D2159997%26nf%3D1%26nl%3D1%26loc%3Den%26ref%3Dlogin
    then reload the first page BEFORE you can download the Acrobat X

  • Limitations/issues v.2 Adobe Content Viewer on Ipad 1 (not tested on 2)

    Update on 23-Feb-2012
    There a a few problems/limitations I'm running into with the Adobe Content Viewer for Ipad 1 (not tested on 2), like:
    Autoplaying more than 1 multiple-state is impossible. Only the object in the highest place in the layers is visible (like having pulsing navigation arrows and a fade in text) -works perfectly in de windows Adobe Content Viewer with Indesign 5.5
    Autoplay of an multistate object with 'stop at last frame' does not work. It just fades the entire multistate object out, instead of holding. -works perfectly in de windows Adobe Content Viewer with Indesign 5.5.
    Cropping Images (changing the objectbox) in indesign, becomes skewed (or squashed) like the image just gets pushed in the new objectbox size.
    Buttons with a click image/appearence become invisible in a multistate object. -works perfectly in de windows Adobe Content Viewer with Indesign 5.5.
    The viewer on the ipad will crash on a navto://NameOfPage#PageNumberOtherThenTheFirst, if that page where it directs to has a slideshow. this happens 90% of the time.
    Some ideas for change
    Not allowing an Overlay (which is larger than the page itself) on a page depth of 1, on top of a page with depth 0. Seeing content of the page below the currentpage seems quite unuseful.
    Allow multistate objects to autoplay within another multistate object (thus allowing like a: menu catagorie wich can call an autoplaying slideshow)
    Zooming in on an image without first having to tap on it to enable zooming.
    Updating content button.
    Hitting the update button in Indesign cs5.5 (windows) doesn't update all changed content.
    Hitting download update in de Adobe Content Viewer (Ipad 1) doesn't change all changed content. Archive and redownload nessesary.
    We would love to see the top issues working.
    Kind regards,
    R. Heijne

    Update on 24-Feb-2012
    There are a few problems/limitations I'm running into with the Adobe Content Viewer for Ipad 1 (not tested on 2), like:
    Navto:// crashes to non preloaded pages with slideshow:
    Additional information/ text examples:
                    - Say we are on page 2. depth 2:  and you link to page 4 with depth 1 (not 0/first) (which has a slideshow on that page) This results in a crash.
                    - Linking to pages with depth 0 (and have slideshows, works.
                    - Say we are on Page 2, depth 3 and link to Page 3 depth 2 with a slideshow, works.
                    - Linking to all next to pages and top pages with slideshows, works.
    Fixed (viewer 2.3.1) Autoplaying more than 1 multiple-state is impossible. Only the object in the highest place in the layers is visible
                                           (like having pulsing navigation arrows and a fade in text) -works perfectly in de windows Adobe Content Viewer with Indesign 5.5
    Fixed (viewer 2.3.1) Autoplay of an multistate object with 'stop at last frame' does not work. It just fades the entire multistate object out,
                                            instead of holding. -works perfectly in de windows Adobe Content Viewer with Indesign 5.5.
    Fixed (viewer 2.3.1) Cropping Images (changing the objectbox) in indesign, becomes skewed (or squashed) like the image just gets pushed in the new objectbox size.
    Fixed (viewer 2.3.1) Buttons with a click image/appearence become invisible in a multistate object. -works perfectly in de windows Adobe Content Viewer with Indesign 5.5.
    Some ideas for change
    Not allowing an Overlay (which is larger than the page itself) on a page depth of 1, on top of a page with depth 0. Seeing content of the page below the currentpage seems quite unuseful.
    Allow multistate objects to autoplay within another multistate object (thus allowing like a: menu catagorie wich can call an autoplaying slideshow)
    Zooming in on an image without first having to tap on it to enable zooming.
    Updating content button.
    Hitting the update button in Indesign cs5.5 (windows) doesn't update all changed content.
    Hitting download update in de Adobe Content Viewer (Ipad 1) doesn't change all changed content. Archive and redownload nessesary.
    We would love to see the top issues working.
    Kind regards,
    R. Heijne

  • How to configure Adobe Content Server in a web farm

    We have a requirement where we would like to configure multiple servers with Adobe Content server and route requests via Network Load Balancer. We need help to configure Adobe Content serves in a web farm. can some one from your team direct us to appropriate documents or provide suggestions to configure Adobe Content server in a web farm.

    Request to provide instructions to configure Adobe Content Server in a web farm. I have installed Adobe Content Server in one of the box and configured all three services
    1) Fulfillment
    2) Packaging
    3) Admin
    We are successfully able to do packaging and fulfill documents. My goal is to add two more servers to handle load on ACS. I had a doubt on how to create and configure certificate files for other two boxes and add them NLB
    Request your help in guiding me to the documents that helps me to complete this configuration.
    Thanks,
    Ravi

  • Adobe Content Server Manager?

    Bonjour,
    Je suis membre de ma bibliothèque locale (Gatineau, Québec) et nous pouvons maintenant emprunter des livres numériques......le problème est le suivant.......j'ai téléchargé Adobe Reader et Adobe Digital pour emprunter les livres...mon problème est le le suivant je n'ai pas le programme Adobe Content Server Manager et je ne trouve pas un site sécuritaire pour le télécharger gratuitement.....quelqu'un peut m'aider? Merci..........

    http://www.adobe.com/products/content-server.html

Maybe you are looking for

  • Cannot publish Webpart - "Invalid SPlistItem. The SPListItem provided is not compatible with a Publishing Page"

    Hello All, I have seen this error message discussed in other posts on the forums here but the solution of deactivating and reactivating server publishing/infrastructure are not working for me. In fact I encountered additional errors when reactivating

  • How TDS Reverse at the time of Down Payment Clearing F54

    Dear Friends, Please let me know what is the process or configuration we have to do for clear TDS in F-54. my scenario is I made down payment of Rs. 10000/- with TDS. next we are doing MIRO for Rs. 50000/- with TDS full amount Then I m adjusting down

  • Matrix report in XML publisher with dynamic column groups

    hi, i have one matrix report in txt format having 5 columns under 1 month heading. Now i want that all these 5 columns should repeat for multiple months depending upon input parameters. S. No. Organization Name Organization Id Project Code 1 GRANDWOO

  • SXPG_CALL_SYSTEM execution

    Hello everybody I need some help with SXPG_CALL_SYSTEM. I use it to in combination with unix commands TAR en GZIP. Everything works when i'm logged in as an admin user. The problem is that the commands don't do a thing when i'm logged in as a normal

  • Multiple Oracle Homes & php

    Hi I currently have ora8i, ora9i , 10XE & Zend Core for PHP installed on my machine. When I have just installed Zend, the PHP side works and can find the XE - no problem. When I have 'work' to do and need a different 'oracle_home' setup, I use the 'h