Don't Show BLOB image.

Version 11.1.1.1.0
After run the .jspx page don't show any error but don't show blob image in page.
Servlet Code is
public class ClsServlet extends HttpServlet{
public ClsServlet() {
super();
public void init(ServletConfig config) throws ServletException {
super.init(config);
public void doGet(HttpServletRequest request,
HttpServletResponse response) throws ServletException,
IOException {
String appModuleName = "image.model.AppModule";
String appModuleConfig = "TempAppModule";
String imgno = request.getParameter("imgno");
String tblName = request.getParameter("tblnm");
String clmName = request.getParameter("clnm");
String pkclmName = request.getParameter("pkclnm");
String mType ;//= request.getParameter("mtype");
mType = "jpg";
String voQuery =
"select " + clmName + " from " + tblName + " where " + pkclmName +
" = '" + imgno + "'";
String mimeType =
mType; //"gif";//this.getServletConfig().getInitParameter("gif");
ApplicationModule am =
Configuration.createRootApplicationModule(appModuleName,
appModuleConfig);
am.clearVOCaches("TempView", true);
ViewObject vo = null;
//String s;
System.out.println("voQuery="+voQuery);
try {
vo = am.createViewObjectFromQueryStmt("TempView", voQuery);
} catch (Exception e) {
System.out.println( e.toString()+" err:VO Exists...");
System.out.println("before run============= !!!");
// Run the query
try {
vo.executeQuery();
} catch (Exception e) {
System.out.println(e.toString());
// Get the result (only the first row is taken into account
System.out.println("after run============= !!!");
Row product = vo.first();
BlobDomain image = null;
// Check if a row has been found
if (product != null) {
System.out.println("onside product============= !!!");
// We assume the Blob to be the first a field
image = (BlobDomain)product.getAttribute(0);
if (product.getAttributeCount() > 1) {
mimeType = (String)product.getAttribute(1);
} else {
//LOG.warn("No row found to get image from !!!");
//LOG.warn("No row found to get image from !!!");
System.out.println("No row found to get image from !!!");
vo.remove();
//vo.clearCache();
return;
System.out.println("Set Image============= !!!");
// Set the content-type. Only images are taken into account
response.setContentType("image/" + mimeType);
OutputStream os = response.getOutputStream();
InputStream is = image.getInputStream();
System.out.println(image.getBufferSize() + "image.getBufferSize()");
// copy blob to output
byte[] buffer = new byte[image.getBufferSize()];
int nread;
vo.remove();
//while ((nread = is.read(buffer)) != -1) {
while ((nread = is.read(buffer)) != -1) {
// try {
os.write(buffer);
System.out.println(buffer.length + "Set Image============= loop!!! " +
nread);
System.out.println("==out strim===" + os.toString());
is.close();
os.close();
os.flush();
// Remove the temporary viewobject
vo.remove();
//vo.clearCache();
// Release the appModule
Configuration.releaseRootApplicationModule(am, true);
how can i show this image

Hard to tell from your code and the information given.
Do you get the image from the DB?
Can you shoe the code to show the image on the page?
Timo

Similar Messages

  • Oracle lite application not showing blob images in BI reports

    Hi,
    We have an application running in Oracle lite, we integrated the BI publisher reports (PDF reports are generated Using Data template and RTF file with Java API for BI publisher) with the application. Its been working fine for a long time.
    Now we are showing some images on the pdf report, the images are stored in the Oracle lite database as blobs. My application fails when translating the Data template to xml data. I am not getting any exception other than out of memory error after a while.
    anybody had the same problem? Let me know if you need more information on this problem.
    Any help will be great!!
    Regards,
    Parthiban Kumar
    Edited by: Parthiban Kumar on Nov 12, 2009 10:45 AM

    Hi Carsten
    That was exactly* I was looking for. Maybe I should Google more in German ;-)
    The main problem was that I defined my image outside the first repeating group (that doesn't repeat, it's always just one object) - the first group is followed by 7 more.
    Just like the "Name" (that's positioned outside the group in the document header), I positioned the image above the table representing the group.
    Doing that, the "Name" is filled correctly, the Image only when the Output Format is Excel or HTML - not Word or PDF ... makes no sense but that's tje way it is.
    After moving the image inside the group....it works great!
    (One more thing...the image size is fixed to the image you use as "dummy". Is there any way to make that more flexible, because now some scaling happens...)???
    @Trent: That was the way we initially did it, but when the size of the row exceeds 32K...you know what happens.. And even with a small image the 32K limit is hit easily
    The way I use it now (very similar to Carsten's description) there is no limit....
    Thank you all!
    Roel

  • IPad safari don't show loaded images until slide the screen

    i have a problem in iPad Safari. when i use Javascript to append image to div using elm.appendChild(img) the images don't appear until the screen is touched. the same code works perfect on IE,Firefox,Chrome,and android browsers.i have uploaded video that shows the problem. http://www.youtube.com/watch?v=nBN9fThDik8is it related to the device ? or there some special code for loading images in iPad safari?or any solution ?

    Hi there and welcome to the User Forums!
    What you are looking for is a full-motion video recording.
    Captivate 2 has full-motion available, but the product is designed
    to use it for only brief periods - for capturing such things as
    grabbing a scroll elevator, or a drag-n-drop of a file object. It
    is definitely not designed for on-going, continuous video capture.
    If you upgrade to Captivate 3 you will find expanded full-motion
    capabilities.
    Other alternatives include the use of software designed
    specifically for creating AVI videos. One popular software package
    for this is Camtasia, but there are hundreds available out there -
    just "Google" for a string like "
    create video".
    Having said that, if you use Captivate as intended, the
    action you describe can be captured easily, and with amazing
    clarity and real-time appearance of your actual activity. This is
    not really the place to conduct a complete seminar on the product,
    but there are more than a half-dozen tutorials (created in
    Captivate) accessible on the main user interface (UI) - look in the
    right-hand column on that UI. The titles tell you what each
    contain. There is also a sample movie or two that was included with
    the install. You might find it helpful to open that and after
    looking at the timeline and other features, use the Preview feature
    to see what a Captivate movie looks like.
    After looking at some of those resources, come on back here,
    as you will probably have more specific questions we can help with.
    Best of luck to you.
    .

  • Servlet not showing BLOB image from Oracle in JSF

    hi forum.
    i have a table in oracle in which i m storing images in a BLOB field and file extention (mime type) in a varchar2 field. i can successfully store image. but i want the stored image to be displayed in a graphicimage tag from BLOB. i searched net and found it has to be done using servlet. the code that i used is as following. but i get null pointer exceptions. i know i should get these exceptions but i dont know how to tackle them since there were few things left vague in every site i searched. so i opted to ask the forum.
    here is the code for my jsp page
         <h:graphicImage value="/DisplayImage"/>
    web.xml is amended as follows
                  <servlet>
      <servlet-name>DisplayImage</servlet-name>
      <servlet-class>imageDisplay.DisplayImage</servlet-class>
    </servlet>
    <servlet-mapping>
      <servlet-name>DisplayImage</servlet-name>
      <url-pattern>/DisplayImage</url-pattern>
    </servlet-mapping>
              the servlet itself....
       package imageDisplay;
    import java.sql.*;
    import java.io.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import org.pa.utils.HibernateUtils;
    import org.hibernate.Session;
    public class DisplayImage extends  HttpServlet{
      public void doGet(HttpServletRequest request,HttpServletResponse response)  throws ServletException, IOException
                Session hibernateSession = null;
              hibernateSession = HibernateUtils.currentSession();
              Connection connection;
              connection = hibernateSession.connection();
              Statement st1;
      try{ 
           Class.forName("oracle.jdbc.driver.OracleDriver");
             st1=connection.createStatement();
             ResultSet rs1 = st1.executeQuery("select APP_FILE from EMPLOYEE_DETAILS where EMP_ID = 2");  //APP_FILE IS THE BLOB FIELD
             System.out.println("----------------#@$#@$$%^$%^%&^*^&*(&(*&^%$#$%@#%^%^%&*&^*$^&#%^$%@#$%@#$--------------------");
           String imgLen="";
           while(rs1.next())
           imgLen = rs1.getString(1);
                      int len = imgLen.length();   //THIS IS LINE 35 WHERE ERROR IS EMERGED...............
                     byte [] rb = new byte[len];
                     InputStream readImg = rs1.getBinaryStream(1);
                     int index= readImg.read(rb, 0, len); 
                System.out.println("index----#@$#@$$%^$%^%&^*^&*(&(*&^%$#$%@#%^%^%&*&^*$^&#%^$%@#$%@#$------------"+index);
                response.reset();
                response.setContentType("image/jpg");
                response.getOutputStream().write(rb,0,len);
                response.getOutputStream().flush();
      st1.close();
      response.getOutputStream().close();
    } catch (Exception e){
      e.printStackTrace();
      the error i get is
    index----#@$#@$$%^$%^%&^*^&*(&(*&^%$#$%@#%^%^%&*&^*$^&#%^$%@#$%@#$------------
    java.lang.NullPointerException
         at imageDisplay.DisplayImage.doGet(DisplayImage.java:35)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:617)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
         at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:291)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602)
         at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489)
         at java.lang.Thread.run(Unknown Source)bundle of thanks in advance for reading my problem persistantly and your help that i am desperately looking for
    Edited by: jaykio77 on Jan 11, 2012 4:09 AM
    Edited by: jaykio77 on Jan 11, 2012 4:12 AM

    In stead of copying/pasting code, take the time to read about how JDBC works. Yes that is going to take some time, but when you gain the knowledge you prevent yourself from having to dump your problem on other people, in this case a bunch of friendly strangers.
    This code:
    imgLen = rs1.getString(1);
                      int len = imgLen.length();   //THIS IS LINE 35 WHERE ERROR IS EMERGED...............
                     byte [] rb = new byte[len];
                     InputStream readImg = rs1.getBinaryStream(1);Really doesn't make much sense. This would assume that the first position in the resultset is both a String and a Blob.
    In the mean time, break down your problem. What you want to do is read a blob from a resultset. Right? Thats it, who cares that a servlet is involved, that is not what you are having trouble with. You cannot read the blob.
    That is vital to realize as you can narrow your google search to "java resultset blob". Guess what popped up as the first hit for me:
    http://www.java2s.com/Code/Java/Database-SQL-JDBC/GetBLOBdatafromresultset.htm

  • How can i pass more than 1 param to servlet to show blob image

    Hi
    my servlet expects 2 param to SELECt an image from a blob column
    public class ImageBlobServlet extends HttpServlet {
    private static final String CONTENT_TYPE = "text/html; charset=windows-1252";
    public void init(ServletConfig config) throws ServletException {
    super.init(config);
    public void doGet(HttpServletRequest request,
    HttpServletResponse response) throws ServletException,
    IOException {
    response.setContentType(CONTENT_TYPE);
    String ImageId = request.getParameter("id");
    String TipImg = request.getParameter("tip");
    OutputStream os = response.getOutputStream();
    Connection conn = null;
    try {
    Context ctx;
    ctx = new InitialContext();
    DataSource ds = (DataSource)ctx.lookup("java:/comp/env/jdbc/rhDS");
    conn = ds.getConnection();
    PreparedStatement statement = conn.prepareStatement("select FIT from " +
    "RHH_FOTOS IMG " +
    "where IMG.IDASSO = ? and IMG.TIM_COA = ?");
    statement.setInt(1, new Integer(ImageId));
    statement.setString(2, TipImg);
    To display the image i tried to use:
    <af:image id="ot1"
    *source="/imageblobservlet?id=#{bindings.Con.inputValue}?tip=#{"EMP"}"*
    shortDesc="Foto"/>
    but i receive all content in the get of first param.
    String ImageId = request.getParameter("id");
    How can i pass one more then 1 param in EL.
    Thanks in advance

    Hello,
    seems to me you're using wrong separator for the second param into your URL:
    <af:image id="ot1" source="/imageblobservlet?id=#{bindings.Con.inputValue}
    tip=#{"EMP"}" shortDesc="Foto"/>
    I think it should be:
    <af:image id="ot1" source="/imageblobservlet?id=#{bindings.Con.inputValue}
    tip=#{"EMP"}" shortDesc="Foto"/>
    Jack

  • Lightroom 3.4 don't show the images in the correct colour.

    After importing the files from my Camera, the pictures are shown in wrong colour.
    I have a 600D from Canon and Windows 7 Professional 32 bit. Here is a picture of Lightroom 3.4 and the Original:
    My problem is how to change the settings in Lightroom to get the right colours.
    Thanks for helping me.
    Jens

    You have to make sure that you are not comparing apples to oranges..
    In order to evaluate the colors you have to make sure that two conditions are met:
    a) your monitor needs to be calibrated, and
    b) the image needs to be viewed in the same color space.
    Color space: LR displays every image in ProPhoto RGB - and there is no provision to change that -, wheras other programs (except image editing programs) often display images either in sRGB or they are not color managed at all.
    So what makes you think that what you call the "Original" shows the right color? In which program were you viewing it? Is this program color managed? And which color space does it use? And you cannot go by the display of your camera either; they are often wrong.
    In all likelihood it is LR that displays the correct color.
    WW

  • Safari 6 "Images" search results don't show digital storage size info anymore - Fix?

    I've now noticed, finally using Safari 6 more often now .... that when doing a google subject search (and selecting the "images" results versus the "search" results at the top header bar of Safari), that Safari 6 now only shows a huge listing the images themselves. If you slide your cursor over any of the images, a small black highlight bar appears under the image and shows its pixel dimensions  (as in 000 x 000 pixel dimentional size), but Safari 6 shows no digital size info of the image in kb's (kilobites) or posibly MB's (megebites) .... like it used to in the past.
    On previous Safari google "image" search results you saw the images, along with their pixel dimentional size (000 x 000) and their storage size ( 00kb / 00MB) listed in small text under the image.
    Is there any way to set Safari to show not only the "images" dimensions (which it now does), but also to show the images over all storge size?
    I know if you use the additional "search tools" selection text, that a sub set of selector menus appears, listing "any size", "any color", Any type" Any time" All results" .... but none of these will set "images" storage sizes (kb, MB, etc.).  Even using a "larger size" only selection setting doesn't always guarantee that a larger size only seach results will be of larger pixel quality.
    I often use Safari and google to find "comp" art images, etc. for rough art placement on projects, and it's now almost impossible to search through Safari's google "images" results without knowing what "quality size" the image can be found at.
    Any thoughts on this fix?

    Actually, as I forgot to mention .... is this above issue a Safari 6 or Google search result issue? I'm starting to think that it may be Google's "images" results that don't show the images storage size anymore, and possibly not Safari's problem.
    Either way, is there any fix to this issue ... a plug-in, etc.?

  • BLOB image not shows in JSP page!!

    Hi Dear all,
    I had tried to configure how to show BLOB image to jsp page . The code are works fine and servlet works ok but image can not show only. can you help me that what need to be added. Please help me.
    Can any experts help me? BLOB image not shows in JSP page. I am using ADF11g/DB 10gR2.
    My as Code follows:
    _1. Servlet Config_
        <servlet>
            <servlet-name>images</servlet-name>
            <servlet-class>his.model.ClsImage</servlet-class>
        </servlet>
        <servlet-mapping>
            <servlet-name>images</servlet-name>
            <url-pattern>/render_images</url-pattern>
        </servlet-mapping>
      3. class code
    package his.model;
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.OutputStream;
    import java.util.Iterator;
    import java.util.Map;
    import javax.servlet.ServletConfig;
    import javax.servlet.ServletException;
    import javax.servlet.http.HttpServlet;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    import oracle.jbo.ApplicationModule;
    import oracle.jbo.Row;
    import oracle.jbo.ViewObject;
    import oracle.jbo.client.Configuration;
    import oracle.jbo.domain.BlobDomain;
    import org.apache.commons.logging.Log;
    import org.apache.commons.logging.LogFactory;
    public class ClsImage extends HttpServlet
      //private static final Log LOG = LogFactory.getLog(ImageServlet.class);
      private static final Log LOG = LogFactory.getLog(ClsImage.class);
      public void init(ServletConfig config)
        throws ServletException
        super.init(config);
      public void doGet(HttpServletRequest request,
                        HttpServletResponse response)
        throws ServletException, IOException
        System.out.println("GET---From servlet============= !!!");
        String appModuleName = "his.model.ModuleAssetMgt";//this.getServletConfig().getInitParameter("ApplicationModuleName");
        String appModuleConfig = "TempModuleAssetMgt";//this.getServletConfig().getInitParameter("ApplicationModuleConfig");
        String voQuery ="select ITEM_IMAGE from MM_ITEMIMAGE where IMAGE_NO = 'P1000000000006'" ;// 'P1000000000006' this.getServletConfig().getInitParameter("ImageViewObjectQuery");
        String mimeType = "jpg";//this.getServletConfig().getInitParameter("gif");
        //?IMAGE_NO='P1000000000006'
        //TODO: throw exception if mandatory parameter not set
        ApplicationModule am =
          Configuration.createRootApplicationModule(appModuleName, appModuleConfig);
          ViewObject vo =  am.createViewObjectFromQueryStmt("TempView2", voQuery);
        Map paramMap = request.getParameterMap();
        Iterator paramValues = paramMap.values().iterator();
        int i=0;
        while (paramValues.hasNext())
          // Only one value for a parameter is expected.
          // TODO: If more then 1 parameter is supplied make sure the value is bound to the right bind  
          // variable in the query! Maybe use named variables instead.
          String[] paramValue = (String[])paramValues.next();
          vo.setWhereClauseParam(i, paramValue[0]);
          i++;
       System.out.println("before run============= !!!");
        // Run the query
        vo.executeQuery();
        // Get the result (only the first row is taken into account
        System.out.println("after run============= !!!");
        Row product = vo.first();
        //System.out.println("============"+(BlobDomain)product.getAttribute(0));
        BlobDomain image = null;
        // Check if a row has been found
        if (product != null)
          System.out.println("onside product============= !!!");
           // We assume the Blob to be the first a field
           image = (BlobDomain) product.getAttribute(0);
           //System.out.println("onside  run product============= !!!"+image.toString() +"======="+image );
           // Check if there are more fields returned. If so, the second one
           // is considered to hold the mime type
           if ( product.getAttributeCount()> 1 )
              mimeType = (String)product.getAttribute(1);       
        else
          //LOG.warn("No row found to get image from !!!");
          LOG.warn("No row found to get image from !!!");
          return;
        System.out.println("Set Image============= !!!");
        // Set the content-type. Only images are taken into account
        response.setContentType("image/"+ mimeType+ "; charset=windows-1252");
        OutputStream os = response.getOutputStream();
        InputStream is = image.getInputStream();
        // copy blob to output
        byte[] buffer = new byte[4096];
        int nread;
        while ((nread = is.read(buffer)) != -1)
          os.write(buffer, 0, nread);
          //System.out.println("Set Image============= loop!!!"+(is.read(buffer)));
        os.close();
        // Remove the temporary viewobject
        vo.remove();
        // Release the appModule
        Configuration.releaseRootApplicationModule(am, false);
    } 3 . Jsp Tag
    <af:image source="/render_images" shortDesc="Item"/>  Thanks.
    zakir
    ====
    Edited by: Zakir Hossain on Apr 23, 2009 11:19 AM

    Hi here is solution,
    later I will put a project for this solution, right now I am really busy with ADF implementation.
    core changes is to solve my problem:
        byte[] buffer = new byte[image.getBufferSize()];
        int nread;
        vo.remove();
        while ((nread = is.read(buffer)) != -1) {
          os.write(buffer);
        }All code as below:
    Servlet Code*
      public void doGet(HttpServletRequest request,
                        HttpServletResponse response) throws ServletException,
                                                             IOException {
        String appModuleName =
          "his.model.ModuleAssetMgt";
        String appModuleConfig =
          "TempModuleAssetMgt";
      String imgno = request.getParameter("imgno");
        if (imgno == null || imgno.equals(""))
          return;
        String voQuery =
          "select ITEM_IMAGE from MM_ITEMIMAGE where IMAGE_NO = '" + imgno + "'";
        String mimeType = "gif";
        ApplicationModule am =
          Configuration.createRootApplicationModule(appModuleName,
                                                    appModuleConfig);
        am.clearVOCaches("TempView2", true);
        ViewObject vo = null;
        String s;
          vo = am.createViewObjectFromQueryStmt("TempView2", voQuery);
        // Run the query
        vo.executeQuery();
        // Get the result (only the first row is taken into account
        Row product = vo.first();
        BlobDomain image = null;
        // Check if a row has been found
        if (product != null) {
          // We assume the Blob to be the first a field
          image = (BlobDomain)product.getAttribute(0);
          // Check if there are more fields returned. If so, the second one
          // is considered to hold the mime type
          if (product.getAttributeCount() > 1) {
            mimeType = (String)product.getAttribute(1);
        } else {
          LOG.warn("No row found to get image from !!!");
          return;
        // Set the content-type. Only images are taken into account
        response.setContentType("image/" + mimeType);
        OutputStream os = response.getOutputStream();
        InputStream is = image.getInputStream();
        // copy blob to output
        byte[] buffer = new byte[image.getBufferSize()];
        int nread;
        vo.remove();
        while ((nread = is.read(buffer)) != -1) {
          os.write(buffer);
        is.close();
        os.close();
        // Release the appModule
    Configuration.releaseRootApplicationModule(am, true);
    }Jsp Tag
    <h:graphicImage url="/render_images?imgno=#{bindings.ImageNo.inputValue}"
                                                        height="168" width="224"/>

  • Why flv videos don't show in version 5.3?

    I have bought Keynote 09 5,3 few days ago
    when I want to show an old presentation (Keynote old version) with flv videos, don't show the images. Only works audio!!! ??

    If these are "modern" .flv files that use H.264 video then you'll need a helper app like Perian to play them using QuickTime.

  • Edits don't show if the photo is exported as DNG

    When I make edits (such as spot healing or cloning) in Lightroom and export the photo to another directory as DNG, those edits don't show - the image opens in Camera RAW and the removed blemishes are still there. On the other hand, if I export as JPEG, all of those edits are included. Am I doing something wrong or is this the way it is supposed to be?

    I may be incorrect on this but, as I understand it (and I am depending on other more knowledgeable people to correct me if I am wrong), when you export a JPEG image, LR will back your changes, stored in the catalog, into the exported image. However, when you export a RAW image, even as a DNG, LR will export the changes, also stored in the catalog, in a sidecar (.XMP) file. LR will never update the RAW file as these are proprietary files structure and not documented as to their internal structure. When you export a RAW file, check the directory to see if there is a .xmp file with the same name as the .dng file. This is where your edits will be. Keep in mid that not all external editors will recognize the sidecar files. Photoshop and Elements do however.
    There is an option to 'write metadata to files' on the Metadata menu. If you click this, LR will write the changes stored in the catalog into your image file for JPEG, TIFF and DNG files. For a RAW image however, these updates are only written to a sidecar file. I import my RAW images as DNG files and when i am done with edits and/or metadata changes, I will use the write-to-file option to update the images with the changes. This way, I am sure that no matter where I copy these images files, my edits and metadata also go along for the ride. This is what works for me but may not be another's cup of tea.

  • Touch id don't show sometimes when purchasing app

    Touch id don't showup sometimes when purchasing app When i go to touch id & passcode when i turn it off and on itunes & app store it work but it keeps on happening again anyone has the same problem!

    user7002297 wrote:
    Hi I have a report and a column have show a image but this dont fuction.
    The report don´t show the image, show this:
    <img src="wwv_flow_file_mgr.get_file?p_security_group_id=1042011&p_fname=semaforo_amarillo.gif">Set the Display As column attribute for <tt>avance_grafico</tt> column to Standard Report Column.
    Note that you should always include the following information when asking a question:
    <li>Full APEX version
    <li>Full DB version and edition
    <li>Web server architecture (EPG, OHS or APEX listener)
    <li>Browser(s)/version(s) used
    <li>Theme
    <li>Template(s)
    <li>Region type(s)
    Also wrap any code you post in tags<tt>\...\</tt> tags to preserve formatting and prevent it being (mis)interpreted by the forum software.
    (Please update your forum profile with a better handle than "user7002297")

  • Why don't my library images show up in the develop mode?  There is a big blue space with an X through it.

    Why don't my library images show up in the develop module?  There is a big blue space with an X through it.

    Disable GPU acceleration in your Lightroom preferences.

  • Images don't show on my website in Firefox but show just fine in Internet Explorer

    http://www.SurviveDiabetes.com/Essay/Essay1.htm
    I've tried the usual remedies - Images or Animations do not show, Favicon permissions - I'm stumped!
    The image files don't show when I click the favicon (to the left of the URL), then More Information, then Media - other sites show many image files. The Essay1.htm file was created as a doc in Word 10 then published to an htm file - there's an associated Essay1-files folder which contains the image files in the order used. Is Firefox expecting to find this info in the htm file somehow? How do I tell Firefox where to look?

    That is still an MS Office document and Firefox can't display such a file like IE can.
    Firefox doesn't know about files like this to add images:
    *http://www.survivediabetes.com/Essay/Essay1_files/filelist.xml
    You need to use a W3C compliant HTML editor to create your website and embed the images via <nowiki><img></nowiki> tags.
    If you do not have such an editor then look at KompoZer.
    *KompoZer: http://kompozer.net/

  • Still images don't show in source monitor

    Hi,
    Running CS5.5 on a Mac Pro, all updated, latest software.  Using a Black Magic Decklink card for output.
    My problem is I can't see any still images when I load them into the source monitor.  They don't show up when I preview them from the media browser and they don't show up when I import them and load them into the source monitor... Just a black screen.
    I can edit them to the timeline and when I double click on them they load into the source monitor!  But they don't load normally from the project window.
    They are jpegs, but I've tried with png as well...
    Thanks
    Ben Kupfer

    They are way too big. One is maybe ok but several.
    Make the dimension at least half the size, then they probably have no trouble showing up.

  • Problem with showing a BLOB Image from DB

    Hi!
    I am just trying to show an BLOB Image on my JSP site with the following Code in my getImage.jsp :
    getImage.jsp:
    response.setContentType("image/jpeg");
    Blob blob = rs.getBlob("image");
    if (blob != null)
    int iLen = (int)blob.length();
    ByteArrayOutputStream output = new ByteArrayOutputStream(iLen);
    output.write(blob.getBytes(1, iLen), 0, iLen);
    out.write(output.toString());
    and my problem is following:
    I just wrote the BLOB with the Stream on my browser window, and I compared the bytes with the original of a jpg.
    the problem is, that it is the same, but when I use out.write( )... all "?" in the byte stream are shown in different signs, and so I am not able to show the Image!
    Can anyone help me?
    Yours, Klaus from Austria

    Yes, as Tugdual said, a common way is to use Servlet to display binary output.
    out.write(output.toString());Klaus, if you use ByteArrayOutputStream.toString(), then the platform's default character encoding is playing a role. If you use the jsp implicit variable "out", which is a java.io.writer, you are treating character stream instead of byte stream. These two kind of streams are totally different. So your browser are not receiving the same the bytes as in your original jpg. No wonder your are not able to see the image. That is one reason why JSP is not suitable for binary output.
    Well, you can also use JSP tags to accomplish your task, like the Oracle® Application Server 10g Multimedia Tag Library for JSP User's Guide and Reference

Maybe you are looking for

  • "File does not exist: /etc/apache2/htdocs/ABC/script" why?

    Hey all, on Linux error.log I go: "File does not exist: /etc/apache2/htdocs/ABC/script" when I try to use the browser connecting to system. Why? Any help is fine. Thanks a lot in advance and best regards Michael

  • Titan offer is in processing or not

    i bought a printer 20/3/2014 and i register in your site to get the titan offer and i get a Emil to send the purchase invoice copy to [email protected] i also send a scanned invoice copy but i don't get any reply email. i just want to know if my tita

  • Why did I have to choose my disc on Startup?

    My company purchased a new intel imac (installed with LION) in December.  This morning when I turned on my computer, I had to choose the disk I wanted to startup from.  I have my internal HD and then an iomega external HD for time machine to back up

  • HT3893 Do i purchaise for my iphone before and uses now here in my ipad device??

    How is possible to get or to find my lost iphone 4s 32g  in belguim brussel guy's help it was last year june 10/13/2011 what is best things to do??

  • JTree DnD

    Hi all, I have a Jtree with Drag & drop (1.4 model). It is set up so you can only drag leaves but you can currently drop leaves to leaves. What I want to do is only drop leaves to non-leaves; but can't work out how how to do this. canImport(JComponen