JSP pages not displaying images in Jdeveloper

HI
I am using lot of images in the JSP page.But the JSP pages are not displaying images in Jdeveloper in Design preview.
Do I need to install Apache for that?I have not installed Apache yet.
If so then what are the configuration or settings I have to do in Jdeveloper for Apache.
Thanks in Advance.
Apps user

Which JDeveloper version? where are the images stored? can you share the code you are using to show such an image?
Try this - create a JSP page and drag an image from your desktop onto the JSP page - this will add the image to your project - does this work?

Similar Messages

  • How can I make the jsp pages not displayed by using the navigation class?

    I'm right now implementing a function on my program GUI . It's like whenever I click "STOP THE SERVER" button on the main page, I need those jsp pages relates to the server running to be not displayed, even by directly type in the URL(that's just stay in the main page), How can I do that? I heard that a navigation class might do it, but I'm not sure how. It might be great if some experts could help me!! Thanx a million !!
    Shannon

    See:
    * [[Removing the Search Helper Extension and Bing Bar]]
    You can use one of these extensions to adjust the default font size and page zoom on web pages:
    * Default FullZoom Level - https://addons.mozilla.org/firefox/addon/6965
    * NoSquint - https://addons.mozilla.org/firefox/addon/2592

  • Pages not displaying images when accessed from remote system-error on page.

    Urgent pls help...
    Hi,
    We installed 10G database and installed application express.
    we installed apex using the command @apexins SYSAUX SYSAUX TEMP /i/
    then changed password using @apxchpwd
    then @apxldimg.sql D:\oraclexe
    we installed databse in D:
    in D:/oraclexe we copied apex folder and done the above operations.
    we run the listener using command
    java -Dapex.home=D:/oraclexe/apex -Dapex.images=D:/oraclexe/apex/apex/images -Dapex.port=8585 -jar D:/oraclexe/apex/apex.war
    then for four days it was working fine,
    our team can access pages from client system and we were working on our project.
    But for the last two days it is not working properly. I mean apex is loading with errors(without images).
    the page is showing without images and links are not working
    just data's in pages is only seen.
    But when i connect through localhost it is working properly.
    we installed it on server then there also localhost:8080 is working
    but from client system has the above said problem
    Give us a solution...
    Thanks in advance...
    Edited by: 874343 on Jul 22, 2011 5:26 AM

    ListenerAdmin is showing blank screen
    this is my command prompt when running listener
    D:\oraclexe>cd apex
    D:\oraclexe\apex>java -Dapex.home=D:/oraclexe/apex -Dapex.images=D:/oraclexe/ape
    x/apex/images -Dapex.port=8585 -jar D:/oraclexe/apex/apex.war
    INFO: Starting: D:\oraclexe\apex\apex.war
    See: 'java -jar apex.war --help' for full range of configuration options
    INFO: Extracting to: D:\oraclexe\apex
    INFO: Using classpath: file:/D:/oraclexe/apex/apex/____embedded/start.jar:file:/
    D:/oraclexe/apex/apex/WEB-INF/lib/apex.jar:file:/D:/oraclexe/apex/apex/WEB-INF/l
    ib/commons-fileupload-1.2.1.jar:file:/D:/oraclexe/apex/apex/WEB-INF/lib/je-4.0.1
    03.jar:file:/D:/oraclexe/apex/apex/WEB-INF/lib/ojdbc6.jar:file:/D:/oraclexe/apex
    /apex/WEB-INF/lib/ojmisc.jar:file:/D:/oraclexe/apex/apex/WEB-INF/lib/poi-3.6-200
    91214.jar:file:/D:/oraclexe/apex/apex/WEB-INF/lib/ucp.jar:file:/D:/oraclexe/apex
    /apex/WEB-INF/lib/xdb-11.2.0.jar:file:/D:/oraclexe/apex/apex/WEB-INF/lib/xmlpars
    erv2-11.2.0.jar:
    INFO: Starting Embedded Web Container in: D:\oraclexe\apex
    Jul 22, 2011 6:48:19 PM ____bootstrap.Deployer deploy
    INFO: Will deploy application path=D:\oraclexe\apex\apex\WEB-INF\web.xml
    Jul 22, 2011 6:48:19 PM ____bootstrap.Deployer deploy
    INFO: deployed application path=D:\oraclexe\apex\apex\WEB-INF\web.xml
    Using config file: D:\oraclexe\apex\apex-config.xml
    -- listing properties --
    PropertyCheckInterval=60
    ValidateConnection=true
    MinLimit=1
    MaxLimit=10
    InitialLimit=3
    AbandonedConnectionTimeout=900
    MaxStatementsLimit=10
    InactivityTimeout=1800
    MaxConnectionReuseCount=1000
    APEX Listener version : 1.1.2.131.15.23
    APEX Listener server info: Grizzly/1.9.18-o
    Jul 22, 2011 6:48:44 PM com.sun.grizzly.Controller logVersion
    INFO: Starting Grizzly Framework 1.9.18-o - Fri Jul 22 18:48:44 IST 2011
    INFO: http://localhost:8585/apex started.
    Using JDBC driver: Oracle JDBC driver version: 11.2.0.2.0
    Edited by: 874343 on Jul 22, 2011 6:42 AM
    Edited by: 874343 on Jul 22, 2011 6:51 AM

  • JSP page not displaying arabic fonts

    Am trying to pass data from html to jsp by post method.I have put meta tag windows-1256 charset in both the pages.
    <HEAD>
    <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=WINDOWS-1256 ">
    </HEAD>
    I have also tried putting <%@ page contentType="text/html; charset=UTF-8" %> as the first line in jsp , but nothing seems to be working .
    Am trying this with Netscape 6.2 browser.I have set the charset to Windows-1256 in the browser and have also tried with UTF-8 format.
    Can anyone help me on this .
    Thanks in advance.
    Siva

    If you wanna get reqest with special characters(arabic)
    you cant use GET method ->but POST!!!!
    This is standard:
    <form action="operator.jsp" method="POST" enctype="multipart/form-data" accept-charset="UTF-8">
    Now agent in your browser will send the same character liku you put into.This method is used when you upload files.
    Am trying to pass data from html to jsp by post
    method.I have put meta tag windows-1256 charset in
    both the pages.
    <HEAD>
    <META HTTP-EQUIV="Content-Type" CONTENT="text/html;
    charset=WINDOWS-1256 ">
    </HEAD>
    I have also tried putting <%@ page
    contentType="text/html; charset=UTF-8" %> as the first
    line in jsp , but nothing seems to be working .
    Am trying this with Netscape 6.2 browser.I have set
    the charset to Windows-1256 in the browser and have
    also tried with UTF-8 format.
    Can anyone help me on this .
    Thanks in advance.
    Siva

  • IWeb pages not displaying images in Safari v312.6, Firefox or IE 5.2

    Ever since I started using iLife 08 and the new iWeb to create my online photo albums, some users of Firefox and one user of Safari v312.6 and IE 5.2 for Mac can't view the images on my pages.
    Can anyone tell me why? I realize there is a fix out there for Firefox so I'm more concerned about Safari and IE 5.2. The user is my mother in law and she really wants to see pics of the grandkids.

    For the Firefox issue see http://diamondsw.dyndns.org/Home/EtCetera/Entries/2008/6/18_Firefox_3_andiWeb.html.
    Don't know why Safari wouldn't work. Can you provide the URL so we can view ourselves?
    OT

  • How to use ShowValue within a UIX/JSP page to display an active link?

    I am storing URL's in the DB and want to display them as active links on a UIX/JSP page. I thought that I had this working some time ago, but now it no longer works.
    Using <bc4juix:RenderValue datasource="ds1" dataitem="myTextField" /> will display "http://www.otn.oracle.com" as an inactive link using UIX/XML which is expected.
    Using <jbo:ShowValue datasource="ds1" dataitem="myTextField" /> will display an active link using if using BC4J/JSP, which is expected.
    However, I have not been able to do this using a UIX/JSP page.
    Is it possible to use ShowValue within a UIX/JSP page to display an active link?
    Thanks,
    Bill G

    Hi Juan,
    I've done the following and it does not work for me;
    --- snip ---
    <uix:form name="form1" method="GET">
    <bc4juix:Table datasource="ds1" >
    <uix:columnHeaderStamp>
    <uix:styledText textBinding="LABEL"/>
    </uix:columnHeaderStamp>
    <%--
    <jbo:AttributeIterate id="dsAttributes" datasource="ds1" hideattributes="UixShowHide">
    <bc4juix:RenderValue datasource="ds1" dataitem="<%=dsAttributes.getName()%>" />
    </jbo:AttributeIterate>
    --%>
    <bc4juix:RenderValue datasource="ds1" dataitem="FacilityDesc" />
    <bc4juix:RenderValue datasource="ds1" dataitem="LocationId" />
    <bc4juix:RenderValue datasource="ds1" dataitem="LocationDesc" />
    <%-- ** THE FOLLOWING DOES NOT DISPLAY ON THE BROWSE_EDIT_PAGE ** --%>
    <jbo:ShowValue datasource="ds1" dataitem="Notes" ></jbo:ShowValue>
    <%-- ** THE FOLLOWING DOES NOT DISPLAY ON THE BROWSE_EDIT_PAGE ** --%>
    <uix:rawText>
    <jbo:ShowValue datasource="ds1" dataitem="Notes" ></jbo:ShowValue>
    </uix:rawText>
    <%-- ** THE FOLLOWING DOES NOT DISPLAY ON THE BROWSE_EDIT_PAGE ** --%>
    <uix:contents>
    <uix:rawText>
    <jbo:ShowValue datasource="ds1" dataitem="Notes" ></jbo:ShowValue>
    </uix:rawText>
    </uix:contents>
    --- snip ---
    Bill G...

  • Login action buttons no longer work and some pages not displaying correctly after upgrade.

    After recent update, some web pages not displaying correctly and Login buttons on some sites do not work. I've updated my plugins and restarted computer, but problems remains. Is this Java, Javascript or something else? Same pages are working fine in IE.

    Please update the firefox to the latest version of firefox 26
    Start Firefox in Safe Mode to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    <b> To Enable SafeMode </b>
    *You can open Firefox 4.0+ in Safe Mode by holding the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * Or open the Help menu and click on the '''Restart with Add-ons Disabled...''' menu item while Firefox is running.
    [[Image:FirefoxSafeMode|width=520]]
    ''Once you get the pop-up, just select "'Start in Safe Mode"''
    [[Image:Safe Mode Fx 15 - Win]]
    If it works in Safe Mode and in normal mode with all extensions (Tools > Add-ons > Extensions) disabled then try to find which extension is causing it by enabling one extension at a time until the problem reappears.
    Close and restart Firefox after each change via "Firefox > Exit" (Windows: Firefox/File > Exit; Mac: "Firefox > Quit Firefox"; Linux: "Firefox/File > Quit")
    * https://support.mozilla.org/en-US/kb/troubleshoot-firefox-issues-using-safe-mode
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • BBC One Highlights page not displaying content of its panes

    Why does the BBC One Highlights page not display the content of its panes?

    There seems to be something up with their javascript that produces slightly different image url's than on other browsers.
    Instead of something like this:
    http://ichef.bbci.co.uk/images/ic/336x189/legacy/episode/b03ggg2z.jpg 
    it's producing say
    http://ichef.bbci.co.uk/images/ic/336x0/legacy/episode/b03ggg2z.jpg 
    which doesn't exist.

  • HT1553 I restored my hard drive from time machine. Why is iPhoto not displaying images properly?

    I restored my hard drive from time machine after power blinks corrupted the file system so badly that disk utility could not repair it. Since then, iPhoto has not displayed images correctly. Events are there, and blank squares are shown, but that's all. I rebuilt small and all thumbnails and permissions -- I think the top three or four options in the iPhoto rebuild utility, which took five hours to do but which seems not to have changed anything. The iPhoto library is still more than 100GB, so the photos are there. I didn't choose rebuild from backed up --- whatever the final option on the rebuild menu offers -- because that seems to be appropriate only when a backup is interrupted. Could certainly do it, though. How do I get iphoto behaving again? I have full time machine backups saved automatically and another fairly recent copy on a separate hard drive stored remotely. Thanks for whatever help anyone can provide. I've looked at existing questions and solutions without success so far.

    What version of iPhoto and system are your running?  Since you've tried rebuilding with iPhoto give this a try:
    Using iPhoto Library Manager  to Rebuild Your iPhoto Library
    Download iPhoto Library Manager and launch.
    Click on the Add Library button, navigate to your Home/Pictures folder and select your iPhoto Library folder.
    Now that the library is listed in the left hand pane of iPLM, click on your library and go to the File ➙ Rebuild Library menu option
    In the next  window name the new library and select the location you want it to be placed.
    Click on the Create button.
    Note: This creates a new library based on the LIbraryData.xml file in the library and will recover Events, Albums, keywords, titles and comments. However, books, calendars, cards and slideshows will be lost. The original library will be left untouched for further attempts at fixing the problem or in case the rebuilt library is not satisfactory.
    If you have an external HD you might want to have the rebuilt copy created on it unless you have well more than 100 GB available on your boot drive.
    OT

  • Latest flash version will not display images or video

    Latest flash version will not display images or video in 2 x Windows 7 Pro 64bit machines, 1 x Windows 7 Home Premiums, and 1 x XP SP3 under VMWare Workstation 7. Problem plagues Firefox, Chrome, and IE on all systems. Also running Norton Security from Comcast on all machines. Disabling does not appear to help. Suggestions?

    Not sure, this is the one that I really want to view. I am using the latest 11.6 ending in 168. Curious you got the images. The product ones act like they should be displaying for me but don’t. Can you do a capture of the images? The text with small images sometimes comes through and sometimes not. I wonder if there is a problem on the server end.
    When I talk to the Customer Service people they claim to have no reports of problems, but like the sports pro about to be traded, they may be the last ones to know…

  • Mail will not display images with .jpeg extension. .jpg works fine. (displays in place when opening the email. What plug-in would correct this?

    Mail will not display images with .jpeg extension. .jpg works fine. (displays in place when opening the email. What plug-in would correct this?

    If you think you're insane now, try maintaining those pop up menus.
    As far as I know, these menus have not been updated since FW 8, so 
    they are at least two versions old.
    Save yourself a lot of grief by avoiding those menus. There are many 
    other products on the market which do a much better job of creating 
    and maintaining this type of navigation structure.
    Read this link before you climb any higher on this slippery slope:
    http://apptools.com/rants/jsmenu.php
    There was another blog post by the fellow who originally wrote the pop 
    up menu feature, but I can't seem to locate it. Even he says stay away 
    from them.
    Not the answer you probably want, but I hope it helps, nonetheless.
    Jim Babbage

  • Mail 7.3 (1878.6) not displaying images in random messages.

    In the last couple of weeks, I've noticed that, with no preference changes made by me, that random messages are not displaying images only empty boxes with the small blue question-mark box in the middle. This is almost exclusively from companies and organizations that I'm interested in.
    I've made no changes with regard to messages downloading with my mail in Mail's preferences. If I had, I'd think that ALL such messages would behave the same.

    Nothing happens. Loading remote content is a Mail preference for me for everything. Best I can do is choose to click the "if your having trouble seeing this..." offered by many advertisers to take you to their site.
    Since it's random, I wonder if it's not something that has to do with those specific servers sending those messages. And it's only a few, but enough to be annoying. These are people I've received perfect content from for years in some cases. No changes have been made to my preferences.

  • Major Problem - some pages not displaying correctly

    All,
    I have a problem with some pages not displaying correctly i.e.
    SE80 navigation page
    F1 help
    I am using XP sp2 and we have the latest version of internet explorer 7 (which I cannot uninstall as it is company policy)
    SAP version is 6.4c.
    I am using SAP Gui 7.10 with the latest patch 710_7.
    This is making the system completely unusable for me.
    I have read a few forum posts mentioning that upgrading to the latest patch version will resolve this problem, but this clearly has not worked for me.
    Can someone please help,  how do I actually esculate this to SAP?
    <REMOVED BY MODERATOR>
    thanks
    Edited by: Alvaro Tejada Galindo on Apr 8, 2008 4:07 PM

    what kind of useless answer was that?  If you have no constructive comments to add please refrain.
    I am a SAP developer in ABAP and its related to SE80 which I used to use primarily for editing code (i now have to use se38).
    I often use F1 for hints on code etc to use and syntax so it does make it very difficult for me.  If there is a more appropriate forum for this please direct me, instead of posting in gibberish english.
    Max - I assume you have the same problem and it is also not resolved by the latest patch.  I wonder is there a way this can be esculated with SAP?
    Edited by: Steve Trillo on Apr 4, 2008 10:43 AM

  • Pages not displaying properly in Publisher instances as we activated the page from Author

    HI All,
    Pages not displaying properly in Publisher instances as we activated the page from Author. In author it is working well but in Pulisher it is showing first 2 lines of the page and then showing error as
    Apache sling/2.2 Hot Spot ****** Sun OS error
    Please help me on this.IS this issue with the templates or components are we using?

    Ok, then let's go the long way and try to reduce the number of possible root causes:
    1) Is your problem reproducible on this publish? (I suppose it is)
    2) Is it reproducible on other publishs as well, which have received the same page with the same application?
    3) Can you reproduce it on other replicated pages as well?
    4) When you upload a page to such an affected publish via a content package, does this page render correctly?
    5) Does this problem appear on other environments as well?
    6) Do you use dispatcher when you get this result? Or do you get it when you request the page directly of CQ5?
    7) What's the HTTP statuscode when you render this page? You can see it in the request.log of CQ5.
    If you change logging via Felix Console, you don't need to restart the instance.
    kind regards,
    Jörg

  • Large product page not displaying correctly on responsive webpage.

    Large product page not displaying correctly on responsive webpage. Not really sure what to adjust or correct.
    http://iamartde.businesscatalyst.com/apparel-1/i-am-art-sweatshirt-white

    Hi,
    I think it may be <div class="html5gallery-viral-0"> (contains the social media buttons) // screencasteu.worldsecuresystems.com/AP/2013-08-01_1033.png
    It's the only element that isn't in sync with the other elements on page, when compared to home.html for example.
    Kind Regards,
    Alex Pavelescu

Maybe you are looking for

  • ORA-00904 invalid identifier error

    Here are the steps to reproduce this. My DB version is 9i R2. 1) create table xmlsun1 of xmltype; 2) create table xmlsun2 as select * from xmlsun1; Two Tables of XML Type created successfully 3) insert into xmlsun1 values(xmltype('<employees><employe

  • Should I upgrade RAM?

    I have a 800 MHz G4 iBook with 640 MB of RAM running OS 10.3.9. It is a month or two shy of three years old. The computer (my first Mac) is still in great shape and works fine for nearly everything I do. However, when I do things like import a video

  • SOAP Adapter at XI 3.0 Central Adapter Engine

    Hello, I'm trying to use the SOAP Adapter with the Central Adapter Engine. It works with the J2SE-Adapter Engine, but not with the Central Adapter Engine. I Get the Error: No response Available. Perhaps someone can help me.

  • SQL*Loader Import Problem

    Hi, I am trying to import some data from .txt file to a table in Oracle DB using TOAD- Sql*Loader - Import wizard. I was able to load all the files successfully. All the files are pipe(|) delimited. But in one of the files, when the values for the fi

  • Firefox no longer plays vines or twitter gifs

    After I updated to version 35.0.1 I noticed that vines, both on twitter and on the vine site, and animated gifs in twitter no longer play. The gifs never even show up, and the vines load but can't play. Checked both in Chrome and they worked fine the