Icons files will not displaying when running web-based forms locally

My icon files (jpgs) are not displaying from within Forms Developer 10g or when I run the web-based forms from within Developer. I have tried the following without success:
6.4 Deploy Icons for Forms Running on Web
Option One: For Running Web Based Forms from Within the Forms Builder in Oracle 10g Developer Suite
1) Copy all the icon image files (*.jpg) to the directory of <Oracle_10g_Developer_Suite_Installation_Root_Dir>\forms\j2ee\formsapp\formsweb\icons
2) Make sure to set imageBase=DocumentBase in the file < Oracle_10g_Developer_Suite_Installation_Root_Dir >\forms\server\formsweb.cfg.
3) Edit the < Oracle_10g_Developer_Suite_Installation_Root_Dir >\forms\java\oracle\forms\registry\Registry.dat file, specify the icon image file extension by modifying the following line:
default.icons.iconepath=icons/
default.icons.iconextension=jpg
Save this Registry.dat file.
4) Restart the OC4J Instance.
5) Launch the form from Forms Builder.
I just got a new laptop and am setting everything up again. I have everything setup the same way as on my old machine (same as above). It worked fine on my old computer but not on the new one.

hi
try to create jar file for u r all jpgs but also u have to check the size of u r images
and if possible try to resave the same images by using Acdsee or use any other image viewer softwares.
hope this helps u...
sarah

Similar Messages

  • Adobe PDF files will not display when called via a link in page (FF 4.01)

    adobe PDF files will not display when called via a link in page.
    This happens when testing new web page from DWeaver CS5 - all other browser tests are OK (IE9, Safari5.05, Chrome etc.)

    [moved to the Adobe Reader (desktop) forum]

  • Included subview not displaying when run, only in editor

    Hallo -- I have a page called home.jsp that contains a subview.
    home.jsp looks like this:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <%@ page language="java" contentType="text/html; charset=iso-8859-1" %>
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
    <f:view>
    <html>
    <head>
      <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
      <title>Untitled Document</title>
    </head>
    <body>
    <h:panelGrid width="100%" columns="1">
         <h:panelGroup>
              <h:outputText value="Hello?"/>
         </h:panelGroup>
         <h:panelGroup>
              <h:panelGrid width="100%" columns="2">
                   <h:panelGroup>
                        <f:subview id="navigationPane">
                             <jsp:include page="subview/navigationPane.jspf" flush="true" />
                        </f:subview>
                   </h:panelGroup>
                   <h:panelGroup>
                        <h:outputText value="Hello-o-o-o...?"/>
                   </h:panelGroup>
              </h:panelGrid>
         </h:panelGroup>
         <h:panelGroup>
              <h:outputText value="Where's my subview?"/>
         </h:panelGroup>
    </h:panelGrid>
    </body>
    </html>
    </f:view>
    [/code:1:ccbd93ceb2]
    And the file in the subview, named [b:ccbd93ceb2]navigationPane.jspf[/b:ccbd93ceb2] in the subfolder [b:ccbd93ceb2]/subview[/b:ccbd93ceb2] looks like this:
    [code:1:ccbd93ceb2]<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
    <h:panelGrid width="20%" columns="1" id="navigationPane">
         <f:facet name="header">
              <h:outputText value="Navigation Pane"/>
         </f:facet>
         <h:panelGroup>
              <h:form>
                   <h:commandLink id="gotoHome" action="gotoHome" immediate="true" style="text-align: center">
                        <h:outputText value="home"/>
                   </h:commandLink>
              </h:form>
         </h:panelGroup>
         <h:panelGroup>
              <h:form>
                   <h:commandLink id="viewByCustomer" action="viewByCustomer" immediate="true" style="text-align: center">
                        <h:outputText value="view by customer"/>
                   </h:commandLink>
              </h:form>
         </h:panelGroup>
         <h:panelGroup>
              <h:form>
                   <h:commandLink id="viewByJob" action="viewByJob" immediate="true" style="text-align: center">
                        <h:outputText value="view by job"/>
                   </h:commandLink>
              </h:form>
         </h:panelGroup>
         <h:panelGroup>
              <h:form id="quickSearchBeanForm">
                   <h:panelGrid columns="3">
                        <h:outputText value="Search By Option:"/>
                        <h:panelGroup>
                             <h:selectOneMenu id="quickSearchBean_searchByOption" value="#{navigationPaneBean.quickSearchBean.searchByOption}">
                                  <f:selectItems value="#{navigationPaneBean.quickSearchBean.searchByOptions}"/>
                             </h:selectOneMenu>
                        </h:panelGroup>
                        <h:message for="quickSearchBean_searchByOption"/>
                        <h:outputText value="Search For:"/>
                        <h:inputText id="quickSearchBean_searchFor" value="#{navigationPaneBean.quickSearchBean.searchFor}"/>
                        <h:message for="quickSearchBean_searchFor"/>
                   </h:panelGrid>
              </h:form>
         </h:panelGroup>
         <h:panelGroup>
              <h:form>
                   <h:commandLink id="gotoAdmin" action="gotoAdmin" immediate="true" style="text-align: center">
                        <h:outputText value="admin"/>
                   </h:commandLink>
              </h:form>
         </h:panelGroup>
         <f:facet name="footer">
              <h:form>
                   <h:commandLink id="logout" action="logout" immediate="true" style="text-align: right">
                        <h:outputText value="logout" style="text-align: right"/>
                   </h:commandLink>
              </h:form>
         </f:facet>
    </h:panelGrid>
    [/code:1:ccbd93ceb2]
    Just to be really clear, here is the dierctory structure for the relevant files:
    [code:1:ccbd93ceb2]/web
    |
    |
    |--/pages
    |   |
    |   |
    |   |--/app
    |   |   |
    |   |   |
    |   |   |--/subview
    |   |   |   |
    |   |   |   |--navigationPane.jspf
    |   |   |
    |   |   |
    |   |   |--home.jsp
    |   |
    |   |
    |   ...
    |
    ...[/code:1:ccbd93ceb2]
    My problem is that the subview will not display when I run the web app. In the design view I can see it just fine, but when I browse to home.jsp when running, all I get is this (from view source):
    [code:1:ccbd93ceb2]<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
    <head>
      <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
      <title>Untitled Document</title>
    </head>
    <body>
    <table width="100%"><tbody><tr><td>Hello?</td></tr>
    <tr><td><table width="100%"><tbody><tr><td></td><td>Hello-o-o-o...?</td></tr>
    </tbody></table></td></tr>
    <tr><td>Where's my subview?</td></tr>
    </tbody></table>
    </body>
    </html>
    <script type="text/javascript">
    <!--
    function getScrolling() {
        var x = 0; var y = 0;
        if (document.body && document.body.scrollLeft && !isNaN(document.body.scrollLeft)) {
            x = document.body.scrollLeft;
        } else if (window.pageXOffset && !isNaN(window.pageXOffset)) {
            x = window.pageXOffset;
        if (document.body && document.body.scrollTop && !isNaN(document.body.scrollTop)) {
            y = document.body.scrollTop;
        } else if (window.pageYOffset && !isNaN(window.pageYOffset)) {
            y = window.pageYOffset;
        return x + "," + y;
    //-->
    </script>
    [/code:1:ccbd93ceb2]
    Does anyone have any idea why this might not be working?
    I'm really stumped!
    Cheers,
       doug.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    http://forum.java.sun.com/thread.jspa?messageID=3413354&#3413354

  • In FireFox 4.0, PDF files will not display

    After updating to 4.0, PDF files will not display in the browser window as before. All I get is blank screen. Everything works fine in IE9. I have updated all the plug-ins, including Adobe Acrobat. Also have enable Display PDF in browser in Acrobat Reader.

    If images are missing then check that you aren't blocking images from some domains.
    You can use these steps to check if images are blocked:
    * Open the web page that has the images missing in a browser tab.
    * Click the website favicon ([[Site Identity Button]]) on the left end of the location bar.
    * Click the "More Information" button to open the "Page Info" window with the Security tab selected (also accessible via "Tools > Page Info").
    * Go to the <i>Media</i> tab of the "Tools > Page Info" window.
    * Select the first image link and scroll down through the list with the Down arrow key.
    * If an image in the list is grayed and there is a check-mark in the box "<i>Block Images from...</i>" then remove that mark to unblock the images from that domain.
    See also:
    * http://kb.mozillazine.org/Images_or_animations_do_not_load

  • Flash Files Will Not Display in Dreamweaver

    Flash files will not display in Dreamweaver or in any
    browser. If I insert a Flash button, text or other file, when I hit
    the "play" button the flash place holder disapears, and the Flash
    file never displays. In the Property Inspector, the file is always
    "undefined" even when I save the file to my root folder with a
    name. When I hit the "Edit" button, I get the message that the file
    could not be found on my local disk. It's like Dreamweaver fails to
    create or place a Flash file. Help please!

    fro:
    > <img
    >
    src="file:///Alan's/Users/alanwhelpley/Desktop/MM_DWCS3/Chapter11/Roses.jpg"
    You will have to rename the hard drive for dreamweaver to
    work properly.
    The ' is causing dw to not find the path.
    other symptoms would be dw nagging that the "homepage" is not
    within the
    local site folder so it can't build a sitemap.
    technote-
    http://kb.adobe.com/cfusion/knowledgebase/index.cfm?id=tn_14452
    Alan
    Adobe Community Expert, dreamweaver
    http://www.adobe.com/communities/experts/

  • Baggage files will not display/open

    Using Robohelp 9, Baggage files have been added to project and links created to them but linked baggage files will not open when project is generated.  Using local drive and have attempted display in IE10, IE10 (compatability mode), IE9, IE8 but get same result.

    You can always “roll your own” fake webserver by using the method offered by Peter Grainge (http://www.grainge.org/pages/snippets/snippets.htm#browsers) from these guys http://www.helpandmanual.com/hm2go.html

  • My edited photos will not display when clicked on, a large triangle with exclmation comes up

    my edited photos will not display when clicked on, instead a large grey area comes up wiht a triangle /exclamation sign. 

    Try these in order - from best option on down...
    1. Do you have an up-to-date back up? If so, try copy the library6.iphoto file from the back up to the iPhoto Library (Right Click -> Show Package Contents) allowing it to overwrite the damaged file.
    2. Download <a href="http://www.fatcatsoftware.com/iplm/"><b><u>iPhoto Library Manager</b></u></a> and use its rebuild function. This will create a new library based on data in the albumdata.xml file. Not everything will be brought over - no slideshows, books or calendars, for instance - but it should get all your albums and keywords back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one.
    3. If neither of these work then you'll need to create and populate a new library.
    To create and populate a new *iPhoto 08* library:
    Note this will give you a working library with the same Events and pictures as before, however, you will lose your albums, keywords, modified versions, books, calendars etc.
    In the iPhoto Preferences -> Events Uncheck the box at 'Imported Items from the Finder'
    Move the iPhoto Library to the desktop
    Launch iPhoto. It will ask if you wish to create a new Library. Say Yes.
    Go into the iPhoto Library (Right Click -> Show Package Contents) on your desktop and find the Originals folder. From the Originals folder drag the individual Event Folders to the iPhoto Window and it will recreate them in the new library.
    When you're sure all is well you can delete the iPhoto Library on your desktop.
    In the future, in addition to your usual back up routine, you might like to make a copy of the library6.iPhoto file whenever you have made changes to the library as protection against database corruption. 

  • RE: my input fields does not display when running the page

    my input fields does not display when running the page
    why is that so?

    Hi,
    Can you send the HTML code for us?
    Afonso

  • I have purchased itunes tv series, movies and music and have transferred them onto an external hard drive and tried to play them on my tv on a media hub.  The file will not load.  Is there some form of blocking by itunes or another p[roblem and how d

    I have purchased itunes tv series, movies and music and have transferred them onto an external hard drive and tried to play them on my tv on a media hub.  The file will not load.  Is there some form of blocking by itunes or another p[roblem and how do I fix it?

    You can't fix it.  iTunes bought content is DRM protected. so it can only be played on authorized devices.  i.e devices associated with the apple Id used to purchase the content.  Its copyright protection that the rights owners demand.
    Circumventing it, is illegal in most countries, and as such cannot be discussed here.  If you want to play the content you'll need to connect your computer directly to your TV, or use some other device you can authorize for iTunes content such as an iPad, iPhone , iPod touch or Apple Tv.

  • Adobe Illustrator file will not display correctly when logged in as a user

    I am working with an Adobe Illustrator CS2 file that will open and display correctly if I log in as Administrator, but will not display correctly if I am logged on as a user. The error message is that there is not enough memory to display the file correctly and I am forced into preview mode. The user Home folder is on a server. Other than this, I have made certain that the criteria for opening the file match under both interfaces. I have opened the AI CS2 file on other Macs and it opens fine. I conclude that the problem is with the user Home folder, but beyond that, I'm stumped. Any help will be appreciated.

    After I filed a bug-report an Apple engineer contacted me, and asked me to try running java in headless mode: http://java.sun.com/developer/technicalArticles/J2SE/Desktop/headless/
    That solved the problem!

  • .ai Files will not open when Illustrator CS5.5 is already launched

    Greetings,
    I have a user using Windows 7 Pro 64-bit having issues with Adobe Illustrator CS5.5. When the user attempts to open .ai
    files stored on her local machine, the files will not open if Illustrator is launched. It will show an hour glass briefly as it is
    about to open, and then nothing happens.  If she closes Illustrator and tries to reopen the same file, it will launch Adobe
    Illustrator and the file will open. She can also open files through illustrator. It just wont open .ai files when illustrator is
    already launched. This is happening when she is running illustrator as an adminitrator, and as well as when she is not an adminitrator. Any ideas?

    Any specific security tools running? Team/ workflow management software? Virtual desktops? License managers? Sometimes this stuff simply blocks local ports or wants files to be opened from within once certain things are running... Otehr than that this could be something with group policies or mundane user privileges issues with different contexts, i.e. your AI also has permissions for a specific server-side user/ policy, which the local user otehrwise doesn't have and then it's not allowed to open files into that secured loop...
    Mylenium

  • PSE 11, jpg file will not display

    in photo editor of PSE11, I open a jpg file but it will not display.   All the Tools/actions become active like the picture is there, but it is not visible.  Shat am i doing wrong?

    If you go down to the bottom of your screen, does it appear in the photo bin? What happens if you double click it there?

  • Large numeric field in a .csv file will not display

    A .csv file contains a numeric field which in some rows contains an 11-digit number (like 14024583126).  These will not display (blank or null).  Some of the rows contain numbers of 5-digits or 7-digits and these display fine.  How can I get the 11-digit numbers to display correctly?
    I have no capability to change the .csv file to make this field type as string.  Would there be a way to convert the numeric field to string?

    Thank you for the formula.  However, the string field displays just like the numeric field did.  If the numeric value in the row is a 5-digit or 7-digit number it converts to text and displays fine.  But if the numeric value in the field is an 11-digit number nothing is displayed after conversion to text.  The numeric field must have some limit on what the size can be.  How can we get around that limitation?
    FYI - the data I'm trying to process is a dump of monthly Call Detail Records from Cisco's Unified Communications Manager.  The 11-digit number is a Long Distance Number like 14021234567 (ex., 1-402-123-4567).  The 5-digit numbers are VoIP extension numbers while the 7-digit numbers are local calling numbers.

  • On a mac the type tool will not display when i double click on the type button in the layers panel

    The type tool will not display.  So I can't change text format.

    Thank you for your response.  I am using PSE version 11,  OS 10.9.4. 
    I figured out the issue.  The Text Tool was displayed but it was off the bottom of the screen.  I had to resize the window from the bottom to display the Text Tool.  To do so I had to move the dock to the left and then learn that by using the Option key it is possible to change window size on both edges.
    Problem solved, thank you.

  • Console not display when run jar file

    i run jar file with command javaw -jar test.jar or double click on jar file, it's console app, it just run well but console not display, can i made console display and when i close console, it's stop jar file too?
    thanks

    i got it, javaw = no console window, i tried java command and i got error: can not access jar file?

Maybe you are looking for

  • Blue screen when connected to pc

    when I connect my iPhone 4 via usb to my pc (hp pavilion dv4000, windows xp home), instantly blue screen appears! can anyone help me?

  • GR for free goods

    HI, I have an scenario and pls advice Material Stock =10 STandar Price: =10 Rupees Stock value =10*10=100 If receive the 10 nos of material as free of goods.so now the value Material Stock =20 STandar Price: =10 Rupees Stock value =10*10=100 Now if i

  • Pt: opener tag with activity spaces

    Hi, Does anyone know a way of using a pt tag to render a link straight to the changePassword activity space? I have it hard coded at the moment, but obviously I want to use a tag to make it work between environments etc. the link I want to render loo

  • I have forgotten my security questions

    I went to upgrade a game on my iPod today and it asked for my security questions. I set these a long time ago and don't remember my answers. I apparently have no rescue email. What do I do? I am panicking and searching all over the internet for answe

  • Error in FI posting- J2IUN

    Dear All, In J2IUN simulation is working fine and and when i try to save system showing message ' ERROR IN FI POSTING'. We tried to utilize for the month of May 2009. Is the error beacuse of FI period closed? Please suggest how to overcome this error