How to show a 3D PDF in a

Hi,
I am working with a modeling application that can produce 3D PDF files.  What I need now is a browser plugin that will enable users to see the PDF contents within a browser frame - either an image control similar to an IMG tag, or an I-Frame.
Also, if you have any examples on how the html would look, that would be very nice.  Thanks.

Sorry for my english and this post. I have a question.. is possible to return a value of tree from pdf to browser that open the pdf file ?
Thank's

Similar Messages

  • APEX 3.1.2: How to show a jpeg/pdf inside a geotag from a GIS app?

    I am developing a small Oracle Maps Application for my diploma thesis at my university. I've found the "Hands-on Lab: Developing an interactive mapping application for your Oracle database using Oracle Maps" held in October 2006 in San Francisco and I am trying to get used to this kind of applications.
    I am using Oracle EE 10g, SOA Suite 10.1.3.1 (OC4J + HTTP Server), MapViewer 10.1.3.1, APEX 3.1.2.
    Everything works fine until I want to click and see a geotag. For some unknown reason the jpeg/pdf (blob content) is not appearing. Instead I can see one of those broken small icons. When I tried to click the link to see the pdf the following message appeared:
    "Forbidden
    You don't have permission to access /pls/apex/MVDEMO.download_file on this server."
    I have granted the execute on the download procedure to public and also to apex_public_user. (I thought just in case...)
    I imagine there might be some changes in the new APEX 3.1.2 version that caused this break down? The lab was developed for an older version of Apex.
    Could you please advice me what am I doing wrong and/or how can I fix it? I would deeply appreciate your input.
    Thanks in advance,
    Roxana
    Edited by: Foxana on 23.06.2009 15:32

    Ok, so I've found the following note on Metalink: 783646.1 HTTP-403 Forbidden Error While Trying To Access The DB Procedure From The URL, that should solve my problem, if I only managed to modify the wwv_flow_epg_include_local.sql function. I opened it in Wordpad, modified it and tried to overwrite it and save it and then it says "Access to ...\core\wwv_flow_epg_include_local.sql was denied."
    Does anyone know how to solve this? Pleeaseeeee! :D
    Regards,
    Roxana

  • How to show pdf or word icons for a BLOB column in a report?

    Hi,
    I am getting interested for the blob columns, I have created some columns for storing some pdf drawings and pictures for specific items in a table, it is ok to show a text like 'download' or any other text in the report by setting the following blob attribute:
    DOWNLOAD:TICKET_DETAILS:ATTACHMENT:TICKET_DETAILS_ID::MIME_TYPE:FILE_NAME:::inline:Download
    but instead of texts, I would like to show a small pdf image for my Blob file, or a word image or Excel image, according to the different file type.
    how to do that?
    and instead of inline or attachment this two options, I would like when the user click the image of the file, the browser will show the image in a new window, or a new browser tab.
    I tried the inline option for my file at Google Chrome, but when it showed the pdf file within the browser, I cannot get back to my app by clicking the 'backward' icon at the browser menu, it will stuck there and I have to close the broswer and then login to the app again, instead of simply returning back to the previous page within the app.
    Please help me out.
    Thanks
    Peter Yawei . Zhang

    Please try using a query like below for your report.
    SELECT ticket_details_id,
    CASE
       WHEN NVL(dbms_lob.getlength(attachment),0) = 0 THEN NULL
       ELSE
          CASE
             WHEN mime_type LIKE 'image%'
                THEN '<a href="'||apex_util.get_blob_file_src('P101_ATTACHMENT',ticket_details_id)||'" target="_blank"><img src="/i/image_icon.gif" /></a>'
             WHEN mime_type = 'application/pdf'
                THEN '<a href="'||apex_util.get_blob_file_src('P101_ATTACHMENT',ticket_details_id)||'" target="_blank"><img src="#IMAGE_PREFIX#menu/pdf_32.gif" /></a>'
             WHEN mime_type like '%ms-excel%'
                THEN '<a href="'||apex_util.get_blob_file_src('P101_ATTACHMENT',ticket_details_id)||'" target="_blank"><img src="/i/excel_icon.gif" /></a>'
             WHEN mime_type like '%msword%'
                THEN '<a href="'||apex_util.get_blob_file_src('P101_ATTACHMENT',ticket_details_id)||'" target="_blank"><img src="/i/word_icon.gif" /></a>'
             WHEN mime_type like '%ms-powerpoint%'
                THEN '<a href="'||apex_util.get_blob_file_src('P101_ATTACHMENT',ticket_details_id)||'" target="_blank"><img src="/i/powerpoint_icon.gif" /></a>'
             ELSE '<a href="'||apex_util.get_blob_file_src('P101_ATTACHMENT',ticket_details_id)||'" target="_blank"><img src="/i/office_icon.gif" /></a>'
          END
    END attachment
    FROM ticket_details
    WHERE ticket_details_id = :P102_TICKET_DETAILS_IDPlease note that I am using APEX_UTIL.GET_BLOB_FILE_SRC function to download the BLOB files. The first parameter of this function in my example query is P101_ATTACHMENT, which refers to page item of type "File Browse" on page 101, which is a DML form on table TICKET_DETAILS. Replace it with the appropriate page number. Please refer to "Working With BLOBs Procedurally" section of this APEX 3.2 documentation for more: [url http://download.oracle.com/docs/cd/E14373_01/appdev.32/e11838/advnc.htm#sthref2199]http://download.oracle.com/docs/cd/E14373_01/appdev.32/e11838/advnc.htm#sthref2199
    Also I have the gif images representing various MIME types on my file server. For e.g., /i/excel_icon.gif. You can use #WORKSPACE_IMAGES# if you want to.

  • How to show custom header in pdf generated from report

    Hi,
    I  have created a report that is used to display Leave record of employees in an organization. After which it creates a pdf file and send it to respective HOD.
    In this case I am trimming generated output and sendinf only required fields to the pdf.
    When pdf is getting generated it shows program name as Title of that report.
    I want to change this header to my own header along with some variable but not sure how I can do so.
    I have also tried TOP-OF_PAGE but problem in this case is that I am still getting program name along with it.
    To generate pdf I have used function :
      call function 'CONVERT_ABAPSPOOLJOB_2_PDF'
        exporting
          src_spoolid   = spoolid
          no_dialog     = ' '
        importing
          pdf_bytecount = l_no_of_bytes
          pdf_spoolid   = l_pdf_spoolid
          btc_jobname   = l_jobname
          btc_jobcount  = l_jobcount
        tables
          pdf           = l_pdfdata.
    Then I had converted this pdf to Binary
    call function 'QCE1_CONVERT'
        tables
          t_source_tab         = l_pdfdata
          t_target_tab         = lit_record
        exceptions
          convert_not_possible = 1
          others               = 2.
    Then I had created subject matter and used FM : SO_NEW_DOCUMENT_ATT_SEND_API1: to send mail to respective HODs.
    I tried dubbing it but couldn't get any variable which is holding program name.
    Sorry for putting in wrong forum.
    so Closing it from this forum and raising the same in ABAp-General forum.
    How to change header of pdf in generated report
    Edited by: gaur.yagyesh on Apr 16, 2010 4:03 PM

    To make it more clear to my question.
    I am using sun one webserver 6.0 sp6.
    I need to enable custom header on the webserver so that any request having a custom http header coming to webserver should be captured by the webserver.
    Thanks,

  • How do I get the PDF icon to show on all of my PDF files?

    how do I get the PDF icon to show on all of my PDF?

    Generally the icons are a selection that is set in MS Explorer (on the PC). Depending on the version of windows, there are various ways of getting at the properties related to an icon, including what application would open the file.

  • How do I get a PDF document put into an attachment form that I can drag to an e-mail.  Usually I get an icon showing an spiral note book which then becomes an attachment when I drag it to the e-mail, but occasionally it stays in PDF and prints out on the

    How do I get a PDF document put into an attachment form that I can drag to an e-mail.  Usually I get an icon showing an spiral note book which then becomes an attachment when I drag it to the e-mail, but occasionally it stays in PDF and prints out on the e-mail.  What have I done differently?

    Thanks again for the detailed instructions Srini!
    And I really hate to be a pest . . . but . . .
    Using your example and not modifying it, I get the e-mail form filled out correctly and the pdf attached, however, I'm not prompted to sign it.
    Any more clues?

  • How to show PDFs from a shared library?

    Hi,
    is it possible to share also PDFs from another library?
    I am sharing my library from my own itunes account. It also contains PDFs and the whole library is shared. On the account of my wife my shared library shows up with all the music etc. However, it does not show the PDFs. Is this feature only available for eboks bought from the itunes store? How can I share my PDFs with iTunes?
    Thanks in advance for any help on this!
    Filip

    This DLL is not a standard Windows DLL but a .Net Assembly. You need to use the .Net operators in LabVIEW to access it. Put the DLL in your LabVIEW project directory, drop a .Net contstructor node onto your diagram and then in the dialog that opens select the Browse button and point it to your DLL.
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions

  • Base64 to pdf. After conversion - how to show pdf file ?

    Hello all,
    I have to show and save a pdf file from internal table ion base64 format.
    I mean that I receive an internal table with data in base64 that represent a pdf file. I have
    to convert it into pdf file than show and save the file.
    I maked a conversion by:
      CALL METHOD utility->decode_base64
        EXPORTING
          encoded = encoded
        RECEIVING
          decoded = decoded.
    and, now my question is :
    What I have to do about the string decoded ? I have to append it somewhere ?
    and, how to create a pdf file from decoded string ?
    tks a lot.

    How to show PDF using SAPGui
    Please check my reply in the following thread

  • How do I get Adobe PDF to show up as a printer option for Illustrator?

    How do I get Adobe PDF to show up as a printer option for Illustrator?

    It is usually at the bottom of your printers list. Do you see it on Control Panel/Hardware and Sound/Devices and Printers/Printers?

  • Ok so i dowloaded the pdf editor and only amall screen shows up and i log in but it doesnt let me do anything other that stare at it ... how can i edit a pdf?

    ok so i dowloaded the pdf editor and only amall screen shows up and i log in but it doesnt let me do anything other that stare at it ... how can i edit a pdf?

    Word processor like "editing" is not tolerated by PDF (the file format/technology discussed and described by the ISO Standard for PDF, ISO 32000-1).  Minor touchups are tolerated. The textual characters have to be renderable text (a scanner's output image of text is a picture of text not "real" text).
    Open the PDF with Acrobat XI.
    Click-path:
    Tools - Content Editing - Edit Text & Images
    Be well...

  • How to show the pdf file into the UIWebView from iphone documents directory?

    Hi ,
         I am working on web services right now I am getting string into base64 format. After decoding that string into NSData i am saving that data as a pdf into Document directory of iphone. Now the problem is that when I want to show the pdf into UIwebView then it is showing blank page. But when I am checking into /Users/pareshkarnawat/Library/Application Support/iPhone Simulator/4.3.2/Applications/ the pdf file is correctly generated and working fine when I ope it.
       How to show that pdf file into UIwebview ? or is there any alernative for this.
    Any ideas on how I can go about this? I have looked at a few posts and still can't seem to figure it out.
    Any idea's appreciated, thanks

    The result is a UIWebView that displays a blank page. No errors occur in the UIWebView delegate method. The thing is that data has the correct length, in bytes, for the PDF I am trying to display, and I also get the pdf file in Library/Application Support/iPhone Simulator/4.3.2/Applications/ Does anyone have an idea as to what might be going wrong here or how I can better debug this problem?

  • How do i synch my pdf/books to my library. I was able to synch my ipod touch purchases by transferring them but can't figure out how to do my pdfs. Also why is my ipod picture greyed out-the one that lets my move the icons around.

    How do i synch my pdf/books to my Itunes  library. I was able to synch my ipod touch app purchases by transferring them but can't figure out how to do my pdfs. Also why is my ipod picture greyed out-the one that lets my move the icons around.
    I am afraid if i don't get the pdfs into my book library, i will lose them when i update to IOS 5-is that true?

    thank you-i have to check into the authorization and the account-i gave my husband my old ipod when i updated last year so both at one time have been on this computer but as it stands, it only comes up with my device when i plug into Itunes.
    i don't think i have any restrictions for installing apps although my normal way of doing it is to download from the ipod touch. i did find that all i had to do was right click on my device name and got the message to transfer my apps and then they showed up in my library. Also when i clicked the synch checkbox i was able to view the ipod touch picture without it being greyed out. after all that i was able toupdate to IOS 5 successfully except my videos and podcast, and pdfs  did not come over. This confuses me since i had dragged them over to my library to make sure that i had everything in my library and on my device. Not a big problem, since i just dragged them in itunes from my library to my device but sometimes i wonder if i understand the big picture:)

  • How do I transfer a pdf to my iPad?

    I am running iOS 8.1.2 and in my iMac I have iTunes version 12.0.1 and iBooks 1.1.1 (on my mac)
    I have searched and searched for RECENT information on this topic. None of what I have found so far works.
    I have a .pdf in iBooks on my iMac - I want it on my iPad Air 2.
    I am logged into my iCloud account (the same one) on both devices.
    The support article on this topic says to email the .pdf file to myself and then I can transfer (share) it with iBooks. But when I did that (click on the .pdf attachment in email on my iPad) it takes me to Safari and just seems to lock up. It looks like it has sent me an iCloud link to the .pdf file (it says Attachment available until Feb 28th).
    In the version of iTunes I have 'books' are no longer available - only audio books.
    I can't believe this is so difficult! I used to love my Apple products/devices because they just worked together. But right now I'm not so sure.
    Does anyone have any ideas on how I can get this .pdf file onto my iPad?
    Thanks,
    Tori

    PDFs are not stored in the cloud, so it won't show in the cloud for downloading in iBooks on your iPad. You should be able to sync it to your iPad via your computer's iTunes - connect the iPad to your computer, select its icon towards the top left of your computer's iTunes, and use its Books tab (the tab should show the books and PDFs that you have in the iBooks app on your Mac for selecting and syncing) :
    For the email option, you've attached the PDF to an email on your Mac, not a URL link to the PDF (which would cause Safari to open) ? If it is a PDF then when you press and hold on a PDF attachment then after a couple of seconds or so you should get an popup with a series of options, one being 'open in iBooks'

  • How can I display a PDF file in an html file?

    When a user opens a specific page I want to be able to show them the PDF of the form they need to print out.
    If this was an image 9such as JPEG) then there would be no problem, but a PDF is causing me to wrack my brain.
    I know how to pen the PDF in a new window, but I want the menu I created to be at the top.
    You can see the site here: <http://www.peterforkes.com/NevadaWomensCare/index.html>
    If you click on the Doctors menu and select, say Dr. Robert A. Gatlin you will see that I have an area where I can display information, on the left side of the page.
    But, I want this page <http://www.peterforkes.com/NevadaWomensCare/UsefulForms/NewPatientRegistrationForm.pdf> to show in the contents area, with the menus along the top.
    How do I achieve this?

    There is no advantage in embedding printer-friendly PDF pages into HTML.  One is a print document.  The other is a web page.  Best to keep them separate.
    And for reasons you may not have considered, site visitors might not have the appropriate plug-ins necessary to view PDF in browsers.  If you link directly to the file, your site visitors can download it and open it in Acrobat or some other PDF Reader.
    If you want to treat PDF like an image you can convert it to jpg.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb

  • How to transfer iBooks books & PDFs from old iPad to new iPad?

    (Well, it seems my title got truncated; originally it read: How to transfer iBooks books & PDFs from old iPad to new iPad?)
    I've recently gotten an iPad Air to replace my previous iPad 2. I have a bunch of books and PDFs in iBooks on the old iPad, and want to transfer them to the new iPad.
    A search of Apple Support informs me that anything I've purchased from iBooks can be downloaded at any time to any of my devices (works like Amazon's Kindle system, apparently), but nearly all the content I have in iBooks on the iPad I've downloaded from other sources, so it won't be in my iBooks Store account (I might have bought one book there).
    I've also seen several instructions on how to copy all my data from the old iPad to the new via Backup & Restore, but that seems to require restoring the new iPad to factory setup, which would delete everything I have on it now – including a bunch more books I've gotten since I started using the new iPad. And I don't want to copy everything, only the books/PDFs (the new iPad has everything I want, except for the books).
    Since there seems to be no way to transfer files directly from one iPad to the other, it seems it must be done via iTunes on my MacBook Pro (and I want to copy all the books/PDFs to the computer anyway). So I connected the iPad 2 to my MacBook Pro (OS X 10.9.4) and opened iTunes (11.3.1). Then clicked on the iPad's name in the sidebar to the left, and on Books below it. I see a list of the books on the iPad. I check the little boxes by all their names to select them (not sure if that's necessary, but it seems like a good idea), then click on the Sync button at the lower right, to the right of the bar at the bottom of the window with colored bands showing memory usage on the iPad. A message appears saying "The app 'iBooks' was not installed on the iPad '[name]' because the app could not be found."
    But iBooks is already on the iPad; I have it open and see the list of books in it, which matches the list shown in iTunes. The message has a "More Information" button; I click that and it opens an Apple Support article titled "iOS: An app you installed unexpectedly quits, stops responding, or won’t open": "Learn what to do if you see one of these issues with an app you downloaded from the App Store on your iPhone, iPad, or iPod touch: The app unexpectedly quits; The app stops responding; You can’t open the app." But none of these apply; the iBooks app is on the iPad, and works fine there.
    The article suggests: (1) Restart the App. I've done that, no help. (2) Restart your device. Done that, no help. (3) Update your device software and your apps. The iPad is running iOS 6.1.3, iBooks 3.1.3; not the latest versions, no, but I'd rather not update it to newer, bigger, more power-hungry versions if I don't have to. Is it that iTunes 11 doesn't work with iOS 6? I haven't seen this stated anywhere.
    So instead I click the OK button on the message, but nothing further happens, so far as I can tell: None of the books/PDFs on the iPad (about 380MB) appear in iBooks on the MacBook Pro.
    I click on "Books" in the row of words across the top of the iTunes window, and it shows me the single PDF presently in iBooks on the MacBook Pro. I click the box by "Sync Books", and a message appears: "Are you sure you want to remove existing music, movies, TV shows, books, and tones from this iPad and sync with this iTunes library?" Well, no, that's exactly what I DON'T want to do. I don't want to erase the 380MB of books and PDFs on the iPad and replace them with the single PDF now in iBooks on the MacBook Pro. I want to copy the books from the iPad 2 to iTunes, so I can copy them back to the new iPad Air (if, God willing, I can figure out how to do that without erasing the books now on the iPad Air).
    I've been working with Macintosh computers for over 26 years. It's always been a fairly simple process to copy files from one computer to another. I don't want to "sync" all the data (address book, email, God knows what else) on the iPad with the corresponding information on the MacBook Pro – especially if that will erase everything on the iPad (which has information not on the MacBook Pro, e.g. 380MB of books). I just want to copy the books and PDFs in iBooks from the old iPad to the MacBook Pro, then to the new iPad, adding them to the books on the new iPad, so I don't lose anything.
    Can anybody give me a clue?

    How to Transfer Everything from an Old iPad to New iPad
    http://osxdaily.com/2012/03/16/transfer-old-ipad-to-new-ipad/
    iOS: Transferring information from your current iPhone, iPad, or iPod touch to a new device
    http://support.apple.com/kb/HT2109
    Moving Content to a New iPad
    http://tinyurl.com/qzk2a26
    How to Transfer App Data and Game Saves from One iOS Device to Another
    http://lifehacker.com/5891964/can-i-transfer-app-data-and-game-saves-from-my-iph one-to-a-new-ipad
    How to transfer data from your old iPad to your new iPad
    http://www.imore.com/how-transfer-data-your-old-ipad-your-new-ipad-air-or-retina -ipad-mini
    Transferring your prepaid cellular data account depends on your carrier. AT&T lets you move it yourself when you go to Cellular Data in Settings and log into your account with your previous AT&T user name and password. For iPads with Sprint service, you can set up an account on the new iPad and contact Sprint Customer Care (888-211-4727 and go through the menus) to deactivate the old plan and get credit for unused service. For Verizon, call the company’s customer service number for mobile broadband support (800-786-8419) and ask to have your account transferred.
     Cheers, Tom

Maybe you are looking for

  • MAPI issue between Outlook 2007 and third party software

    Hi. I have third party software, which open new mail message by MAPI and fill recipients address, subject, mail body and attachment. On several computers it is work fine, but at one it is not filling recipients address (just this one specific field,

  • CS2 runs Sluggish/screen refreshes quite a bit...

    I have a strange problem with Photoshop CS2. It is running real sluggish and non-responsive. Then, with seemingly no warning, it picks up again, until you select a tool, or move an image onto your document. The screen seems to "Refresh" quite a bit t

  • Please provide me the details

    Hi all, Looking for the Best Training Institute for Oracle HRMS (Functional) in Hyderabad Could any provide me the details Best Regards

  • Very Urgent in installing your Evaluation CD

    i hava evaluation CD Version 7.0 for weblogic platform.When i start server i got Licence Excetion pls help me immediately

  • Go_item problem

    Hi, I have two different modules. One is customer module and other one is main menu module. Now when I click on customer button in main menu module the customer form comes up, but the cursor does not go to customerID, which is should when i do go_ite