Deployment of Acrobat 9 with custom stamps

Hi,
I would like to deploy Adobe Acrobat 9 Standard using the Customization Wizard which appears straight forward however I would like to know if there is anyway to deploy custom stamps as we have over 50 and is a major time consumption to deploy manually. Is there anyway to deploy this using Customization Wizrd or any other automated method?
Thanks in advance.

Hi,
I would like to deploy Adobe Acrobat 9 Standard using the Customization Wizard which appears straight forward however I would like to know if there is anyway to deploy custom stamps as we have over 50 and is a major time consumption to deploy manually. Is there anyway to deploy this using Customization Wizrd or any other automated method?
Thanks in advance.

Similar Messages

  • JDEV deployment of web app with custom JAAS login module fails

    For the first time, I am trying to implement a custom JAAS login module.
    JDEV deployment to standalone OC4J only fails when my orion-application.xml is included. The deployment fails with a java.lang.InstantiationException.
    This what I have done:
    1) Wrote a custom LoginModule called com.whirlpoool.sjtc.jaas.gpa.LDAPLoginModule.
    2) Put it and its dependent classes in a jar named sjtcjaas.jar.
    3) Put the jar in $ORACLE_HOME\j2ee\home\lib
    4) Changed library_path in $ORACLE_HOME\j2ee\home\config\application.xml to
    <library path="../../home/lib/scheduler.jar;../../home/lib/sjtcjaas.jar" />
    5) Added an orion-application.xml to the JDEV project. (I used an Oracle How-to as a pattern, see below.)
    I think I'm close but no cigar, yet. Any help would be appreciated.
    Regards,
    Al Malin
    =============== orion-application.xml ========================================
    <?xml version="1.0"?>
    <orion-application xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://xmlns.oracle.com/oracleas/schema/orion-application-10_0.xsd" deployment-version="10.1.3.0.0" default-data-source="jdbc/OracleDS" schema-major-version="10" schema-minor-version="0" >
    <security-role-mapping name="sr_manager">
    <group name="managers" />
    </security-role-mapping>
    <security-role-mapping name="sr_developer">
    <group name="developers" />
    </security-role-mapping>
    <log>
    <file path="application.log" />
    </log>
    <!-- Configuring a Login Module in an Application EAR file. -->
    <jazn-loginconfig>
    <application>
    <name>customjaas</name>
    <login-modules>
    <login-module>
    <class>com.whirlpoool.sjtc.jaas.gpa.LDAPLoginModule</class>
    <control-flag>required</control-flag>
    <options>
    <option>
    <name>debug</name>
    <value>true</value>
    </option>
    </options>
    </login-module>
    </login-modules>
    </application>
    </jazn-loginconfig>
    </orion-application>

    Starting OC4J from c:\oc4j\j2ee\home ...
    2006-09-07 13:45:28.484 NOTIFICATION JMS Router is initiating ...
    06/09/07 13:45:29 Oracle Containers for J2EE 10g (10.1.3.0.0) initialized
    2006-09-07 13:45:58.609 NOTIFICATION Application Deployer for aam STARTS.
    2006-09-07 13:45:58.640 NOTIFICATION Copy the archive to C:\oc4j\j2ee\home\applications\aam.ear
    2006-09-07 13:45:58.656 NOTIFICATION Initialize C:\oc4j\j2ee\home\applications\aam.ear begins...
    2006-09-07 13:45:58.656 NOTIFICATION Auto-unpacking C:\oc4j\j2ee\home\applications\aam.ear...
    2006-09-07 13:45:58.687 NOTIFICATION Unpacking aam.ear
    2006-09-07 13:45:58.687 NOTIFICATION Unjar C:\oc4j\j2ee\home\applications\aam.ear in C:\oc4j\j2ee\home\applications\aam
    2006-09-07 13:45:58.750 NOTIFICATION Done unpacking aam.ear
    2006-09-07 13:45:58.750 NOTIFICATION Finished auto-unpacking C:\oc4j\j2ee\home\applications\aam.ear
    2006-09-07 13:45:58.750 NOTIFICATION Auto-unpacking C:\oc4j\j2ee\home\applications\aam\aam.war...
    2006-09-07 13:45:58.750 NOTIFICATION Unpacking aam.war
    2006-09-07 13:45:58.765 NOTIFICATION Unjar C:\oc4j\j2ee\home\applications\aam\aam.war in C:\oc4j\j2ee\home\applications\aam\aam
    2006-09-07 13:45:58.765 NOTIFICATION Done unpacking aam.war
    2006-09-07 13:45:58.765 NOTIFICATION Finished auto-unpacking C:\oc4j\j2ee\home\applications\aam\aam.war
    2006-09-07 13:45:58.812 NOTIFICATION Initialize C:\oc4j\j2ee\home\applications\aam.ear ends...
    2006-09-07 13:45:58.828 NOTIFICATION Starting application : aam
    2006-09-07 13:45:58.828 NOTIFICATION Initializing ClassLoader(s)
    2006-09-07 13:45:58.828 NOTIFICATION Initializing EJB container
    2006-09-07 13:45:58.828 NOTIFICATION Loading connector(s)
    2006-09-07 13:45:58.843 NOTIFICATION application : aam is in failed state
    06/09/07 13:45:58 WARNING: Application.setConfig Application: aam is in failed state as initialization failedjava.lang.InstantiationException
    Sep 7, 2006 1:45:58 PM com.evermind.server.Application setConfig
    WARNING: Application: aam is in failed state as initialization failedjava.lang.InstantiationException
    06/09/07 13:45:58 oracle.oc4j.admin.internal.DeployerException: java.lang.InstantiationException
    06/09/07 13:45:58 at oracle.oc4j.admin.internal.ApplicationDeployer.addApplication(ApplicationDeployer.java:510)
    06/09/07 13:45:58 at oracle.oc4j.admin.internal.ApplicationDeployer.doDeploy(ApplicationDeployer.java:191)
    06/09/07 13:45:58 at oracle.oc4j.admin.internal.DeployerBase.execute(DeployerBase.java:93)
    06/09/07 13:45:58 at oracle.oc4j.admin.jmx.server.mbeans.deploy.OC4JDeployerRunnable.doRun(OC4JDeployerRunnable.java:52)
    06/09/07 13:45:58 at oracle.oc4j.admin.jmx.server.mbeans.deploy.DeployerRunnable.run(DeployerRunnable.java:81)
    06/09/07 13:45:58 at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:814)
    06/09/07 13:45:58 at java.lang.Thread.run(Thread.java:595)
    06/09/07 13:45:58 Caused by: java.lang.InstantiationException
    06/09/07 13:45:58 at com.evermind.server.ApplicationStateRunning.initDataSources(ApplicationStateRunning.java:1424)
    06/09/07 13:45:58 at com.evermind.server.ApplicationStateRunning.initializeApplication(ApplicationStateRunning.java:195)
    06/09/07 13:45:58 at com.evermind.server.Application.setConfig(Application.java:391)
    06/09/07 13:45:58 at com.evermind.server.Application.setConfig(Application.java:308)
    06/09/07 13:45:58 at com.evermind.server.ApplicationServer.addApplication(ApplicationServer.java:1771)
    06/09/07 13:45:58 at oracle.oc4j.admin.internal.ApplicationDeployer.addApplication(ApplicationDeployer.java:507)
    06/09/07 13:45:58 ... 6 more
    2006-09-07 13:45:58.890 NOTIFICATION Application Deployer for aam FAILED.
    2006-09-07 13:45:58.890 NOTIFICATION Application UnDeployer for aam STARTS.
    2006-09-07 13:45:58.906 NOTIFICATION Removing all web binding(s) for application aam from all web site(s)
    2006-09-07 13:45:59.015 NOTIFICATION Application UnDeployer for aam COMPLETES.
    06/09/07 13:45:59 WARNING: DeployerRunnable.run java.lang.InstantiationExceptionoracle.oc4j.admin.internal.DeployerException: java.lang.InstantiationException
    at oracle.oc4j.admin.internal.DeployerBase.execute(DeployerBase.java:126)
    at oracle.oc4j.admin.jmx.server.mbeans.deploy.OC4JDeployerRunnable.doRun(OC4JDeployerRunnable.java:52)
    at oracle.oc4j.admin.jmx.server.mbeans.deploy.DeployerRunnable.run(DeployerRunnable.java:81)
    at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:814)
    at java.lang.Thread.run(Thread.java:595)
    Caused by: java.lang.InstantiationException
    at com.evermind.server.ApplicationStateRunning.initDataSources(ApplicationStateRunning.java:1424)
    at com.evermind.server.ApplicationStateRunning.initializeApplication(ApplicationStateRunning.java:195)
    at com.evermind.server.Application.setConfig(Application.java:391)
    at com.evermind.server.Application.setConfig(Application.java:308)
    at com.evermind.server.ApplicationServer.addApplication(ApplicationServer.java:1771)
    at oracle.oc4j.admin.internal.ApplicationDeployer.addApplication(ApplicationDeployer.java:507)
    at oracle.oc4j.admin.internal.ApplicationDeployer.doDeploy(ApplicationDeployer.java:191)
    at oracle.oc4j.admin.internal.DeployerBase.execute(DeployerBase.java:93)
    ... 4 more
    2006-09-07 13:45:59.031 WARNING java.lang.InstantiationException

  • Firefox 4 Deployment with customized user settings?

    Hi folks,
    I want to deploy FF 4.0 with customized user settings, but where is the "localized" folder for my prefs.js file? In FF 3.6.x we've extracted the setup.exe file and with sources we deployed our customized firefox. Now in FF 4.0 there are some folder missing in the new sources. Are there any documents which explain the deployment of FF 4.0? thanks a lot

    Here are some instructions for creating a customised deployment of Firefox 4 (including setting the homepage for all new and existing users)
    http://mockbox.net/configmgr-sccm/174-install-and-configure-firefox-silently.html
    http://mockbox.net/configmgr-sccm/300-firefox-4-set-default-home-page-for-all-users.html

  • Acrobat Pro custom stamp keeps duplicating with mouse move

    Using Acrobat X Pro if we add a custom stamp to a PDF document, every time we move the mouse (or onboard pointer) it duplicates the stamp in a new location.  This is new behavior & didn't used to do this.  Anyone ever see this before or know of a fix?

    It sounds like you have the option to keep the stamp tool selected ticked on, which means that after you apply a stamp it will automatically generate a new one. If you want to disable it right-click the tool and untick the "Keep Tool Selected" option.

  • Users custom stamps dissapear in Acrobat 7.0 Professional

    Hello,
    For some reason our users custom stamps are dissapearing in Adobe Acrobat 7.0 Professional when they close Acrobat, reopen it, and attemp to use the stamp(s) they had previously created. I am not sure if we can upgrade Acrobat because the users documents have to comply with some patch standard at http://www.uspto.gov/. Where would I need to look in order to find out what version/patches http://www.uspto.gov/ supports so I can troubleshoot the problem more effectively?
    Thank you.

    Yes, but i was hoping to be able to convert multiple files through acrobat rather than plot one at a time through autocad. thanks.

  • Custom Stamps in Acrobat Reader

    I am in an office whereby I am the only person with the full version of Adobe Acrobat. Everyone else only has Acrobat Reader.
    I've created many a custom stamp for myself to use and I find them very handy, however, I'd like to be able to create custom stamps for people to use and apply in pdfs they are viewing with just the Reader. Does anyone know if this is possible?
    Thanks,
    kgriba

    Why did you post this in the forum for "Acrobat Feature Requests" ? You may use the forum for Adobe Reader.

  • Custom Stamp no longer worker in Acrobat X

    I created a custom stamp using Adobe X; not sure it was working the way it was suppose to but it still met my needs.
    I used a PDF form which I created using Word, added some form fields and saved it.
    Added the PDF form file as a custom stamp.
    Opened another PDF document and was able to insert the custom stamp.....and this is where I don't know if it really worked correctly or not.  The stamp was basically an image, none of the fields were accessible; I thought a PDF form would act like a dynamic stamp but it didn't work as I expected.
    But if I opened the original PDF of the stamp and filled in the form fields & saved it and then inserted the custom stamp again, all the fields were updated/filled in.
    But then for some reason my custom stamp disappeared from stamp pull down menu.  And now when I try to add it back it creates an anonymous PDF file with the current form fields filled in.  If I open the original PDF stamp and change any of the form fields and save it, the custom stamp doesn't update when I go and insert it again.
    And if I delete that anonymous PDF file, my custom stamp again disappears from the stamp pull down menu.
    This now happens with any PDF file I use to create a custom stamp; Acrobat X creates an anonymous PDF file.
    If anyone has any idea how to fix this problem, it would be greatly appreciated.
    GT

    Behavior for PDFs is not handled by SharePoint, but rather Adobe Acrobat. Validate Adobe Acrobat's PDF browser extension has been disabled (you can do this via IE and I believe Adobe Acrobat has this option within it's own Preferences).
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • Custom Stamp displays correct in reader but fails in acrobat

    Our company has a rather old work ticket form which our technicians have been filling out on their laptops for years.  I believe it was originally created in lifecycle designer 6 but don't quote me on that.  The issue is that when the form is opened in any version of Adobe Reader, it displays correctly and the letter head with the company name and address is properly displayed at the top of the page. However when you open the same document in acrobat you can see that someone used a custom stamp to redo our address on this form when we moved several years ago and the stamp does not display correctly.
    Additionally if a user edits the file in anyway with acrobat and saves it the improperly displayed letterhead becomes permanent and also shows up when trying to view that file from adobe reader.  Can anyone tell me whats going on and how to fix this issue?

    That is a static XFA form and it appears as though something is wrong with the stamp. I recall someone reporting an issue with Acrobat 10 that can cause this sort of thing. I was able to open the file in Acrobat 9, delete the problematic stamp after unlocking it, and the correct one remained. If you're unable to do the same, I can send you the the file I fixed.

  • Will upgrading to Acrobat XI Pro preserve my custom stamps from Acrobat X Pro?

    I'm in the middle of installing Acrobat XI Pro and it wants me to uninstall my existing Acrobat X Pro. I'm concerned that I might lose my custom stamps in the process.

    I can't say for sure, but in any case you should make backups of the stamp files. If they aren't retained, you will be able to simply copy them over to the correct stamps folder for Acrobat 11.
    To find the current stamp folder, open Acrobat, open the JavaScript console by pressing Ctrl+J, and enter the following line of code:
    app.getPath("user", "stamps");
    and with the cursor on that line, press Ctrl+Enter, or Enter on the numeric keypad (on Windows at least).
    The path that is shown may include a hidden directory (e.g., "Application Data", but that is where you'll need to go to copy the stamp files from.
    It possible the custom stamps are also in the location given by:
    app.getPath("app", "stamps");
    so check there too.

  • Our company has users on both Acrobat X and XI.  We have custom stamps in X that the XI users need to use. How do we transfer the stamps to use in the newer version?

    Our company has users on both Acrobat X and XI.  We have custom stamps in X that the XI users need to use. How do we transfer the stamps to use in the newer version?

    You just copy the stamp files from one machine and place them in the correct directory on the other. You can find the location of both the user and app stamp directories by running the following code in the interactive JavaScript console:
    app.getPath("user", "stamps");
    app.getPath("app", "stamps");
    Select both lines and press Ctrl+Enter (Windows) or cmd+enter (Mac). Here's what I get with this using Acrobat 11 on a Mac:
    user folder: /Macintosh HD/Users/georgejohnson/Library/Application Support/Adobe/Acrobat/11.0/Stamps/
    app folder: /Macintosh HD/Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Built-in/Comments.acroplugin/Stamps/
    The stamp files (PDFs) might have cryptic looking names, but you can safely open each to see what stamps they contain.

  • Help with saving custom stamps to SOAP repository.

    In my attempt to create a custom SOAP based comment repository i've found that i can save and retrieve all lightweight annotations perfectly except for any custom stamps that I've created (default stamps work great).  When i retreive the annotations from a different computer, it just displays a black box with a black x in the middle instead of actually displaying the stamp image.  My guess here is that I need to read the custom stamp image to a stream and then save it to the server along with the annotation data.  The problem is that I can't seem to get acrobat JS to detect and get the image (this.icon.length only counts default stamps).  I do have an AP property for the stamp which is the named appearance according to the documentation.  I just need some help now as to how i can retreive the stamp image data from the named appearance.
    Any help would be greatly appreciated.
    Thanks!

    Can anyone help me out with this?  I have a requirement to enable saving custom stamps to a central server but i can't seem to be able to retrieve the image data for storage.  Any leads would be greatly appreciated.
    Thanks!

  • I just upgraded to Acrobat XI and found that my custom STAMPS are missing.

    I just upgraded to Acrobat XI and found that my custom STAMPS are missing. Anyone know how to pull them in from the last version?
    Macintosh.
    thanks

    i'm on a mac and when i search for any of those terms [Annotations, Stamps, ENU] it comes up empty. however, search on a mac is horrible....often doesn't search random folders....really bad.
    i've given up and just recreated them.
    of course i had an extra hour with nothing to do so that was time wisely spent
    thanks much for getting back to me.
    d

  • Can only get the "Draft" stamp when insert customer stamp with C#+JS

    I am trying to insert customer stamp in batch files with C#+JS.
    My JS works well in Acrobat. However, it doesn't work when use C#+JS. I always get the Acrobat's "Draft" stamp other than my own ones (the AP value is confirmed correct).
    In c#, it runs as this ( with the objectype.InvokeMember())
    1. initial an annotation with addAnnot first and get the properties object with method of getProp().
    2. Set the type entry of the properties object as "Stamp"
    3. With setProp(), modify the annotation to a Stamp annotation, and then get the properties object of the Stamp annotation.
    4. Set the entries (rect, page, AP ) of the properties object. Then use setProp() again to modify the properties of the Stamp annotation.
    The program runs without any error message. But I can only get the default stamp "Draft".
    One thing I found so far, in JS console in Acrobat, if I set the AP properties AFTER set the annotation type to "Stamp", it also get the "Draft" stamp only. as this,
         annot = this.addAnnot();
         prop = annot.getProps();
         prop.type = "Stamp";
         annot.setProps(prop);
         prop = annot.getProps();
         prop.page = 0;
         prop.rect = [0, 0, 100, 100];
         prop.AP = "#xxxxxxxx";
         annot.setProps(prop);
    If I set the prop.Ap before the forth line in above para, I can get the right stamp.
         annot = this.addAnnot();
         prop = annot.getProps();
         prop.type = "Stamp";
         prop.AP = "#xxxxxxxx";
         annot.setProps(prop);
         prop = annot.getProps();
         prop.page = 0;
         prop.rect = [0, 0, 100, 100];
         annot.setProps(prop);
    Or, if I set the props in the typcial JS format like below, I also get the right one
    annot = this.addAnnot({
    type: stamp,
    page: 0,
    rect: [0,0,100,100]
    AP: #xxxxxxxx)});
    But, the problem is, in C#, the AP properties can only be set after set the annotation type as Stamp (step 4). I think this might be the reason, but I don't know how to get over this.
    Please help. Thanks!

    No, it can't – but you could do that yourself as part of the watermarking process (ie. Two watermarks or fields)
    From: santa-satan <[email protected]<mailto:[email protected]>>
    Reply-To: "[email protected]<mailto:[email protected]>" <[email protected]<mailto:[email protected]>>
    Date: Mon, 6 Feb 2012 18:35:19 -0800
    To: Leonard Rosenthol <[email protected]<mailto:[email protected]>>
    Subject: Can only get the "Draft" stamp when insert customer stamp with C#+JS
    Re: Can only get the "Draft" stamp when insert customer stamp with C#+JS
    created by santa-satan<http://forums.adobe.com/people/santa-satan> in Acrobat SDK - View the full discussion<http://forums.adobe.com/message/4190155#4190155

  • How do I flatten a custom stamp in Acrobat XI?

    I use a custom stamp made from a scanned signature for signing documents.  There was a simple flatten function in the Document menu of Acrobat X that quickly merge the signature into the document.  I do see such a function in Acrobat XI.  I use Windows 7.  Any suggestions?

    By the way, that blog post above doesn't make it clear that this folder isn't created by default when you install Acrobat, so if it's not present, you have to create the ..\Acrobat\Privileged\11.0\JavaScripts folder manually and place the script file there.

  • Where is the custom stamp location in Acrobat 9 Pro for Win Vista

    Where is the custom stamp location in Acrobat 9 Pro for Win Vista?

    See this thread to find out how to determine the location:
    http://acrobatusers.com/forums/aucbb/viewtopic.php?id=17521

Maybe you are looking for

  • Migrate Closed Sales Data from one SAP system to Other

    Hi, We have a requirement to migrate Closed Sales Order data from one SAP System to the New SAP system. Please share your thoughts on the considerations / DOs and Donts for such cases. Appreciate your response. Kind Regards, Tanuji

  • Dynamic radio button fields do not display again after form is saved

    Hello, I have a group of radio button questions within a dynamic form that display additional questions based on the answer. So for the question "Is there a basement?" if the user indicates yes, there is a basement, additional questions are displayed

  • Currency Decimal Points - Urgent

    Hi, I am facing a serious problem with currency decimal points. Unfortunately "Currency code" has been deleted from where we can maintain currency decimal points in OY04 Tcode and the currency code was maintained by zero decimal places. Before deleti

  • ACS 5.2 Helpdesk account permission

    Is there a way to restrict the helpdesk account only able to add/remove MAC address from the host filter table?  It would be better if doing this via web or API. Thanks,

  • Excise Related information

    Hi Experts, Please can any one forward me the information related to the values come in RG23A Part-I & Part-II same RG23C Part-I & Part-II in following document. Good Receipt. Good Issue. Outgoing Excise Invoice. Incoming Excise Invoice. Please also