Show PDF in C# application

Hi,
I am using Acrobat Reader 10.1.0 which provide annotation facility. And I want to show PDF file in my C# application. For this I use Web Explorer object and it shows PDF file successfully.
But on Web Explorer, it shows the PDF file in read only mode. So could not use annotation facility.
I want to show PDF file in my C# application so that user can use annotation facility. I try to explore COM component provided by Acrobat Reader, but it doesn't work.
So please provide me the solution for this.
Regards
Pushkar

Thanks for your link.
PDF is shown successfully on C# application, but I can't use annotation facility. As annotation is disabled when PDF opened in C#.NET application.
I want to show PDF file in my C# application so that I can use annotation facility within the application.
For your reference attached images:
1. Open PDF file in C#.NET application:
2. Open PDF File in Acrobat Reader:
Thanks

Similar Messages

  • Hello! I have the Acrobat XI test version installed, got the registration Mail and confirmed it. When i have the program opened and try to convert the file from a pdf to a word and press the convert button, it shows a the message "application failed" (in

    Hello! I have the Acrobat XI test version installed, got the registration Mail and confirmed it. When i have the program opened and try to convert the file from a pdf to a word and press the convert button, it shows a the message "application failed" (in german "Fehler bei der Anmeldung"). I hope have explained the issue on the right way with my bad english. Do you have a solution for it?? Best regards, Marcus Wenk

    yes, you are right. it is the adobe reader via exportPDF. but it should be the acrobat. it was written on the internetpage...

  • How to load and show PDF on stage in Flash using AlivePDF or PurePDF external libraries?

    Hello,
    I searched a lot on internet but didn't find a proper way to load and open/show PDF on stage in Flash. Following are my understandings about this topic.
    I know Flash does not have the built-in functionality to load and show pdf document on stage.
    I know you can do this in AIR application using HTMLLoader class but it required adove reader to be installed on your machine.
    I have used AlivePDF/PurePDF and I know how to export/generate a PDF File using these libraries but I don't know how to use them to load and show PDF document on stage in Flash. According to my research, I think these libraries can accomplish my task but how, I don't know. That's because I am here for your help.
    People suggest to first convert pdf into an image or swf file and then import it into Flash but I don't want this solution because my clients will be importing/uplading PDF file into my software.
    Some people suggest to "Convert PDF renderer code written in C/C++ using Alchemy to flash library" and then use that library to my project. I don't have any idea how to do this. If anyone can help me to achieve required functionality this way, please guide me.
    Now you know about my understandings, so you can guide me in better way. Let me give you an example what kind of functionality I want. Please visit: https://www.pdffiller.com. Upload a pdf file there and you will see that it shows that pdf to user (At the moment, I want this functionality) and pdf annotation i.e. write text on pdf and other functionalities.
    NOTE: I am not a Flex and AIR developer. I am a Flash (Actionscript 3.0) Developer. So please first help according to flash. If you want to offer the solution according to Flex and AIR, you are most welcome.
    I specially want "ADOBE EXPERTS - Adobe Flash developer from Adobe" to comment on this and help me out. It's about 4th day I am without a solution. I am afraid, I'll loose my client if I'll not have a solution in next couple of days.
    Thanks,
    momersaleem
    eLearning Specialist

    Just to throw in a $0.02, I looked at those libraries myself quite a while ago and all they had the ability to do was give you information and assets from the PDF. At that point you literally had to read each page in the PDF (whatever the library could extract), use the information it extracted (position, type size, images, etc) and create a layout engine that could "reconstruct" the page piece by piece.
    I hope it's better these days but that's what I took from those libraries quite a while ago and it may still be true. That would explain "Convert PDF renderer code written in c/c++ using Alchemy to flash library". Someone may already have written a quality layout engine. Otherwise there was no "load pdf, run this ShowPDF() function to add to display list" functionality at all.

  • Showing pdf in Fire fox giving problem

    Hi every body ,
    I have a problem related to PDF showing in the browser , It is working fine in the IE , but in the FF it is not showing .
    Here is my Backing bean code for fetching the PDF .
    The main backing bean name is myBean.
      public void showPDF() throws IOException  
              BufferedInputStream input = null; 
              BufferedOutputStream output = null; 
              InputStream inputStream =null;  
              FacesContext facesContext = FacesContext.getCurrentInstance(); 
              ExternalContext externalContext = facesContext.getExternalContext(); 
              HttpServletResponse response = (HttpServletResponse) externalContext.getResponse(); 
             try  
             //It is a simple POJO , it will return the pdf content 
                     PDF  pdf =  new PDF(); 
                 inputStream = pdf.getPDFContent(); 
                 input = new BufferedInputStream(inputStream, DEFAULT_BUFFER_SIZE); 
                 response.reset(); 
                 response.setContentType("application/pdf"); 
                 response.setHeader("Content-disposition", "inline; filename=\"" + pdf.getFileName() + "\""); 
                 output = new BufferedOutputStream(response.getOutputStream(), DEFAULT_BUFFER_SIZE); 
                 byte[] buffer = new byte[DEFAULT_BUFFER_SIZE]; 
                 int length; 
                 while ((length = input.read(buffer)) > 0)  
                     output.write(buffer, 0, length); 
                 output.flush(); 
             }catch(Exception ex) 
                 ex.printStackTrace(); 
             finally { 
                output.close();  
                input.close();  
              facesContext.responseComplete(); 
         }  Here is my view JSF
    <h:commandLink  value="Show PDF" action="#{myBean.showPDF}" target="_blank" />  Thanks & regards,
    S

    The problem is
    ul.MenuBarHorizontal li
        margin: 0;
        padding: 0;
        list-style-type: none;
        font-size: 100%;
        position: relative;
        text-align: left;
        cursor: pointer;
        width: 7em;
       float: right;
    Change the value back to left.
    The menu bar will now left align itself. To fix that we will go to the container, give it a width and float it to the right as follows.
    ul.MenuBarHorizontal
        margin: 0;
        padding: 0;
        list-style-type: none;
        font-size: 100%;
        cursor: default;
        width: 42em;
        float: right;
    Gramps

  • Show PDF document in Browser (Internet Explorer)

    Hi
    I need to show a PDF document in Internet Explorer.
    We have some static PDF documents in the application. Depending on user selection we determine the name of the PDF document and somehow we have to display in Browser.
    Refer below code, steps and problem.
    Step 1) I convert the PDF document to ByteArrayOutputStream using below code in a Java class and store this stream to a session variable.
    File pdfFile = new File("c:\\temp.pdf");
    byte[] data = new byte[(int) pdfFile.length()];
    ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();
    FileInputStream fileInputStream = new FileInputStream(pdfFile);
    int count = 0;
    while (fileInputStream.read(data) != -1)
    byteArrayOutputStream.write(data, 0, count);
    Step 2) After this the control is transferred to a servlet. It retrieves the stream from session variable and does following (Servelt is called such that it should open new browser window. This is OK.)
    response.setHeader( "Content-disposition", "inline; filename = avb.pdf");
    response.setContentType("application/pdf");
    response.setBufferSize(byteArrayOutputStream.size());
    response.setContentLength(byteArrayOutputStream.size());
    try
         byteArrayOutputStream.writeTo(response.getOutputStream());
         response.flushBuffer();
    catch (IOException e)
         //Handle execption               
    PROBLEM: It asks to save pdf document. But after saving I am not able to open document. It shows messge that the document is not of PDF type. But it is actually a PDF so my guess is that something is wrong in above code snippets.
    Please help.
    Thanks.

    FileInputStream fileInputStream = new FileInputStream(pdfFile);
    int count = 0;
    while (fileInputStream.read(data) != -1)
        byteArrayOutputStream.write(data, 0, count);
    }Poor unloved count variable.

  • Show pdf with wpg_docload

    I am trying to:
    Call a procedure in the db from Forms (904) through web.show_document, using a DAD, which will save a pdf-report (904) in a blob and after that show it in the new window. I get the pdf-report from a url to the report servers cache.
    The report is saved in the table but when I try to call wpg_docload to show it I get a message from acrobat reader saying that the document doesn't begin with %PDF- but when I store the same pdf-report locally, I can see the %PDF- in the beginning of the file.
    This is what my procedure looks like:
    procedure blob_ex(p_url) is
    v_buffer raw(2000);
    v_buffer_size integer := 2000;
    v_offset integer := 1;
    v_length number;
    v_pieces utl_http.html_pieces;
    v_blob blob;
    v_url varchar2(2000);
    begin
    v_blob := empty_blob();
    dbms_lob.createtemporary(v_blob,true);
    v_pieces := utl_http.request_pieces(p_url,64000);
    for i in 1 .. v_pieces.count loop
    v_buffer := utl_raw.cast_to_raw(v_pieces(i));
    v_buffer_size := utl_raw.length(v_buffer);
    dbms_lob.writeappend(v_blob, v_buffer_size, v_buffer);
    end loop;
    insert into
    blobtable(id, report_file) values
    (seqence.nextval
    ,v_blob);
    commit;
    owa_util.mime_header('application/pdf', FALSE);
    owa_util.http_header_close;
    wpg_docload.download_file(v_blob);
    end;
    Does anyone have a solution on this problem, or can anyone see what I am doing wrong?

    hi
    i want javascript code, which show pdf with bookmark on ios(ipad).
    i am developing a native app in ios with objective c. In my app i need read & show PDF with bookmark.
    So if any javascript availble to read and show, please let me know.
    Thanks in advance for your help.

  • Retrieving PDF form from Application server

    hi all,
    i am saving a pdf form in application server and when the user wants the same file then i want to retrive that file from application and show the user and it should not be saved to presentation server only he should see it.
    iam able to save it to presentation layer using gui_download but my requirement is not to save it show only display the form.
    Thanks in advance,
    Sree
    helpful answers will be surely rewarded points

    Hi,
    1st solution - use DOI (desktop office integration). This way you can open Adobe, Microsoft, and others application documents directly in the SAP windows. See SAP document how to do it. It's not a little work, but it should fulfill your requirements.
    2nd solution - share the folder with the PDF documents and then with shell command (start
    server\folder\xxxxxx.pdf) at the front end access it and start the associated application at the frontend. I don't recommend this one, sharing folders at the appl.server is a security threat...
    You know about the points and useful answers...

  • Opening pdf's in applications from safari - ipad

    When opening a pdf in an application from safari (i.e. pdf expert, goodreader) the pdf name does not show correctly.  Is there a way to properly create the pdf or open it differently to keep the name in the application?
    Thank you,
    Tom

    Hi Gerard
    You'll need to use at least Adobe Reader 8.1 with Safari 3, otherwise, Safari crashes. To install Reader 8.1.3, go here. At the site, click on the drop down selection menu and choose "Power PC 10.4.3 - 10.4.10". Otherwise, Adobe points you to Reader 9 instead of 8.
    Before installing Reader 8, go to your HD>Library>Internet Plug-ins folder and move to the trash the existing Adobe PDF plug-in. This way, you're ensured of a clean install of version 8.
    After the install, and prior to opening Safari, I suggest you go to your Applications>Utilities folder, open Disk Utility, highlight your HD and select "repair permissions".
    Post back and let us know if that stops the crashes.

  • Installed the Java patch for MAC yesterday and immediately could not get adobe reader to show pdf files...have troubleshot and can't seem to remedy ...ideas?

    I have used the Firefox troubleshooting guides, no good. The Java patch is enabled and shows when I check applications. However when I run Firefox plugins it still shows the java plug in is outdated and need to be updated immediately.

    OK, I went to the Firefox knowledge base article you cited and followed the directions with the exception that in the drop down menu I choose Adobe Reader for PDF files rather than the plug in default that apparently was set by the Java patch. Problem solved !!!!!!! Thank you so much for taking the time to get me back to the basic place I needed to be to correct this issue. YOU ROCK!!!!

  • Quicklook doesn't show PDF files

    OSX 10.10.2
    Quicklook does not show PDF files and Preview doesn't open PDF files. When I select file => open, all PDF files are grey and cannot be selected. In Finder I select a PDF file and press CMD-i. In the information window I select open with Preview, but nothing will changed. PDF files can only be opened with Adobe Acrobat. When I drop a PDF file from finder to safari, the PDF file will be visible in safari. When I select "open in preview" in safari, preview doesn't show the pdf file. I can see an error in the console "CoreSercviceUIAgent Error -60005 creating authorization". qlmanage -r and qlmanage -r chase doesn't help.
    qlmanage -p *.pdf
    2015-04-29 01:02:15.609 qlmanage[11077:2675779] *** CFMessagePort: bootstrap_register(): failed 1100 (0x44c) 'Permission denied', port = 0xab43, name = 'com.apple.tsm.portname'
    See /usr/include/servers/bootstrap_defs.h for the error codes.
    2015-04-29 01:02:15.612 qlmanage[11077:2675779] *** CFMessagePort: bootstrap_register(): failed 1100 (0x44c) 'Permission denied', port = 0x4517, name = 'com.apple.CFPasteboardClient'
    See /usr/include/servers/bootstrap_defs.h for the error codes.
    2015-04-29 01:02:15.612 qlmanage[11077:2675779] Failed to allocate communication port for com.apple.CFPasteboardClient; this is likely due to sandbox restrictions
    2015-04-29 01:02:15.618 qlmanage[11077:2675779] *** CFMessagePort: bootstrap_register(): failed 1100 (0x44c) 'Permission denied', port = 0x8f2f, name = 'com.apple.coredrag'
    See /usr/include/servers/bootstrap_defs.h for the error codes.
    qlmanage -t *.pdf
    2015-04-29 01:03:27.386 qlmanage[11085:2681809] *** CFMessagePort: bootstrap_register(): failed 1100 (0x44c) 'Permission denied', port = 0x9057, name = 'com.apple.tsm.portname'
    See /usr/include/servers/bootstrap_defs.h for the error codes.
    2015-04-29 01:03:27.388 qlmanage[11085:2681809] *** CFMessagePort: bootstrap_register(): failed 1100 (0x44c) 'Permission denied', port = 0x4437, name = 'com.apple.CFPasteboardClient'
    See /usr/include/servers/bootstrap_defs.h for the error codes.
    2015-04-29 01:03:27.389 qlmanage[11085:2681809] Failed to allocate communication port for com.apple.CFPasteboardClient; this is likely due to sandbox restrictions

    Problem description:
    QuickLook and Preview doesn’t show PDF files
    EtreCheck version: 2.2 (132)
    Report generated 4/29/15, 10:30 PM
    Download EtreCheck from http://etresoft.com/etrecheck
    Click the [Click for support] links for help with non-Apple products.
    Click the [Click for details] links for more information about that line.
    Hardware Information: ℹ️
        MacBook Pro Intel Core i7, 15" (Early 2011)
        MacBook Pro - model: MacBookPro8,2
        1 2.3 GHz Intel Core i7 CPU: 4-core
        16 GB RAM Upgradeable
            BANK 0/DIMM0
                8 GB DDR3 1600 MHz ok
            BANK 1/DIMM0
                8 GB DDR3 1600 MHz ok
        Bluetooth: Old - Handoff/Airdrop2 not supported
        Wireless:  en1: 802.11 a/b/g/n
        Battery: Health = Normal - Cycle count = 481 - SN = D86106429R7DGDLAX
    Video Information: ℹ️
        Intel HD Graphics 3000 - VRAM: 512 MB
        AMD Radeon HD 6750M - VRAM: 1024 MB
            Color LCD 1680 x 1050
            PL2779Q 2560 x 1440 @ 59 Hz
    System Software: ℹ️
        OS X 10.10.2 (14C1514) - Time since boot: 3:12:3
    Disk Information: ℹ️
        ST2000LM003 HN-M201RAD disk1 : (2 TB)
            EFI (disk1s1) <not mounted> : 210 MB
            Macintosh HD (disk1s2) /Volumes/Macintosh HD : 2.00 TB (951.82 GB free)
        Samsung SSD 840 PRO Series disk0 : (512,11 GB)
            EFI (disk0s1) <not mounted> : 210 MB
            Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
            Macintosh SSD (disk2) / : 510.88 GB (222.02 GB free)
                Core Storage: disk0s2 511.25 GB Online
    USB Information: ℹ️
        Apple Inc. FaceTime HD Camera (Built-in)
        Apple Inc. Apple Internal Keyboard / Trackpad
        Apple Inc. BRCM2070 Hub
            Apple Inc. Bluetooth USB Host Controller
        Apple Computer, Inc. IR Receiver
        Apple, Inc. Keyboard Hub
            Apple, Inc Apple Keyboard
        Burr-Brown from TI Elgato Thunderbolt 2 Dock Audio
    Thunderbolt Information: ℹ️
        Apple Inc. thunderbolt_bus
            Elgato Systems Thunderbolt 2 Dock
    Configuration files: ℹ️
        /etc/hosts - Count: 1
    Gatekeeper: ℹ️
        Mac App Store and identified developers
    Kernel Extensions: ℹ️
            /Applications/Karabiner.app
        [loaded]    org.pqrs.driver.Karabiner (10.6.0 - SDK 10.10) [Click for support]
            /Applications/MacX Video Converter Pro.app
        [not loaded]    com.macxdvd.driver.goodSysAudioCapture (1 - SDK 10.10) [Click for support]
            /Applications/Parallels Access.app
        [loaded]    com.parallels.virtualsound (1.0.27 27 - SDK 10.6) [Click for support]
            /Applications/Parallels Desktop.app
        [not loaded]    com.parallels.kext.hypervisor (10.2.0 28956 - SDK 10.7) [Click for support]
        [not loaded]    com.parallels.kext.netbridge (10.2.0 28956 - SDK 10.7) [Click for support]
        [not loaded]    com.parallels.kext.usbconnect (10.2.0 28956 - SDK 10.7) [Click for support]
        [not loaded]    com.parallels.kext.vnic (10.2.0 28956 - SDK 10.7) [Click for support]
            /Applications/Splashtop Streamer.app
        [not loaded]    com.splashtop.driver.SRXDisplayCard (1.6 - SDK 10.7) [Click for support]
        [not loaded]    com.splashtop.driver.SRXFrameBufferConnector (1.6 - SDK 10.7) [Click for support]
            /Applications/Toast 11 Titanium/Roxio Crunch.app
        [not loaded]    com.roxio.TDIXController (1.6) [Click for support]
            /Applications/Utilities/DiskWarrior.app
        [not loaded]    com.alsoft.Preview (4.2) [Click for support]
            /Library/Extensions
        [not loaded]    com.Elgato.Thunderbolt2DockChargingSupport (1.0.0 - SDK 10.10) [Click for support]
        [not loaded]    com.Elgato.ThunderboltDockChargingSupport (1.0.0 - SDK 10.10) [Click for support]
        [loaded]    com.avatron.AVExFramebuffer (3.0.1 - SDK 10.10) [Click for support]
        [loaded]    com.avatron.AVExVideo (3.0.1 - SDK 10.10) [Click for support]
        [not loaded]    com.elgato.ElgatoThunderboltDockAudioRename (1.0.2 - SDK 10.10) [Click for support]
            /System/Library/Extensions
        [not loaded]    com.3dconnexion.driver (1.6.3) [Click for support]
        [not loaded]    com.AmbrosiaSW.AudioSupport (4.1.2 - SDK 10.6) [Click for support]
        [loaded]    com.Cycling74.driver.Soundflower (1.6.6 - SDK 10.6) [Click for support]
        [not loaded]    com.elgato.driver.DontMatchAfaTech (1.1) [Click for support]
        [not loaded]    com.elgato.driver.DontMatchCinergy450 (1.1) [Click for support]
        [not loaded]    com.elgato.driver.DontMatchCinergyXS (1.1) [Click for support]
        [not loaded]    com.elgato.driver.DontMatchEmpia (1.1) [Click for support]
        [not loaded]    com.elgato.driver.DontMatchVoyager (1.1) [Click for support]
        [not loaded]    com.hzsystems.driver.CDSDAudioCaptureSupport (1.5) [Click for support]
        [loaded]    com.hzsystems.terminus.driver (4) [Click for support]
        [not loaded]    com.iomega.filesystems.udf (2.5) [Click for support]
        [not loaded]    com.iomega.iokit.IomegaREV (2.5) [Click for support]
        [not loaded]    com.logitech.manager.kernel.driver (2.00 - SDK 10.6) [Click for support]
        [loaded]    com.markspace.driver.Android.RNDIS (1.2) [Click for support]
        [not loaded]    com.roxio.BluRaySupport (1.1.6) [Click for support]
        [not loaded]    com.sony.driver.sxsexpressdrivers (1.0.2d006 - SDK 10.6) [Click for support]
        [not loaded]    com.sony.driver.sxsus10drivers (1.0.2d006 - SDK 10.6) [Click for support]
        [not loaded]    com.sony.filesystems.sxsudf_fs (1.0.2d006 - SDK 10.6) [Click for support]
    Launch Agents: ℹ️
        [not loaded]    com.adobe.AAM.Updater-1.0.plist [Click for support]
        [running]    com.adobe.AdobeCreativeCloud.plist [Click for support]
        [failed]    com.adobe.ARMDCHelper.cc24aef4a1b90ed56a...plist [Click for support]
        [running]    com.babylon.activation.plist [Click for support]
        [running]    com.brother.LOGINserver.plist [Click for support]
        [loaded]    com.divx.dms.agent.plist [Click for support]
        [loaded]    com.divx.update.agent.plist [Click for support]
        [loaded]    com.google.keystone.agent.plist [Click for support]
        [running]    com.logitech.manager.daemon.plist [Click for support]
        [failed]    com.micromat.TechToolProAgent.plist [Click for support] [Click for details]
        [unknown]    com.oracle.java.Java-Updater.plist [Click for support]
        [loaded]    com.parallels.mobile.prl_deskctl_agent.launchagent.plist [Click for support]
        [not loaded]    com.splashtop.streamer-for-root.plist [Click for support]
        [loaded]    com.splashtop.streamer-for-user.plist [Click for support]
        [not loaded]    com.teamviewer.teamviewer.plist [Click for support]
        [not loaded]    com.teamviewer.teamviewer_desktop.plist [Click for support]
        [loaded]    com.xamarin.mtvs.buildserver.plist [Click for support]
        [loaded]    org.gpgtools.gpgmail.enable-bundles.plist [Click for support]
        [loaded]    org.gpgtools.gpgmail.patch-uuid-user.plist [Click for support]
        [loaded]    org.gpgtools.gpgmail.updater.plist [Click for support]
        [running]    org.gpgtools.Libmacgpg.xpc.plist [Click for support]
        [loaded]    org.gpgtools.macgpg2.fix.plist [Click for support]
        [running]    org.gpgtools.macgpg2.shutdown-gpg-agent.plist [Click for support]
        [loaded]    org.gpgtools.macgpg2.updater.plist [Click for support]
        [loaded]    org.macosforge.xquartz.startx.plist [Click for support]
    Launch Daemons: ℹ️
        [running]    com.adobe.adobeupdatedaemon.plist [Click for support]
        [loaded]    com.adobe.ARMDC.Communicator.plist [Click for support]
        [loaded]    com.adobe.ARMDC.SMJobBlessHelper.plist [Click for support]
        [loaded]    com.adobe.fpsaud.plist [Click for support]
        [loaded]    com.ambrosiasw.ambrosiaaudiosupporthelper.daemon.plist [Click for support]
        [loaded]    com.bombich.ccc.plist [Click for support]
        [loaded]    com.bresink.system.securityagent3.plist [Click for support]
        [running]    com.elgato.EyeConnect.plist [Click for support]
        [failed]    com.filemaker.fms.plist [Click for support]
        [loaded]    com.google.keystone.daemon.plist [Click for support]
        [failed]    com.micromat.TechToolProDaemon.plist [Click for support] [Click for details]
        [unknown]    com.oracle.java.Helper-Tool.plist [Click for support]
        [running]    com.paradigmasoft.vserver_x64.plist [Click for support]
        [running]    com.parallels.mobile.dispatcher.launchdaemon.plist [Click for support]
        [loaded]    com.parallels.mobile.kextloader.launchdaemon.plist [Click for support]
        [loaded]    com.rogueamoeba.instanton-agent.plist [Click for support]
        [running]    com.sec.faxdb.plist [Click for support]
        [running]    com.splashtop.streamer-daemon.plist [Click for support]
        [loaded]    com.splashtop.streamer-srioframebuffer.plist [Click for support]
        [not loaded]    com.teamviewer.teamviewer_service.plist [Click for support]
        [loaded]    com.timesoftware.timemachineeditor.backupd-auto.plist [Click for support]
        [loaded]    com.wuala.WualaFS.KextLoaderHelper.plist [Click for support]
        [loaded]    de.meilenstein.MSTFirstRunInstaller.plist [Click for support]
        [loaded]    de.meilenstein.MSTHostPreferences.plist [Click for support]
        [loaded]    org.cindori.AuthHelper.plist [Click for support]
        [loaded]    org.cindori.TEAuth.plist [Click for support]
        [loaded]    org.gpgtools.gpgmail.patch-uuid.plist [Click for support]
        [loaded]    org.macosforge.xquartz.privileged_startx.plist [Click for support]
        [unknown]    org.virtualbox.startup.plist [Click for support]
    User Launch Agents: ℹ️
        [loaded]    com.adobe.AAM.Updater-1.0.plist [Click for support]
        [loaded]    com.adobe.ARM.[...].plist [Click for support]
        [failed]    com.amazon.cloud-player.plist [Click for support] [Click for details]
        [running]    com.amazon.music.plist [Click for support]
        [loaded]    com.citrixonline.GoToMeeting.G2MUpdate.plist [Click for support]
        [failed]    com.smithmicro.cleaning.schedulermailer.plist [Click for support] [Click for details]
        [loaded]    com.splashtop.streamer-for-user.plist [Click for support]
        [failed]    com.vladalexa.MagicPrefs.plist [Click for support] [Click for details]
        [not loaded]    org.virtualbox.vboxwebsrv.plist [Click for support]
        [running]    ws.agile.1PasswordAgent.plist [Click for support]
    User Login Items: ℹ️
        NeoFinder Global QuickFind    Programm  (/Applications/NeoFinder.app/Contents/Resources/NeoFinder Global QuickFind.app)
        FontExplorerXAutoload    Programm Hidden (/Volumes/Macintosh HD/Users/[redacted]/Library/Application Support/Linotype/FontExplorer X/FontExplorerXAutoload.app)
        iTunesHelper    Programm Hidden (/Applications/iTunes.app/Contents/MacOS/iTunesHelper.app)
        lingvod    Programm  (/Applications/ABBYY Lingvo.app/Contents/Resources/lingvod.app)
        Air Display Host    Programm  (/Applications/Air Display Host.app)
        FavoriteApps    Programm  (/Applications/FavoriteApps.app)
        Dropbox    Programm  (/Applications/Dropbox.app)
        Rogue Amoeba Schedule Helper    Programm Hidden (/Library/Application Support/Audio Hijack Pro/Rogue Amoeba Schedule Helper.app)
        Wondershare Helper Compact    Programm  (/Volumes/Macintosh HD/Users/[redacted]/Library/Application Support/Helper/Wondershare Helper Compact.app)
        Elgato Thunderbolt Dock Dienstprogramm    Programm  (/Applications/Elgato Thunderbolt Dock Utility.app)
        AdobeResourceSynchronizer    Programm Hidden (/Applications/Adobe Acrobat DC/Adobe Acrobat.app/Contents/Helpers/AdobeResourceSynchronizer.app)
        PowerboxInjector    Programm  (/Applications/PowerboxInjector.app)
        Karabiner    Programm  (/Applications/Karabiner.app)
        MEGAsync    Programm  (/Applications/MEGAsync.app)
    Internet Plug-ins: ℹ️
        OVSHelper: Version: 1.1 [Click for support]
        Default Browser: Version: 600 - SDK 10.10
        Flip4Mac WMV Plugin: Version: 3.0.0.85 BETA  - SDK 10.7 [Click for support]
        Google Earth Web Plug-in: Version: 6.0 [Click for support]
        Silverlight: Version: 4.0.60531.0 [Click for support]
        FlashPlayer-10.6: Version: 17.0.0.169 - SDK 10.6 [Click for support]
        DivX Web Player: Version: 3.2.4.1250 - SDK 10.6 [Click for support]
        AmazonMP3DownloaderPlugin101749: Version: AmazonMP3DownloaderPlugin 1.0.17 - SDK 10.4 [Click for support]
        Flash Player: Version: 17.0.0.169 - SDK 10.6 [Click for support]
        QuickTime Plugin: Version: 7.7.3
        iPhotoPhotocast: Version: 7.0 - SDK 10.8
        JavaAppletPlugin: Version: 15.0.0 - SDK 10.10 Check version
    User internet Plug-ins: ℹ️
        CitrixOnlineWebDeploymentPlugin: Version: 1.0.105 [Click for support]
        Picasa: Version: 1.0 [Click for support]
    Safari Extensions: ℹ️
        1Password
        AdBlock
        My eBay Manager
        Ultimate Status Bar
        Scroll To Top
    3rd Party Preference Panes: ℹ️
        3Dconnexion  [Click for support]
        ADOView  [Click for support]
        Flash Player  [Click for support]
        Flip4Mac WMV  [Click for support]
        FUSE for OS X (OSXFUSE)  [Click for support]
        GPGPreferences  [Click for support]
        handyPrint  [Click for support]
        Logitech Preference Manager  [Click for support]
        MagicPrefs  [Click for support]
        Perian  [Click for support]
        Tuxera NTFS  [Click for support]
        Valentina Server  [Click for support]
        xGestures  [Click for support]
    Time Machine: ℹ️
        Skip System Files: NO
        Mobile backups: ON
        Auto backup: YES
        Volumes being backed up:
            Macintosh SSD: Disk size: 510.88 GB Disk used: 288.86 GB
        Destinations:
            Data [Network]
            Total size: 3.00 TB
            Total number of backups: 32
            Oldest backup: 2015-01-29 19:13:21 +0000
            Last backup: 2015-04-28 23:34:01 +0000
            Size of backup disk: Excellent
                Backup size 3.00 TB > (Disk size 510.88 GB X 3)
            Backup [Local]
            Total size: 2.00 TB
            Total number of backups: 27
            Oldest backup: 2015-01-31 11:33:00 +0000
            Last backup: 2015-04-12 21:05:25 +0000
            Size of backup disk: Excellent
                Backup size 2.00 TB > (Disk size 510.88 GB X 3)
    Top Processes by CPU: ℹ️
            14%    Adobe CEF Helper
            10%    My Watches.debug
             8%    WindowServer
             8%    backupd
             3%    Creative Cloud
    Top Processes by Memory: ℹ️
        1.34 GB    kernel_task

  • Skipping ucm login form when showing content on webcenter application.

    Hi,
    I have a webcenter portal application., It has a page, which shows pdf from content server in af:inlineFrame. Its appearing fine but system first shows login page of ucm. I want to skip that page and user details of webcenter current session should be used to login to ucm.
    How to achieve it?
    Thanks
    Sanjeev.

    Hi,
    You can try one more thing. The default url you are using to open pdf I guess is in the format - <server name>/cs/idcplg/ . You can try the url like this :
    <server name: port>/webcenter/content/conn/<Content Repository Name>/path/<ucm folder path of the file>/<Original name of the file>.
    Now, the question is how to get the path of the document because you will just have the content id of the document. I have used some of the RIDC apis to get the path of the document:
    /** Get the file path for the given content id
    private String getFilePath(String contentId){
    String path = "";
    try{
    IdcClientManager manager = new IdcClientManager();
    IdcClient idcClient = manager.createClient("<server name>");
    IdcContext userContext = new IdcContext(<username>, <password>);
    //Call IDC Sevice GET_SEARCH_RESULTS to get the Folder Id
    DataBinder binder = idcClient.createBinder();
    binder.putLocal("IdcService", "GET_SEARCH_RESULTS");
    binder.putLocal("QueryText", "dDocName <matches> `" + contentId + "`");
    binder.putLocal("ResultCount", "1");
    ServiceResponse response = idcClient.sendRequest(userContext, binder);
    binder = response.getResponseAsBinder();
    DataResultSet resultSet = binder.getResultSet("SearchResults");
    String folderId = "";
    String docOriginalName = "";
    for (DataObject dataObject : resultSet.getRows()) {
    folderId = dataObject.get("xCollectionID").toString();
    docOriginalName = dataObject.get("dOriginalName").toString();
    //Call IDC Sevice COLLECTION_DISPLAY to get the PATH
    binder.putLocal("IdcService", "COLLECTION_DISPLAY");
    binder.putLocal("dCollectionID", folderId);
    binder.putLocal("hasCollectionID", "true");
    ServiceResponse response1 = idcClient.sendRequest(userContext, binder);
    binder = response1.getResponseAsBinder();
    resultSet = binder.getResultSet("PATH");
    for (DataObject dataObject : resultSet.getRows()) {
    path = path.concat("/" + dataObject.get("dCollectionName").toString());
    path = path.concat("/" + docOriginalName);
    path = "/webcenter/content/conn/<conection repository name>" + path;
    catch(Exception ioe){
    System.out.println("Exception");
    return path;
    }

  • Showing PDF content

    Hi,
    I want to show PDF content which is coming from webservices in my flex application. Please suggest any ideas on how to show it.
    -Thanks
    Vishal Kumar

    Hi,
    #1
    do convertion server-side to format accessible in Flash runtime
    #2
    open new window (new location) in browser so user can see pdf content in separate window via PDF plugin
    #3
    depending on content you could be able to extract it all-client side and show in Flash runtime:
    http://code.google.com/p/purepdf/
    #4
    use air runtime or 3rd party solutions for non-web browser based solutions (so you would be able to embed pdf in your application directly).
    hth,
    regards,
    Peter

  • Safari 5.1.5 shows .pdf web pages as black. The same thing happens with Firefox. Does this have something to do with an AdobePDF plug-in?

    Safari 5.1.5 shows .pdf web pages as black. The same thing happens with Firefox, at least with the few pages I've checked. Does this have something to do with an AdobePDF plug-in? I recently had to restore my system from Time Machine backup.

    The following appears to have I solved my problem with Safari 5.1.5, 5.1.6 and 5.1.7. I also have Adobe Acrobat Pro 9 installed.
    Follow mbuffy's post dated May 10, 2012 directly above, and
    Do NOT allow Adobe Acrobat Pro 9 to perform the "repair" the missing Adobe PDFViewer Plug-in when the window pops up and offers to repair Adobe PDFViewer Safari Plug-in. If Adobe does the "repair," then I can not view .pdf web pages in Safari or Firefox.
    FYI, cmmartin0275 posted the following on Sep 8, 2011 in a discussion of "Missing PDF Pluggin" at https://discussions.apple.com/message/16119130#16119130:
    "Just FYI to anyone with this problem...this is straight from Adobe's website.
    "Adobe Reader plug-in and Acrobat plug-in are not compatible with the Safari 5.1 browser, which will ship with Mac OS X 10.7 and for 10.6 in July. Adobe Reader and Acrobat will continue to work as standalone applications on Mac OS X 10.7 and 10.6, and will render PDF documents outside of the browser. In addition, Safari 5.1 renders PDF documents natively. However, the Adobe Reader and Acrobat plug-ins will not function as expected in LiveCycle and Acrobat workflows that require either plug-in to render PDF documents in Safari 5.1."
    They also go on to say they hope to have a solution or work around before the end of 2011..."
    Thanks for the help.

  • Showing pdf and office files in 5230.

    hi everyone,
    i'm searching to free application(s) that can show pdf and office files. can someone help me? i have 5230.
    thank you.

    @efitac
    As for .pdf you could have a look at AlternateReader here:http://sourceforge.net/projects/alternatedjvu/
    Happy to have helped forum with a Support Ratio = 42.5

  • Read PDF Formatted Spool and write PDF File to Application Server

    Hi Experts,
    After ECC 6.0, HR-W2 and W2C Form Spools are getting generated in PDF format.
    We have a requirement wherein we want to read the PDF Spool Programatically and write the PDF file to Application server (Using OPEN DATASET and CLOSE DATASET)
    PARAMETERS : p_spono LIKE tsp01-rqident.
    DATA: pdf_data type FPCONTENT.
    types: lt_pdf_table(1000) type x.
    data:  l_pdf_data type standard table of lt_pdf_table,
           l_pdf_line type lt_pdf_table,
           l_offset type i,
           l_len type i,
           p_file(100) VALUE '\sapout\DVH\pdf2.pdf'.
    *Read the spool content
    CALL FUNCTION 'FPCOMP_CREATE_PDF_FROM_SPOOL'
        EXPORTING
             i_spoolid = p_spono
             i_partnum = '1'
        IMPORTING
               e_pdf = pdf_data
    *         e_pdf_file = file
        EXCEPTIONS
             ads_error = 1
             usage_error = 2
             system_error = 3
             internal_error = 4
        OTHERS = 5.
    * Modify the spool  contents to prepare internal table
      l_len = xstrlen( pdf_data ).
      while l_len >= 1000.
        l_pdf_line = pdf_data+l_offset(1000).
        append l_pdf_line to l_pdf_data.
        add 1000 to l_offset.
        subtract 1000 from l_len.
      endwhile.
      if l_len > 0.
        l_pdf_line = pdf_data+l_offset(l_len).
        append l_pdf_line to l_pdf_data.
      endif.
    * GUI DOWNLOAD Works Fine
    * Now pdf contents is ready , lets store in local PC
    *CALL FUNCTION 'GUI_DOWNLOAD'
    *  EXPORTING
    *   filename                        = 'C:\Documents and Settings\Desktop\shital.pdf'
    *   filetype                        = 'BIN'
    *  TABLES
    *    data_tab                        = l_pdf_data.
    OPEN DATASET p_file FOR OUTPUT IN BINARY MODE.
    IF sy-subrc <> 0.
      MESSAGE ID '00' TYPE 'E' NUMBER '398' WITH 'sy-subrc:' sy-subrc
              ' Error opening file:'(Z03) p_file.
    ENDIF.
    LOOP AT l_pdf_data INTO l_pdf_line.
      TRANSFER l_pdf_line TO p_file.
    ENDLOOP.
    CLOSE DATASET p_file.
    IF sy-subrc <> 0.
      MESSAGE ID '00' TYPE 'E' NUMBER '398' WITH 'sy-subrc:' sy-subrc
              ' Error closing file:'(Z04) p_file.
    ENDIF.
    Currently as you can see I have commented out GUI_DOWNLOAD Function Module, But it works perfect when I try to Download file to Local Desktop.
    But when I try to pass the same Contents to Application server file and then try to open it by downloading file then it opens BLANK pdf file.
    As per requirements I should be able to write the file correctly on Application server and If I dowload it from there it should open PDF file correctly.
    Let me know if you require further details about the issue.
    Regards
    Shital
    Edited by: shital phadake on Apr 8, 2009 9:39 PM

    Thanks Selçuk for your reply and taking time for understanding the Issue,
    I went thru Functionality of the program you suggested but dont think it matches my requirement.
    Regards
    Shital

Maybe you are looking for

  • I want to see both the ssid in same time

    help in aironet 1200 i hope to help me, i have created two ssid with two vlan's but the broadcast is for one ssid only, i want the broadcasting for all my ssid in same time. where that the one ssid be appeared and other one be a hiden. so how can i d

  • How to recover lost phone contacts after Sync ?

    My Nokia 6230 was full of contacts. My MacBook Pro adress book was empty. After syncing, my phone is empty... I have no backup ! When iSync deletes a contact from the phone, does it store the information somewhere on the mac before ? Is there any cha

  • Text prediction stopped showing up. Still selected in options.

    The little moving ribbon of words to tap and insert disappeared never to return! And I want it back! Thanks!

  • Does CS5 really support OS X 10.5.7?

    I'm trying to install the trial on my 10.5.7 machine with no success. The installer spoofs at around 100% completion, and then I try to launch Ps but it doesn't even show the slpash screen and crashes. Uninstaller doesnt work either, it hangs and cra

  • File names in project panel not updating in timeline...

    Hey guys,      So I cut together a few scenes before I had named all the media in the project bin... But the new names are not reflecting in the timeline... is there someway to make this update and using the new name thats in the project pannel and t