Reader 10\Citrix\Sendmail.api

With any version of version 10, as a published app through Citrix, when attempting to email the PDF as an attachment (throught the email button in Adobe) Adobe will crash with sendmail.api as the faulting module.
In my testing I have found out the following:
Locally (not citrix) it will NOT work in 10.1.1 and 10.1.2 ONLY when the Online Services is disabled via the cust wizard.  If I install default and the Online Services are available though Edit > Preferences it will work locally.
Through citrix as a published app it will not work with ANY version of 10.  When I install it on the server with all default, online services enabled, it's available running locally (RDP) on the citrix server.  However when I launch the published app, online services are not available (when they are locally on the same server).
Thanks for any help!!

We use Outlook.
It happens everytime with the conditions stated in the first post.
I don't get an event in the event view UNLESS I am running an app we use called ADP, and adobe runs inside it.  HOWEVER if I run adobe strait up without ADP, it will still crash, just not put anything in the log.
The event log shows:
wsstart is the ADP program. but it's crashing due to Adobe reader.  Again, adobe will still crash when opened alone, just will not put anything in the event log

Similar Messages

  • Acrobat Reader DC and BabylonRPI.api

    The above mentioned Adobe Reader plug-in BabylonRPI.api worked in the Adobe Reader 11 without any flaws. After having replaced version 11 with the new Acrobat Reader DC and having placed the Babylon plug-in,too, the Babylon function is no longer started by the respective command. I suppose BabylonRPI.api needs an adaptation to the new version. Does anybody know more about this topic?

    Meanwhile Babylon has answered acknowledging that the BabylonRPI.api does not work with the new Acrobat Reader DC. They say, they are working on their plug-in to get it compatible with the new Adobe Reader.
    Further notice as soon as Babylon presents its adapted plug-in.
    werceiro

  • Unable to uninstall Adobe Reader 7.0 (SSSecurity.api PLUG-IN missing) what should i do?

    Unable to uninstall Adobe Reader 7.0 (SSSecurity.api PLUG-IN missing) what should i do?
    I want to install adobe Reader 8.0 and first I would like to uninstall my Adobe Reader 7.0, However, when I click on Unistall, it says PLUG-IN SSSecurity.api is missing, and it won't allow me to unintall.
    I am using Windows XP
    What is the problem there?
    What should I do?
    Please help

    When I want to install 7.0 again. (I tried to do a override file)
    The following message will appear, and it will stop me from instal
    "This Patch Package could not be opened, verify that the patch package exists and that you can access it, or contact the application vendor to verify that this is a valid windows installer patch package"

  • How to read and use an API ?

    Hi all,
    In the Java Tutorial - Nested Classes chapter, one of the questions at the end is like this:
    Q2. Use the Java API documentation for the Box class (in the javax.swing package) to help you answer the following questions.
    a. What +{color:#3366ff}static nested class{color}+ does Box define?
    b. What +{color:#993366}inner class{color}+ does Box define?
    c. What is the +{color:#ff6600}superclass{color}+ of Box’s inner class?
    d. Which of Box’s {color:#003300}+nested classes+{color} can you use from any class?
    e. How do you create +{color:#ff0000}an instance of Box’s Filler class?+
    +{color}+
    {color:#000000}I can figure out the answers from a - d. But I don't understand the answers for e.
    {color}{color:#008000}
    Answer 2e: {color}new Box.Filler(minDimension, prefDimension, maxDimension)
    Where do we find the answers for (minDimension, prefDimension, maxDimension)? Is it written in the API? We can't actually see the programming codes in an API, right?
    Thank you for your reply.
    {color:#ffff00}
    Cheers~
    ++{color}
    Edited by: elaine_g on 16-Jul-2008 10:18 AM

    JoachimSauer wrote:
    If you look at the JavaDoc for the [Box.Filler constructor|http://java.sun.com/javase/6/docs/api/javax/swing/Box.Filler.html#Box.Filler(java.awt.Dimension,%20java.awt.Dimension,%20java.awt.Dimension)], then you'll see that it takes 3 Dimension objects.
    Thank you! I was looking at the constructor of the wrong class - 'Class Box' instead of 'Class Box.Filler', no wonder I couldn't find it. :p Thx. :-)
    DrLaszloJamf wrote:
    The Filler constructor takes three dimensions objects, right?
    Dimension minDimension = ...
    Dimension prefDimension= ...
    Dimension maxDimension= ...
    Box.Filler filler = new Box.Filler(minDimension, prefDimension, maxDimension);That's it. Nothing more involved or mysterious.Thanks a lot for the code, I can visualize it better now.
    P/S: Well, it was pretty mysterious for a while. 'Twas the very first time I've ever seen an API. ;-)
    Cheers~

  • Adober Reader 9.0: annots.api Crashes

    I tried deploying Adobe Reader 9.0 to several campus computer labs I manage. I am using roaming user profiles, but I don't have AppData redirected - it stays on the local hard drive.
    I discovered that while Reader 9 works OK for Administrators, it crashes at startup for people with just regular "User"-level privileges. This problem goes away if I remove the annots.api plugin file. Has anybody else seen this issue? I've gone back to Reader 8.1.2 in the meantime.
    Thanks for your help.

    Hi luca,
    I have problem whit ALD
    I have version 7.1      
    after I made the upgrade to adobe Acrobat to 9 version  LiveCycle dump increasingly.
    message error:
    Runtime Errors         MESSAGE_TYPE_X
    Date and Time          15.05.2009 10:32:57
    What happened?
        The current application program detected a situation which really
        should not occur. Therefore, a termination with a short dump was
        triggered on purpose by the key word MESSAGE (type X).

  • Reading Mails in JavaMail API

    Hi,
    i need to read my inbox from my gmail account.
    i have given the following configuration parameters in my program inside a hashtable.
    Hashtable hashObj = new Hashtable();
    hashObj.put("host","pop.gmail.com");
    hashObj.put("user","[email protected]");
    hashObj.put("pswd","password");but i am getting the following error::
    javax.mail.MessagingException: Connect failed;
    nested exception is:
    java.net.ConnectException: Connection timed out: connect
    at com.sun.mail.pop3.POP3Store.protocolConnect(POP3Store.java:148)
    at javax.mail.Service.connect(Service.java:275)
    at javax.mail.Service.connect(Service.java:156)
    at ReadEmailClient.ReadEmail(ReadEmailClient.java:35)
    at ReadEmailClient.main(ReadEmailClient.java:83)
    Caused by: java.net.ConnectException: Connection timed out: connect
    at java.net.PlainSocketImpl.socketConnect(Native Method)
    at java.net.PlainSocketImpl.doConnect(Unknown Source)
    at java.net.PlainSocketImpl.connectToAddress(Unknown Source)
    at java.net.PlainSocketImpl.connect(Unknown Source)
    at java.net.SocksSocketImpl.connect(Unknown Source)
    at java.net.Socket.connect(Unknown Source)
    at java.net.Socket.connect(Unknown Source)
    at com.sun.mail.util.SocketFetcher.createSocket(SocketFetcher.java:232)
    at com.sun.mail.util.SocketFetcher.getSocket(SocketFetcher.java:189)
    at com.sun.mail.pop3.Protocol.<init>(Protocol.java:81)
    at com.sun.mail.pop3.POP3Store.getPort(POP3Store.java:201)
    at com.sun.mail.pop3.POP3Store.protocolConnect(POP3Store.java:144)
    ... 4 more

    Hello!
    Did you already find why you received that exception when trying to connect to pop.gmail.com?
    I'm having the same problem. I can ping pop.gmail.com but I can't telnet it using port 995 (as gmail sais) or port 110 (pop3 default port).
    I guess it's not a problem of my code, right? I'm using code from the following link:
    http://www.java-tips.org/other-api-tips/javamail/connecting-gmail-using-pop3-connection-with-ssl-2.html
    Can you please give me some ideas to solve that.
    Greetings,
    Filipe

  • Adobe Reader hangs with Annots.api

    when running my application with Adobe Reader, which will sign on PDF document. Sometimes it will hang with error below:
    Can anybody help on this?
    Faulting application name: java.exe, version: 7.0.600.19, time stamp: 0x536a95be
    Faulting module name: Annots.api, version: 11.0.9.29, time stamp: 0x5412b2e2
    Exception code: 0xc0000005
    Fault offset: 0x0004a1bf
    Faulting process id: 0x7a0
    Faulting application start time: 0x01d00217ecaadd93
    Faulting application path: c:\pos\prudentialway\jre\bin\java.exe
    Faulting module path: C:\Program Files (x86)\Adobe\Reader 11.0\Reader\plug_ins\Annots.api
    Report Id: 60fb1fd1-6e0b-11e4-ac01-101f74eca368

    The drivers are up to date.
    I've just realised (doh!) that the printer isn't actually on the network, but has a direct USB connection to the w/station.
    The problem is only with Adobe reader, just the first print of the day from Adobe. If the first print of the day is from Word that prints OK, but if the second is from Adobe it still hangs (becasue it's the first rpint from Reader). At first I thought Reader was trawling across the internet for some reason, maybe checking in with Adobe.
    I'm baffled. I've tried uinstalling and reinstalling Reader as well!

  • How read a pdf file and change TableCell height after reading it using itext api

    I have created a pdf form file using itext ( see class CreatingFormClass ) with itext PdfPTable and PdfPCell. It is done successfully .
    Now I  read this pdf file and filling this pdf file(see class FillingFormClass  ) and at this point i want to change  PdfPCell height () according to Items.
    It is possible or Not???
    My code is given below.
    Thanx in advance
    public class FillPdfFormMainClass {
    public static  String RESULT1 = "E:/BlankForm.pdf";
        public static  String RESULT2 = "E:/FilledForm.pdf";
        public static void main(String[] args) throws DocumentException, IOException {
            String empName="Rakesh Kumar Verma";
                    // This part is Dynamic. It can be 1 item Or can be 25 items
            String listOfItem="Item 1 \n Item 2 \n Item 3\n Item 4 \n Item 5 \n Item 6 \n Item 7 \n Item 8 \n Item 9";
            CreatingFormClass example = new CreatingFormClass(0);
            example.createPdf(RESULT1);
            FillingFormClass class1 = new FillingFormClass();
            class1.manipulatePdf(RESULT1, RESULT2,empName,listOfItem);
    public class CreatingFormClass implements PdfPCellEvent {
        protected int tf;
        public CreatingFormClass(int tf) {
            this.tf = tf;
        public void createPdf(String filename) throws DocumentException, IOException {
            Document document = new Document();
            PdfWriter.getInstance(document, new FileOutputStream(filename));
            document.open();
            PdfPCell cell;
            PdfPTable table = new PdfPTable(2);
            table.setWidths(new int[]{1, 2});
            table.addCell("Name:");
            cell = new PdfPCell();
            cell.setCellEvent(new CreatingFormClass(1));
            table.addCell(cell);
            table.addCell("Item List:");
            cell = new PdfPCell();
            cell.setCellEvent(new CreatingFormClass(2));
            cell.setFixedHeight(60);
            table.addCell(cell);
            document.add(table);
            document.close();
        public void cellLayout(PdfPCell cell, Rectangle rectangle, PdfContentByte[] canvases) {
            PdfWriter writer = canvases[0].getPdfWriter();
            TextField text = new TextField(writer, rectangle, String.format("text_%s", tf));
            text.setBackgroundColor(new GrayColor(0.95f));
            switch (tf) {
                case 1:
                    text.setText("Enter your name here...");
                    text.setFontSize(8);
                    text.setAlignment(Element.ALIGN_CENTER);
                    break;
                case 2:
                    text.setFontSize(8);
                    text.setText("Enter Your Address");
                    text.setOptions(TextField.MULTILINE);
                    break;
            try {
                PdfFormField field = text.getTextField();
                writer.addAnnotation(field);
            } catch (IOException ioe) {
                throw new ExceptionConverter(ioe);
            } catch (DocumentException de) {
                throw new ExceptionConverter(de);
    public class FillingFormClass {
        public void manipulatePdf(String src, String dest,String empName,String listOfItem) throws IOException, DocumentException {
            PdfReader reader = new PdfReader(src);
            PdfStamper stamper = new PdfStamper(reader, new FileOutputStream(String.format(dest, empName)));
            AcroFields form = stamper.getAcroFields();
            form.setField("text_1", empName);
            form.setField("text_2", listOfItem);
            stamper.close();
            reader.close();

    Hi,
    I am facing the same problem. Please help me out. I just want to read a PDF file as bytes from one location and write it as another pdf file in some other location with a diolog box prompting to open or save in the location where we want.
    I executed the following code:
    try{
    File report =new File(location);
    BufferedInputStream in=new BufferedInputStream(new FileInputStream(report));
    response.setContentType("application/x-download");
    response.setHeader("Content-Disposition", "attachment; filename=" + report.getName());
    OutputStream outs = response.getOutputStream();
    int readlen;
    byte buffer[] = new byte[ 256 ];
    while( (readlen = in.read( buffer )) != -1 )
    outs.write( buffer, 0, readlen );
    outs.flush();
    outs.close();
    in.close();
    response.setStatus(HttpServletResponse.SC_OK);
    } catch (FileNotFoundException fileNotFoundException) {
    PrintWriter out= response.getWriter();
    out.print("<center><Font color = 'RED'><b>"+PxDSLUtils.getApplicationProperty("label.error.CTM_E017")+"</b></Font></center>");
    Though it prompts with open, save dialog box when i try to open directly or when i save it some where locally and then open it i am getting the following message " File is repaired ot damaged.Operation failed." Any idea about what can be done??? Its very urgent.Please suggest.
    I am not convetin to string just reading and writng as bytes itself.
    Thanks in advance,
    Mani

  • ReplyTo header field from Java JMS read by C JMS API causes core dump...

    Hi,

    First step is to add the option -Xcheck:jni to your java command line. It will flag common JNI errors.
    If that doesn't identify the problem, then compile your jni code with debugging symbols (-g) and add the following option to the java command line when you run your test: -XX:+ShowMessageBoxOnError. When you hit the problem again, the VM will keep the process alive instead of calling abort(). Then you can use dbx to attach to the live process and should be able to get a better idea of what went wrong.

  • Where is documentation about Adobe Reader web-browser plugin API?

    When Adobe Reader is chosen as plugin to open PDF's inside a web-browser it reacts to some javascript commands in the web page that hosts the <object> tag like "goToPage" or similar. I would like to know which other javascript commands (and events: something like "onPageChanged", for example) are available. Where can I find documentation?
    Thanks

    Microsoft hasn't updated its Windows Media Player plugin for Firefox for a while, so 3-year-old documentation may be current. I recommend using MSDN as a resource, and particularly articles indicating which features work in Firefox.
    You also can work out development issues on a forum more focused on that, the unofficial [http://forums.mozillazine.org/viewforum.php?f=25 mozillaZine Web Development board]. It's a separate site (with separate registration).

  • Problems reading cell value : POI APIs

    Hi,
    Im using HSSF to read data from excel file.
    However, in one of the cells the value is shown as : '7/1/2011'
    But when I read it from the code I get the value as : 39263
    Formula bar of this cell reads as : '='C:\Projects\Prj\New Folder\[ABC_V4.xls]Inputs'!B4'
    Since I did not have this referenced excel file, I used the methods :
    cell.getStringCellValue();and
    cell.getNumericCellValue();1st method returns empty string in this case, and second method returns 39263.
    Can someone tell me the way to retreive the displayed value. i.e. '7/1/2011', without using cell.evaluate(), as this is not working for me.
    Thanks,
    Geeta

    use getDateCellValue() to get the java Date value and format it yourself.

  • Adobe Reader 9.3 for Linux: Segmentation Fault in PPKLite.api

    Adobe Reader 9.3 cannot open signed pdf files on our system (64-bit Fedora 10 Linux, with 32-bit compatibility libraries installed). It crashes with a segmentation fault any time one tries to open the following file:
    http://www.utoronto.ca/ic/software/forms/matlab_concurrent_renewal2010.pdf
    Running with ACRODEBUG=1 and ACRO_CRASHLOG=1 results in a zero-length crash log file and the only debug messages shown are
    Loading PlugIn /opt/Adobe/Reader9/Reader/intellinux/plug_ins/Annots.api ... [dlopen success for Annots.api, handle = 0xc4548f8]
    Loading PlugIn /opt/Adobe/Reader9/Reader/intellinux/plug_ins/AcroForm.api ... [dlopen success for AcroForm.api, handle = 0xd0c3a50]
    Loading PlugIn /opt/Adobe/Reader9/Reader/intellinux/plug_ins/DigSig.api ... [dlopen success for DigSig.api, handle = 0xd0dcc68]
    Loading PlugIn /opt/Adobe/Reader9/Reader/intellinux/plug_ins/EScript.api ... [dlopen success for EScript.api, handle = 0xd126ac8]
    Loading PlugIn /opt/Adobe/Reader9/Reader/intellinux/plug_ins/PPKLite.api ... [dlopen success for PPKLite.api, handle = 0xd7b1ff0]
    If I run the gdb debugger on /opt/Adobe/Reader9/Reader/intellinux/bin/acroread, it shows the segmentation fault occurring inside /opt/Adobe/Reader9/Reader/intellinux/plug_ins/PPKLite.api (but since the file is stripped, all it shows is the binary offset of the segfault). I do have a coredump, though.
    If I remove the PPKLite.api file (or rename it to PPKLite.api.hide -- note that chmod -x does not work, nor does renaming it to something else that still ends in .api, unlike some workarounds I've seen on the web for similar problems in earlier versions of Adobe Reader), then Adobe Reader can open the file without crashing, except that without PPKLite it cannot validate its signature and so it displays the message "This document enabled extended features in Adobe Reader. The document has been changed since it was created and use of extended features is no longer available. Please contact the author for the original version of this document" -- which I assume is because the signature validation failed due to the absence of PPKLite so it things the document has been altered even though it hasn't been.
    So this removing or renaming of PPKLite.api works around the problem of the crash, at the expense of getting this misleading warning message.
    However, obviously there is a problem inside PPKLite.api that needs to be fixed....

    I'm seeing what must be the same issue: acroread foo.pdf exits almost instantly without any message, but with status 1.
    This is: AdobeReader_enu-9.3.1-1.i486 on a Fedora 12 box,  AMD Phenom II 945.
    If I set ACRODEBUG=1 and ACRO_CRASHLOG=1 and ulimit -c unlimited, and rename PPKLite.api,  *then* I get a nonzero crashlog. Which is:
    /usr/bin/acroread [0x84ff125] [@0x8048000]
    (__kernel_sigreturn+0x0) [0xf7786400] [@0xf7786000]
    /opt/Adobe/Reader9/Reader/intellinux/plug_ins/AcroForm.api [0xf44dc99b] [@0xf3b6d000]
    /opt/Adobe/Reader9/Reader/intellinux/plug_ins/AcroForm.api [0xf41e1cf5] [@0xf3b6d000]
    /opt/Adobe/Reader9/Reader/intellinux/plug_ins/AcroForm.api [0xf41e436d] [@0xf3b6d000]
    /opt/Adobe/Reader9/Reader/intellinux/plug_ins/AcroForm.api [0xf41e57a3] [@0xf3b6d000]
    /opt/Adobe/Reader9/Reader/intellinux/plug_ins/AcroForm.api [0xf41f81b2] [@0xf3b6d000]
    /opt/Adobe/Reader9/Reader/intellinux/plug_ins/AcroForm.api [0xf41d4863] [@0xf3b6d000]
    /opt/Adobe/Reader9/Reader/intellinux/plug_ins/AcroForm.api [0xf3c44111] [@0xf3b6d000]
    /opt/Adobe/Reader9/Reader/intellinux/plug_ins/AcroForm.api [0xf3c47268] [@0xf3b6d000]
    /opt/Adobe/Reader9/Reader/intellinux/plug_ins/AcroForm.api [0xf3f7446a] [@0xf3b6d000]
    /opt/Adobe/Reader9/Reader/intellinux/plug_ins/AcroForm.api [0xf3f74e6d] [@0xf3b6d000]
    /usr/bin/acroread [0x892da33] [@0x8048000]
    /usr/bin/acroread [0x873dee9] [@0x8048000]
    /usr/bin/acroread [0x8741530] [@0x8048000]
    /opt/Adobe/Reader9/Reader/intellinux/plug_ins/DigSig.api [0xf361fd53] [@0xf35f5000]
    /opt/Adobe/Reader9/Reader/intellinux/plug_ins/DigSig.api [0xf3628217] [@0xf35f5000]
    /opt/Adobe/Reader9/Reader/intellinux/plug_ins/DigSig.api [0xf36e3f01] [@0xf35f5000]
    /opt/Adobe/Reader9/Reader/intellinux/plug_ins/DigSig.api [0xf36e3f9e] [@0xf35f5000]
    /usr/bin/acroread [0x892f7e7] [@0x8048000]
    /usr/bin/acroread [0x8744a50] [@0x8048000]
    /usr/bin/acroread [0x825bdec] [@0x8048000]
    /usr/bin/acroread [0x826bb11] [@0x8048000]
    /usr/bin/acroread [0x826bd32] [@0x8048000]
    /opt/Adobe/Reader9/Reader/intellinux/plug_ins/Annots.api [0xf4ca1b4a] [@0xf4ba9000]
    /opt/Adobe/Reader9/Reader/intellinux/plug_ins/Annots.api [0xf4ca1bec] [@0xf4ba9000]
    /usr/bin/acroread [0x826c1c4] [@0x8048000]
    /usr/bin/acroread [0x826d0bb] [@0x8048000]
    /usr/bin/acroread [0x850193f] [@0x8048000]
    /usr/bin/acroread [0x85024d2] [@0x8048000]
    /usr/bin/acroread(main+0x87) [0x856686d] [@0x8048000]
    /lib/libc.so.6(__libc_start_main+0xe6) [0x5ddbb6] [@0x5c7000]
    Without renaming the .api, all I got was five 'dlopen success' messages, and "Segmentation fault (core dumped)", but a zero length log.
    Don

  • Reading Java API's

    I was wonderng -- I have Java on my iMac. I don't know, though, how to read or locate the API's for the language, if they're on my computer at all. Can anyone help me? And does anybody know if there are any sites/pages that can tell me how to understand them? I mean to say that when I was reading them on my PC, I couldn't make sense of them -- there were so many words/definitions that I was unfamiliar with

    In Xcode. Launch Help->Documentation. There are several Java API references you can download.
    Eric

  • Message - There was a problem reading this document (57)

    Anyone else have this problem?
    Purchased version of Windows 32 bit version of Acrobat XI update will not install properly or work.
    First error info message is as per title after initial red screen which only appears once.
    Second error info message is verify operation failed.
    2 downloads, 3 installs and 2 repairs produce same result.
    Adobe Australia called three times on 1800614863 but only automated selections 322323 made and transfer promised.
    First call at 0901 local time.
    All calls placed on hold first two timed out.
    31 minutes into third call got an answer from a man in India.
    In answer to my question:
    Are you receiving reports of problems installing purchased upgrade versions of Acrobat XI Pro?
    The answer was No.
    He took details of messages and offered to help but I declined.
    I have purchased and used all Acrobat Pro upgrades since 6.
    Complete installation attempted.
    Being done on a clean install of Windows XP SP3 on an OQO02 with only other program installed Office 2007 SBE.
    Message was edited by: OQOroger to reflect inability to connect  to seller Adobe Australia. Also Adobe site can't stay on Australia but reverts to USA. Full price of $A282 paid. USA purchasers only pay $US199 ($A191.57 at present exchange rates.) Credit card account already debited for purchase made yesterday. Subject line corrected 'as' changed to 'was'.
    Message was edited by: OQOroger Corrected the price paid and currency conversion amount to show extra paid by Australians for 'local' support (from India). Added 'Message -' to title to make it less cryptic.
    Message was edited by: OQOroger  Typical setup installation results in same problems except
    'There was a problem reading this document (57)'
    window does not appear.
    First window displaying and asking for acceptance of license conditions has no bottom section when first displayed so there is no way to accept these conditions except to close this window (confirm window appears) and launch program again when bottom panel is displayed.

    Despite my advice of some of the many faults I have experienced with Acrobat XI Pro, Adobe support has never asked me to provide a 'Systems Report' which is available under the 'Help' tab.
    This report indicates:
    'Installed Acrobat: C:\Program Files\Adobe\Acrobat 11.0\Acrobat\Acrobat.exe
        Version: 11.0.0.379
        Creation Date: 2012/09/23
        Creation Time: 8:43:44 PM'
    So if anyone has a working version other than 379 please let me know.
    Complete 'Systems Report' is in a window named 'System Information' as is set ot below.
    From first window
    Adobe Acrobat Pro
    menu
    Help/Online Support/Generate System Report
    returns window
    System Information
    with 2 parts
    'System Parameters' and 'Installed Plug-ins'
    first part details:
    System Parameters
    Account Detail:
       User Rights: Admin
       User Account Control: Undefined
       Process Integrity: Undefined
       Profile Type: None
    Acrobat Detail:
       Sandboxing: Off
       Captive Reader: No
       Multi-Reader on Desktop Support: Off
    Available Physical Memory: 530036 KB
    Available Virtual Memory: 1993360 KB
    BIOS Version: OQO    - fe60019
    Default Browser:
    Default Mail: Microsoft Office Outlook
        mapi32.dll
        Version: 1.0.2536.0 (XPClient.010817-1148)
    Display Detail:
       Screen Width: 800
       Screen Height: 480
       Number of Monitors: 1
       Number of Mouse Buttons: 8
       Has Mouse Wheel: Yes
       Has Pen Windows: No
       Double Byte Character Set: No
       Has Input Method Editor: Yes
       Inside Screen Reader: No
    Graphics Card: VIA/S3G UniChrome Pro II IGP
        Version: 6.14.10.385
        Check: Not Supported
    Installed Acrobat: C:\Program Files\Adobe\Acrobat 11.0\Acrobat\Acrobat.exe
        Version: 11.0.0.379
        Creation Date: 2012/09/23
        Creation Time: 8:43:44 PM
    Locale: English (Australia)
    Monitor:
        Name: VIA/S3G UniChrome Pro II IGP
        Resolution: 800 x 480 x 60
        Bits per pixel: 32
    OS Manufacturer: Microsoft Corporation
    OS Name: Microsoft Windows XP Professional
    OS Version: 5.1.2600  Service Pack 3
    Page File Space: 2203236 KB
    Processor: x86 Family 6 Model 10 Stepping 9  CentaurHauls  ~1496  Mhz
    Session Detail:
       Boot Type: Normal
       Is Shutting Down: No
       Network: Available
       Inside Citrix: No
       Inside VMWare: No
       Remote Session: No
       Remote Control: No
    System Name: YOUR-1561454D88
    Temporary Directory: C:\DOCUME~1\OQOuser\LOCALS~1\Temp\
    Time Zone: Pacific Standard Time
    Total Physical Memory: 911792 KB
    Total Virtual Memory: 2097024 KB
    User Name: OQOuser
    Windows Detail:
       Tablet PC: No
       Starter Edition: No
       Media Center Edition: No
       Slow Machine: No
    Windows Directory: C:\WINDOWS
    Installed Plug-ins
    C:\Program Files\Adobe\Acrobat 11.0\Acrobat\plug_ins\Accessibility.api
        Version: 11.0.0.379
        Creation Date: 2012/09/23
        Creation Time: 8:43:52 PM
    C:\Program Files\Adobe\Acrobat 11.0\Acrobat\plug_ins\AcroForm.api
        Version: 11.0.0.379
        Creation Date: 2012/09/23
        Creation Time: 8:43:54 PM
    C:\Program Files\Adobe\Acrobat 11.0\Acrobat\plug_ins\Annots.api
        Version: 11.0.0.379
        Creation Date: 2012/09/23
        Creation Time: 8:43:54 PM
    C:\Program Files\Adobe\Acrobat 11.0\Acrobat\plug_ins\DigSig.api
        Version: 11.0.0.379
        Creation Date: 2012/09/23
        Creation Time: 8:43:54 PM
    C:\Program Files\Adobe\Acrobat 11.0\Acrobat\plug_ins\EScript.api
        Version: 11.0.0.379
        Creation Date: 2012/09/23
        Creation Time: 8:43:52 PM
    C:\Program Files\Adobe\Acrobat 11.0\Acrobat\plug_ins\IA32.api
        Version: 11.0.0.379
        Creation Date: 2012/09/23
        Creation Time: 8:43:52 PM
    C:\Program Files\Adobe\Acrobat 11.0\Acrobat\plug_ins\PPKLite.api
        Version: 11.0.0.379
        Creation Date: 2012/09/23
        Creation Time: 8:43:54 PM
    C:\Program Files\Adobe\Acrobat 11.0\Acrobat\plug_ins\SendMail.api
        Version: 11.0.0.379
        Creation Date: 2012/09/23
        Creation Time: 8:43:54 PM
    C:\Program Files\Adobe\Acrobat 11.0\Acrobat\plug_ins\Updater.api
        Version: 11.0.0.379
        Creation Date: 2012/09/23
        Creation Time: 8:43:54 PM
    I can easily see 2 matters which an inexperienced support desk staff member could home in on.
    Acrobat XI Pro system requirements include
    1024x768 screen resolution and
    Internet Explorer 7, 8, 9, or 10; Firefox Extended Support Release; Chrome
    Well my OQO report above includes
    Display Detail:
       Screen Width: 800
       Screen Height: 480
    and leaves blank
    Default Browser:
    (actually Firefox 17.0.1)
    Yet 'Firefox Extended Support Release' is described by
    Mozilla:
    'Who is it not for?
    Individual users who always want the latest features, performance enhancements and technologies in their browser without waiting for them to become available in ESR several development cycles later.'
    http://www.mozilla.org/en-US/firefox/organizations/
    Since starting this post, I loaded Adobe Acrobat XI Pro on another similar computer I own and use regularly. This was in a dock and connected to an external display. Same problems and reports experienced.
    'Systems Report' for this installation follows:
    Account Detail:
       User Rights: Admin
       User Account Control: Undefined
       Process Integrity: Undefined
       Profile Type: None
    Acrobat Detail:
       Sandboxing: Off
       Captive Reader: No
       Multi-Reader on Desktop Support: Off
    Available Physical Memory: 614280 KB
    Available Virtual Memory: 1988144 KB
    BIOS Version: OQO    - fe60019
    Default Browser:
    Default Mail: Outlook Express
        %ProgramFiles%\Outlook Express\msoe.dll
        Version:
    Display Detail:
       Screen Width: 1280
       Screen Height: 1024
       Number of Monitors: 1
       Number of Mouse Buttons: 8
       Has Mouse Wheel: Yes
       Has Pen Windows: No
       Double Byte Character Set: No
       Has Input Method Editor: Yes
       Inside Screen Reader: No
    Graphics Card: VIA/S3G UniChrome Pro II IGP
        Version: 6.14.10.358
        Check: Not Supported
    Installed Acrobat: C:\Program Files\Adobe\Acrobat 11.0\Acrobat\Acrobat.exe
        Version: 11.0.0.379
        Creation Date: 2012/09/23
        Creation Time: 20:43:44
    Installed Acrobat: C:\Program Files\Adobe\Reader 10.0\Reader\AcroRd32.exe
        Version: 10.1.3.23
        Creation Date: 2012/04/04
        Creation Time: 16:53:54
    Locale: English (United Kingdom)
    Monitor:
        Name: VIA/S3G UniChrome Pro II IGP
        Resolution: 1280 x 1024 x 60
        Bits per pixel: 32
    OS Manufacturer: Microsoft Corporation
    OS Name: Microsoft Windows XP Professional
    OS Version: 5.1.2600  Service Pack 3
    Page File Space: 2006176 KB
    Processor: x86 Family 6 Model 13 Stepping 0  CentaurHauls  ~1496  Mhz
    Session Detail:
       Boot Type: Normal
       Is Shutting Down: No
       Network: Available
       Inside Citrix: No
       Inside VMWare: No
       Remote Session: No
       Remote Control: No
    System Name: OKETT143
    Temporary Directory: C:\DOCUME~1\oqo\LOCALS~1\Temp\
    Time Zone: AUS Eastern Standard Time
    Total Physical Memory: 911792 KB
    Total Virtual Memory: 2097024 KB
    User Name: oqo
    Windows Detail:
       Tablet PC: No
       Starter Edition: No
       Media Center Edition: No
       Slow Machine: No
    Windows Directory: C:\WINDOWS
    C:\Program Files\Adobe\Acrobat 11.0\Acrobat\plug_ins\Accessibility.api
        Version: 11.0.0.379
        Creation Date: 2012/09/23
        Creation Time: 20:43:52
    C:\Program Files\Adobe\Acrobat 11.0\Acrobat\plug_ins\Updater.api
        Version: 11.0.0.379
        Creation Date: 2012/09/23
        Creation Time: 20:43:54
    (I did not bother installing plug-ins and deactivated installation before removal of program.)
    With 5 installs producing the same error reports, I am convinced Acrobat XI Pro won't work for me on my computers and have little confidence of useful support from Adobe.
    THERE ARE SO MANY GLARING PROBLEMS WITH MY INSTALLATIONS WITH THE SUPPORT DESK'S RESPOSES UNHELPFUL AND UNINFORMED. I REALLY DON'T ENJOY DOING ADOBE'S QUALITY CONTROL FOR THEM FOR FREE, BUT I CONTINUE TO POST HERE IN THE HOPE THAT SOMEONE WITH REAL AUTHORITY WILL EVENTUALLY TAKE NOTICE AND ARANGE A FIX OF THE PROBLEMS.
    15 Dec 2012 1409 local time.
    Further feedback provided that 1Ghz memory preferred. Problem not addressed. Reply
    Notes from Customer
    Friday, December 14, 2012 7:07:57 PM PST
    System reports at #12 on http://forums.adobe.com/message/4862987#4862987 
    Alert- although ordered in Australia from Australian site and paid in Australian dollars by MasterCard, Adobe chose without warning to process this payment through an overseas account incurring an extra foreign transaction charge for me.
    Adobe support to date has been of no use and their billing practices unreasonably expensive.

  • PDF not attaching to Outlook using Adobe Reader

    When clicking the Mail icon on the tool bar in adobe reader to attach the PDF to an email, adobe reader freezes and the document does not attach. It does work if Outlook 2013 is closed but if Outlook 2013 is open adobe reader just freezes for a minute with nothing happening. I tried turning off protected mode on startup and disabling all outlook addins. This problem started a couple of weeks ago, I tried a system restore but no joy.
    Any help would be greatly appreciated.
    Thanks

    I found the fix! It was a problem with sendmail.api, I fixed it by doing the following:-
    Repair the SendMail plugin:
    Browse to "C:\Program Files\Adobe\Reader 11.0\Reader\plug_ins" and rename SendMail.API to OLD_ SendMail.API.
    Then from Add/Remove programs run a Reader repair.

Maybe you are looking for