Calendar image not showed

Hi group,
We are using Novell Access Manager to access to Apex Login Page, everything is working as expected, but calendar images are not showed properly.
For example:
Every image is displayed using next path: /portal/i/image_name.gif and it is displayed as expected.
But calendar images which are referenced by a function using path /i/asfdcldr.gif is not found and it is not showed as expected.
Does anybody have worked with Novell Access Manager and Oracle Apex together?, we have only this issue util this moment (calendar images are not displayed as expected)
Any workaround?
Thanks in advance.
Kind regards,
Francisco

Hi,
Are you working ona Report?. If so please check the concurrent program definition, it should be PDF or Postscript.
Thanks,
Robert

Similar Messages

  • Ios 7 calendar does not show events 2 years in the future

    Why does ios 7 calendar does not show events 2 years in the future?
    I've entered the events more than twice and it all shows up in the OSX calendar but not on my iphone.

    Just tested it works even 3 years ahead.
    Tap Calendars (bottom, middle) is All iCloud selected (tick mark)?

  • Calendar Widget Not Showing Upcoming Events

    I've upgraded to the latest N900 firmware (pr1.2) and ever since I have had a problem with the calendar widget. All the events are contained in the calendar when I open it however they are not displayed on the desktop widget.
    I've got events loaded for the month of June but for some reason these are not showing. Instead I have events showing for July, September and even December. I've tried removing all the entries and the re-adding them but this hasn't solved the problem. I also created another calendar and placed the entries in the new one, again this didn't work.
    Does anybody have any idea how I can resolve this problem.

    I have exactly the same problem with the Calendar Widget not showing all upcoming events. It will show events way in the future but skip events inbetween. I've tried all day with PC Suite 7.1 and Outlook 2007 and some freshly entered events come across for unknown reasons whilst others do not. No amount of changing local entries to synchronized ones, deleting all calendar info from the phone and re-syncing by USB cable or Bluetooth solves the problem.
    It worked fine before and, as you say, corresponds with the recent n900 software update.
    I SINCERELY HOPE NOKIA READ THESE BULLETIN BOARDS.
    Also, why isn't there a fully compatible PC Suite or Ovi Suite for the n900? I have a PC running Windows 7 and Nokia have told me in the past that they do not have a fully functional, compatible PC/Ovi Suite for Windows 7 and the n900. 
    IF ANYONE CAN HELP I WOULD GREATLY APPRECIATE IT

  • IOS 7 Calendar does not show appointments imported as VCS files in Microsoft Outlook / Exchange. Any solutions?

    iOS 7 Calendar does not show appointments imported as VCS files in Microsoft Outlook / Exchange in Windows 7. I discovered this when downloading itinerary.vcs files from Delta to mark flights in my calendar. The work around I found is as follows:
    Open the VCS file, this will create a Calendar entry in your Outlook,
    Open the created Outlook Calendar entry, go to File -> Save As and then select to save as ICS file.
    Delete original VCS-created appointment in your calendar to avoid multiple calendar.
    Open the re-saved ICS file.
    Appointment will now correctly synchronize with your iPhone iOS 7 calendar.
    If anyone has better alternatives to this process, please help out. Hopefully, Apple will fix this with the next iOS update.

    iOS 7 Calendar does not show appointments imported as VCS files in Microsoft Outlook / Exchange in Windows 7. I discovered this when downloading itinerary.vcs files from Delta to mark flights in my calendar. The work around I found is as follows:
    Open the VCS file, this will create a Calendar entry in your Outlook,
    Open the created Outlook Calendar entry, go to File -> Save As and then select to save as ICS file.
    Delete original VCS-created appointment in your calendar to avoid multiple calendar.
    Open the re-saved ICS file.
    Appointment will now correctly synchronize with your iPhone iOS 7 calendar.
    If anyone has better alternatives to this process, please help out. Hopefully, Apple will fix this with the next iOS update.

  • My calendar does not show map or weather

    I installed Mavericks, but Calendar does not show weather, map, or travel time.

    It may well be that Calendar.app refuses to access Google, but why would it need to if the new Maps.app in Mavericks is what it should be (and is) working with? Pasting in a complete, legitimate address should yield a map, no ifs ands or buts. That's why I filed a bug report at http://www.apple.com/feedback/ical.html . It might be helpful if others did the same. (All duplicates are coalesced within a bug reporting system by the triage manager. Duplicate reports demonstrate that folks consider it important -- that's in lieu of being able to vote on a bug, since Apple doesn't open up their bug tracking system to the public. If we don't file bug reports, but just yap about our complaints in these discussion groups, Apple won't track our issues.)

  • 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"/>

  • Another Images not Showing up thread

    I know there are multiple threads out there about images not showing up on the login page of application express, and I have browsed most of them without success.
    My images folder is in:
    C:\oracle\product\10.1.0\db_1\Apache\Apache\images\
    My dads.conf file has specified:
    Alias /i/ "C:\oracle\product\10.1.0\db_1\Apache\Apache\images\"
    Address of missing image in I.E. is:
    http://<host>:7777/i/htmldb/apex_logo.gif
    When I ran @apexins I specified /i/ for the virtual images directory.
    I am running Oracle Database 10gR2, with Oracle HTTP Server that came with the Oracle Database 10g Companion CD Release 2.
    I am using APEX 3.2.
    When I try to go to
    http://<host>:7777/i/
    I get:
    You don't have permission to access /i/ on this server.
    I also cannot login to APEX. When I type my username/password and click the Login button, it does nothing (nothing loads, nothing changes... nothing happens). I don't know if this is related?
    Thank you,
    ~Tom

    I found the problem -
    In my dads.conf file I had:
    Alias /i/ "C:\oracle\product\10.1.0\db_1\Apache\Apache\images\"
    When I really needed:
    Alias /i/ "C:\oracle\product\10.1.0\db_1\Apache\Apache\images/"
    Note the end slash after images changed from backslash to forward.
    Silly me.

  • Images not showing in the jlabel/jbutton

    Hello all,
    I've a package in which my cards directory is located along with all my src files and compiled classes. All my images ****.gif files are inside this directory.
    Then I've following the icon object.
    protected static JLabel lblDeck;The following code is used to get the image.
      String imgPath;
         imgPath = isImageExists("imgBG1.gif");
              if (imgPath == "")
              {     // If the image of Card Deck(imgDeck) is not Found
                   lblDeck = new JLabel();
                   lblDeck.setBackground(new Color(0, 64, 128));
                   lblDeck.setOpaque(true);
                   flagImgDeckFound = false;
              } else {
                   // If the image of Card Deck is Found
                   imgDeck     = new ImageIcon(imgPath);
                   lblDeck = new JLabel(imgDeck);
    // Check if the image exists else return "";
      protected String isImageExists(String imgName) {
              java.net.URL imgURL = getClass().getResource("cards/" + imgName);
             if (imgURL != null)
             {     return (imgURL.toString());     }
             else
                  JOptionPane.showMessageDialog(null, "File not Found: " + imgURL);
                  return "";
         }I'm still unable to get the image in the jlabel!
    When i checked the path, it is exactly returning the path of the file.
    But its neither loading the image into the jlabel nor is it returning "".
    This is just the label part i've other jbuttons also. Even they are not displaying any images.

    aLkeshP wrote:
    can everyone see this thread?
    YES FER-CHRISE-SAKE.
    Just how many times do you intend posting the same identical question?
    images not showing in the jlabel/jbutton
    Problem in imageicon
    iconImage on JButton & JLabel
    Re: images not showing in the jlabel/jbutton

  • Likely bug with external editing (in CS5 not CS6 beta) and edited image not showing back up in LR

    I have come across something strange today that I've not seen before. I'm running LR 4.0 under Win7 64-bit. I usually use Photoshop CS6 beta as my external editor, but invoke CS5 when I have to use some tools that don't support the beta. Here is the scenario:
    * I have CS5 open
    * I externally edit an image in CS5 and Save it from CS5 when I'm done
    * The edited image does not show up in LR
    * I close LR and reopen it
    * There is the edited image!
    I have duplicated this many times this evening. I don't think I've seen it when I've used CS6 beta.

    Something strange is going on because I had the behavior reported of edited image not showing up after using another filter, Nik Silver Efex Pro 2.

  • My iphone calendar wont sync with my outlook calendar. My inbox seems to be syncing just fine, its just that my iphone calendar is not showing the same events i have in outlook.

    my iphone calendar wont sync with my outlook calendar. My inbox seems to be syncing just fine, its just that my iphone calendar is not showing the same events i have in outlook.

    Hi
    I have the a similar problem - only I can't actually get the calendar to show up. I've added the account and it's showing Mail and Notes but not Calendar. But I'd like it to show the outlook calendar.
    I'm going to
    Go to settings > mail contacts calendar
    select your account that's affected
    But under that account there isn't a calendar showing and I can't see any options to add it?

  • Some Google calendar entries not showing up on phone

    On a couple of occaisions, I've had a whole day of Google Calendar entries not show up on my Palm Pre. Today, just this mornings entries showed up, but the two entries I have for this afternoon don't show up on my phone. I've tried syncing manually a couple of times. I've tried syncing over EVDO/Data only (turned off wireless). I've tried deleting an entry, re-adding it, and re-syncing and no joy.
    What now?
    UPDATE: So, once I got home I looked into changing to syncing via EAS. I didn't like some of the 'features' of that route, so I went nuclear. I deleted the gmail account from the Calendar application and re-added it. After syncing completed, I found my missing entries... So, anyone got any ideas of additional data to collect?
    Post relates to: Pre p100eww (Sprint)
    Message Edited by sgl on 01-12-2010 05:57 PM

    Deleting my gmail account and re-adding it does not clear up the problem, it hides the symptoms. What if it didn't work, do I reinstall the OS? I've had two occurences of this--none of last Friday's calender entries were in my calendar and yesterday afternoon's entries were missing. There is a root cause and it needs to be found and sorted.
    I missed a meeting yesterday because my phone did not sync up with my Google calendar. This is a fundamental feature of of the Palm WebOS smartphones. Calendar syncing is a fundamental feature of all smartphones and a smartphone that doesn't do this is no longer smart.
    Are there other people who have seen this symptom? Is there something I can do to _help_ gather data for the Synergy team to find the root cause?

  • Crystal Report Images Not Showing - JSP inside /WEB-INF folder

    Hi Experts,
    I am using Crystal report for Eclipse and also using Struts2 and tiles framework combination.
    The problem is when viewing the report all I've got is red X on all images and the graph image also not showing. This is when I use tiles and my jsp is inside the web-inf folder.
    This is my struts link: href="s:url value='/report/reportOpen.action?report=1'
    I've checked that the path to the viewer generated HTML is not correct. see code below.
    src="../../../crystalreportviewers/js/crviewerinclude.js"
    But when I test to access a simple jsp viewer that resides on the web root folder, this works fine but of course this is not what I want to have. I need to have my banner and menus on top of the report page (using tiles)
    This is my jsp link: href="s:url value='/ReportViewer.jsp?report=1'
    Viewer generated HTML below.
    src="crystalreportviewers/js/crviewerinclude.js"
    This might be a common problem and that you can share to me your solution.
    Note: I removed the script tags because I can't submit this entry.
    Thank you  in advance,
    Regards,
    Rulix Batistil
    Crystal Report Images Not Showing - JSP inside /WEB-INF folder

    Hi Saravana,
    After a few experimentation from your idea i was able to figure out the problem and now it is working.
    I don't have to copy the folder to where my jsp resides but still maintains it in the root location:  web/crystalreportviewers
    The changes should always be in web.xml.
    1st: change the crystal_image_uri value to ../crystalreportviewers
    2nd: change crystal_image_use_relative value to "web"
    Change to "web" instead of webapp because that is what I named my web root folder.
    <context-param>
              <param-name>crystal_image_uri</param-name>
              <param-value>../crystalreportviewers</param-value>
         </context-param>
         <context-param>
              <param-name>crystal_image_use_relative</param-name>
              <param-value>web</param-value>
         </context-param>
    Thank you. You showed me the way on how to solve the 3 day problem.
    BTW, my next problem is when clicking on any buttons prev/next/print/export, I got this error HTTP Status 404.
    Well, at least for now I can view my initial report.  I just need to figure out the next issue and with the help of the great people here in the forum.
    Thanks a lot.
    Regards,
    Rulix
    Edited by: Rulix Batistil on Nov 26, 2008 7:27 AM

  • Droid razr maxx calendar does not show up on gmail calendar even though it says that it has synced?

    droid razr maxx calendar does not show up on gmail calendar even though it says that it has synced?

    I had this same issue. I solved it finally by downloading the free "official" google calendar disabling the phone calendar app (Google Calendar - Android Apps on Google Play) and disabling the phone calendar. Then you need to choose your gmail account to sync with your calendar app. Now my entries on the phone are showing up on my PC.

  • Calendar.app not showing First Day of Week selected in iCal

    I have selected Monday as the first day of the week in iCal. After syncing, Calendar.app on my iPhone 4 does not show Monday as first day of week. My original iPhone 2G (3.1.3, jailbroken) does show the correct start day, Monday.)
    I do not need assistance with my iPhone 2G. I need a solution for my iPhone 4.
    How do I get my iPhone 4 to be in sync with my other calendars?

    That's a real pain. I'm in Australia and the regional settings have Monday as the first week, which throws me out because all my calendars and even settings in iCal have Sunday as the first day of the week (which is what it's supposed to be). To get what I want, I have to set my country as New Zealand, and this messes up my phone number formats (closest to Australia than any of the others that start the week correctly though). It should be an option in the settings!

  • My Google Calendar will not show up on iPhone 4S with iOS 7.1.1. What do?

    I just got an iPhone 4S (bougtt used through a third party, in case it may make a difference) and I'm having issues connecting Google's calendar.
    I've followed instructions here: http://michaelhyatt.com/how-to-setup-google-calendar-on-your-iphone-4.html;
    here: http://www.craigbailey.net/google-calendars-not-showing-in-ios7/
    and of course, here: https://support.google.com/a/users/answer/139206?hl=en
    But so far, nothing has worked.
    I should note that I can see the account itself under the Mail, Contacts, Calendars tab, the Calendars option is switched on and all other Google features (e.g. Gmail, notes and contacts) are operating fine. I also have an iPad mini which I bought in June 2013 (first hand) and has been displaying Google Calendar without any issues from Day 1. I've compared the settings on both devices and could not find any difference.
    In short, I'm at a complete loss here and would greatly appreciate some help.

    Same issue when I try to select the most recently taken photo thumbnail, bottom left: freezes.Problem is fairly recent, I don't think it ever happened before the last update.

Maybe you are looking for