Firefox Browsing caching issues when using OBIEE

We have experience a problem when using Firefox. It seems the browser caches the results, of an analysis for example, and even though we have made changes to the data, flushed the OBIEE cache, we still see older results because the older results were cached in the browser. We have to go to options -> history -> clear recent history to get the new results. (And sometimes this doesn't seem to do the trick.)
Anybody else seen this problem or have a resolution?
Thanks,
Brian

There are different caches in OBIEE. Probably you hit stale entries in "Presentation Server Cache".
This can be controlled by adding the following to your instanceconfig.xml
<CacheMaxExpireMinutes>5</CacheMaxExpireMinutes>
see also here:
http://obiee101.blogspot.ie/2008/11/obiee-presentation-services-cache.html
or here:
http://unleashobiee.wordpress.com/2011/01/12/purging-obi-server-and-presentation-server-cache/

Similar Messages

  • About cache issue when using push2phone and callerino

    I have made push2phone and callerino functions working well,but the issue is when we push messages to the phone,the phoen always displayed the message sent last time firstly then the message this time was displayed,seems there was cache issue,so does the callerinfo function.I have no idea about where the cache issue occurs,also how can I let the message be displayed as "tab" method on the phone? Please help !Thanks in advance.

    Sorry to bother you again, I found I was wrong in describing my problem. I found out that I sent the CiscoIPhoneExecute xml to the phone last time, not the CiscoIPhoneImageFile xml.
    The CiscoIPPhoneExecute xml is like:
    http://192.168.1.2:8080/test/push2phone.jsp?action=get"/>
    And "http://192.168.1.2:8080/test/push2phone.jsp?action=get" returns the CiscoIPPhoneImageFile xml, like this:
    Image Title goes here
    Prompt text goes here
    0
    0
    http://192.168.1.2:8080/test/pngs/attention.png
    so when I send the CiscoIPPhoneExecute xml to a phone, the phone will display the file attention.png on the screen with the sound chime.raw, then I press the "exit" button, the attention.png on the screen disappears. But if I then send the CiscoIPPhoneExecute xml with the "http://192.168.1.2:8080/test/push2phone.jsp?action=get" that returns the CiscoIPPhoneImageFile that contains a different png file, for example "warning.png", the "attention.png" will appear for a short time during the time when "warning.png" is downloading, then "warning.png" appears. I have no idea why that happens. I don't want to see "attention.png" when I'm sending "warning.png". What can I do?
    I've tried to directly sent the CiscoIPPhoneImageFile xml to a phone, everything goes well, no "cache" problems. but I have no idea how to add the sound "chime.raw". I want the png files to be sent like short messages with sounds. Please help!
    Thanks a lot.

  • I can only open one Firefox browser window. When I click the firefox icon from desktop or taskbar to open up another browser window it does not open. I am ablt to open up new tabs within the one window.

    I can only open one Firefox browser window. When I click the firefox icon from desktop or taskbar to open up another browser window it does not open. I am ablt to open up new tabs within the one window.

    Have you tried: click Firefox button > New Tab > New Window '''''OR''''' CTRL+N '''''OR''''' File > New Window (if using the Menu Bar)
    Once open, Firefox locks the Profile that is in use and you can not open another window with that Firefox version and Profile combination using the Windows Desktop icon or the Windows Programs list.

  • I instAlled link gopher 1.3.2 in firefox and it wont show up on my firefox browser so i can use it

    i instAlled link gopher 1.3.2 in firefox and it wont show up on my firefox browser so i can use it. also i can not get any addons to show up. i had downthem all and i got that to to show by clicking view/toolbars/customize and dragging it to my toolbar but even that does not show up and gopher 1.3.2 does not show up in view/toolbars/cuntomize. how can i get these addons to show up?

    This is probably some corruption in the settings file that stores the on-screen position of the Firefox window. Could you try the steps in this thread: [https://support.mozilla.org/en-US/questions/980358 opens off monitor screen]. Any luck?

  • JTable text alignment issues when using JPanel as custom TableCellRenderer

    Hi there,
    I'm having some difficulty with text alignment/border issues when using a custom TableCellRenderer. I'm using a JPanel with GroupLayout (although I've also tried others like FlowLayout), and I can't seem to get label text within the JPanel to align properly with the other cells in the table. The text inside my 'panel' cell is shifted downward. If I use the code from the DefaultTableCellRenderer to set the border when the cell receives focus, the problem gets worse as the text shifts when the new border is applied to the panel upon cell selection. Here's an SSCCE to demonstrate:
    import java.awt.Color;
    import java.awt.Component;
    import java.awt.EventQueue;
    import javax.swing.GroupLayout;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import javax.swing.JPanel;
    import javax.swing.JTable;
    import javax.swing.border.Border;
    import javax.swing.table.TableCellRenderer;
    import javax.swing.table.TableColumn;
    import sun.swing.DefaultLookup;
    public class TableCellPanelTest extends JFrame {
      private class PanelRenderer extends JPanel implements TableCellRenderer {
        private JLabel label = new JLabel();
        public PanelRenderer() {
          GroupLayout layout = new GroupLayout(this);
          layout.setHorizontalGroup(layout.createParallelGroup().addComponent(label));
          layout.setVerticalGroup(layout.createParallelGroup().addComponent(label));
          setLayout(layout);
        public Component getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) {
          if (isSelected) {
            setBackground(table.getSelectionBackground());
          } else {
            setBackground(table.getBackground());
          // Border section taken from DefaultTableCellRenderer
          if (hasFocus) {
            Border border = null;
            if (isSelected) {
              border = DefaultLookup.getBorder(this, ui, "Table.focusSelectedCellHighlightBorder");
            if (border == null) {
              border = DefaultLookup.getBorder(this, ui, "Table.focusCellHighlightBorder");
            setBorder(border);
            if (!isSelected && table.isCellEditable(row, column)) {
              Color col;
              col = DefaultLookup.getColor(this, ui, "Table.focusCellForeground");
              if (col != null) {
                super.setForeground(col);
              col = DefaultLookup.getColor(this, ui, "Table.focusCellBackground");
              if (col != null) {
                super.setBackground(col);
          } else {
            setBorder(null /*getNoFocusBorder()*/);
          // Set up our label
          label.setText(value.toString());
          label.setFont(table.getFont());
          return this;
      public TableCellPanelTest() {
        JTable table = new JTable(new Integer[][]{{1, 2, 3}, {4, 5, 6}}, new String[]{"A", "B", "C"});
        // set up a custom renderer on the first column
        TableColumn firstColumn = table.getColumnModel().getColumn(0);
        firstColumn.setCellRenderer(new PanelRenderer());
        getContentPane().add(table);
        pack();
      public static void main(String[] args) {
        EventQueue.invokeLater(new Runnable() {
          public void run() {
            new TableCellPanelTest().setVisible(true);
    }There are basically two problems:
    1) When first run, the text in the custom renderer column is shifted downward slightly.
    2) Once a cell in the column is selected, it shifts down even farther.
    I'd really appreciate any help in figuring out what's up!
    Thanks!

    1) LayoutManagers need to take the border into account so the label is placed at (1,1) while labels just start at (0,0) of the cell rect. Also the layout manager tend not to shrink component below their minimum size. Setting the labels minimum size to (0,0) seems to get the same effect in your example. Doing the same for maximum size helps if you set the row height for the JTable larger. Easier might be to use BorderLayout which ignores min/max for center (and min/max height for west/east, etc).
    2) DefaultTableCellRenderer uses a 1px border if the UI no focus border is null, you don't.
    3) Include a setDefaultCloseOperation is a SSCCE please. I think I've got a hunderd test programs running now :P.

  • Does resteasy API have class loader issues when using via OSGi

    Does resteasy API have class loader issues when using via OSGi

    Hi Scott,
    THis isnt an answer to ur Question, but could u tell me which jar files are needed for the packages:
    com.sap.portal.pcm.system.ISystems
    com.sap.portal.pcm.system.ISystem
    and under which path I coul dfind them.
    Thnx
    Regards
    Meesum.

  • Odd issue when using UDT (user defined type)

    Hi all,
    11g.
    I ran into an odd issue when using UDT, I have these 4 schemas: USER_1, USER_2, USER_A, USER_B.
    Both USER_1 and USER_2 have an UDT (actually a nested table):
    CREATE OR REPLACE TYPE TAB_NUMBERS AS TABLE OF NUMBER(10)USER_A has a synonym points to the type in USER_1:
    create or replace synonym TAB_NUMBERS for USER_1.TAB_NUMBERS;USER_B has a synonym points to the type in USER_2:
    create or replace synonym TAB_NUMBERS for USER_2.TAB_NUMBERS;Both USER_A and USER_B have a procedure which uses the synonym:
    CREATE OR REPLACE PROCEDURE proc_test (p1 in tab_numbers)
    IS
    BEGIN
      NULL;
    END;And in the C# code:
    OracleConnection conn = new OracleConnection("data source=mh;user id=USER_A;password=...");
    OracleCommand cmd = new OracleCommand();
    cmd.Connection = conn;
    cmd.CommandText = "proc_test";
    cmd.CommandType = CommandType.StoredProcedure;
    OracleParameter op = new OracleParameter();
    op.ParameterName = "p1";
    op.Direction = ParameterDirection.Input;
    op.OracleDbType = OracleDbType.Object;
    op.UdtTypeName = "TAB_NUMBERS";
    Nested_Tab_Mapping_To_Object nt = new Nested_Tab_Mapping_To_Object();
    nt.container = new decimal[] { 1, 2 };
    op.Value = nt;
    ......This code works fine, but it raises an error when I change the connection string from USER_A to USER_B, the error says:
    OCI-22303: type ""."TAB_NUMBERS" not foundInterestingly, if I change op.UdtTypeName = "TAB_NUMBERS"; to op.UdtTypeName = "USER_2.TAB_NUMBERS", the error is gone, and everything works fine.
    Anyone has any clues?
    Thanks in advance.

    Erase and reformat the ext HD. Then, redo the SuperDuper! backup.

  • Bluetooth issues when using smartwatch on the z1s

    I'm having some Bluetooth issues when using my smartwatch. I usually use my z1s with my car radio via Bluetooth to listen to music and for making calls. Now that I got a sony smartwatch I always got problems with the calls. It looks like that the Bluetooth turns off during the call when I'm using the smartwatch. I already tried by deleting and pairing again the z1s, but nothing works. Not sure if maybe the z1s does not support the smartwatch and the care radio Bluetooth connection at the same time. However it works fine when playing music! The problem is just with the calls. This never happens before I got the smartwatch.

    I have the Tmobile Z1s and a SW2 and have the same issues with multiple devices:
    1) Bose Soundlink Mini
    2) Sony MBR-100
    3) My car's bluetooth
    4) Ford Sync
    5) Sony SBH20
    6) Motorola S305
    If the phone connects to the A2DB device, it will typically play fine for several minutes. Then, audio will drop out. If I do nothing, after several minutes my watch will vibrate to show it has disconnected. Sometimes audio then comes back, and sometimes it doesn't.
    Sometimes my phone will not connect to my car. Then, if I can get it to connect, it will only allow for phone audio, not media audio. 
    This issue has been on (2) Z1s's with the SW2. The first I returned due to touch screen issues, which the second one also has. All of the devices above worked perfectly fine with my Xperia Z, Galaxy S2, HTC One, etc. The Xperia Z and the SW2 never had any problems.
    Honestly, this phone has been incredibly frustrating. If the upcoming updates for either the SW2 or Z1S don't fix this issue, I'm going to return it and get something else.

  • Firefox & Yahoo Mail - Issue w/ Using Contacts when composing. Msg says contacts not found. Problem w/ Firefox or Yahoo?

    I am using Firefox 6.0.2. I use Yahoo for e-mail. Recently, I always have issues when trying to use Yahoo contacts. They are not available when composing an e-mail. Is this a compatibility issue w/ Firefox 6.0.2 & Yahoo Mail Plus?
    Thanks.
    Terri Taylor

    I have no access to my Yahoo contacts. I cannot search or browse them. The only way I can get ONE is by adding the contact from an email. Then, if I ask to see more contacts either through the partial alphabet buttons or to see the entire list of contacts, I'm back to the same search page where NOTHING happens. Did I say this is VERY frustrating?? HELP

  • Since I have updated to Firefox version 5, my Firefox browser just hangs when I am logged in to my laptop without Admin privilege. If I am logged into my laptop as Admin then Firefox is working well is this a known issue.

    Since I have updated to Firefox version 5, I cannot use Firefox on my laptop as a normal user without Admin privilege. Whenever I try to run Firefox, the browser window just says connecting and hangs. It looks like it also uses all the CPU and stops all other processes on the computer. Even the computer clock stops working.
    If I am logged into my laptop as Admin then Firefox works well as it used to with previous versions. I am using Windows XP service pack 3.

    Hi Tylerdowner -
    Thanks for your suggestion.
    I already tried a Reset, but all that did was lose all my settings , search engines etc. and one or two add-ons - as expected.
    I also already tried updating my graphics driver - both manually, and with Windows Update (Automatic Updates is set to ON anyway, and I've checked the optional ones as well, and though there was nothing relevant there, I installed most of them anyway!) Apparently I'm using the most up-to-date and appropriate driver already!
    Oh dear........
    Going to try turning off hardware acceleration next....

  • Firefox browser compatibility issues webdynpro for java application

    Hi,
    we have migrated SAP net weaver SP 21 and also to IE8 and Firefox. we have compatibility issues in Firefox like input fields, labels and command buttons are not properly aligned when comparing with IE 8.
    Could you please give suggestions to fix this problems.
    Thanks.
    Parthiban

    Hi Parthiban,
    Please check the SAP NetWeaver 7.0 Product Availability Matrix (PAM) in the Service Market Place http://service.sap.com/pam.
    [Check here |http://saplab.org/wp-content/SAP-NetWeaver-7.0-PAM.pdf]and verify you firefox browser versions compatibie for webdynpro
    Hope it will helps
    Regards
    Arun Jaiswal

  • Performance issues when using Smart View and Excel 2010

    Hello, we are experiencing very slow retrieval times when using Smart View and Excel 2010. Currently on v.11.1.3.00 and moved over from Excel 2003 in the last quarter. The same spreadsheets in 2010 (recreated) are running much slower than they used to in 2003 and I was wondering if anyone else out there has experienced similar problems?
    It looks like there is some background caching going on as when you copy and paste the contents into a new file and retrieve it is better.....initially. The size of the files are generally less than 2mb and there aren't an expecially large number of subcubes requested so I am at a loss to explain or alleviate the issues.
    Any advice / tips on how to optimise the performance would be greatly appreciated.
    Thanks,
    Nick

    Hi Nick,
    Office 2010 (32 bit) only is supported.
    Also check these documents:
    Refresh in Smart View 11.1.2.1 is Slow with MS Office 2010. (Doc ID 1362557.1)
    Smart View Refresh Returns Zeros (Doc ID 758892.1)
    Internet Explorer (IE7, IE8 and IE9) Recommended Settings for Oracle Hyperion Products (Doc ID 820892.1)
    Thank you,
    Charles Babu J
    Edited by: CJX on Nov 15, 2011 12:21 PM

  • Firefox is very slow when using RDP

    Firefox is fast when using Windows directly. But when using RDP it is very slow. For example, empty new tab takes about 6 seconds to open. The RDP connection is fast and other programs response immediately (e.g. browsing of the same pages in IE is fast).
    What is the problem with Firefox?

    Could it be graphics hardware acceleration??
    You probably need to restart Firefox in order for this to take effect, so save all work first (e.g., mail you are composing, online documents you're editing, etc.). On the remote system:
    orange Firefox button ''or'' classic Tools menu > Options > Advanced
    On the "General" mini-tab, uncheck the box for "Use hardware acceleration when available"
    Then restart Firefox. Does that make any difference?

  • Internet freezes with Safari, Firefox & Chrome, but not when using MS IE

    When using my macbook wirelessly and am in the Mac OS, my internet freezes after 5 minutes, doesn't matter if I am using Safari, Firefox or Chrome. If I shut down and boot up Windows XP and use IE, it does not freeze up. I use my iMac with the same router wirelessly and never have any issues with Sarari... Can anyone suggest what I should try? I have removed and reloaded Safari, Firefox and just tried Chrome, with the issue still happening...
    Thanks,

    The web sites visited are pretty much the same on either the iMac or MacBook. These are well known sites for the most part. I always keep updates current with any of the software I use including Adobe...

  • FIrefox Browser ZOOM problem- When I press the 9 number key FIrefox zooms out and when I press a 0 number key Firefox zooms in

    FIrefox Browser problem- Suddenly now when I press the 9 number key (or 6) FIrefox zooms out and when I press a 0 number key Firefox zooms in. This just started happening 2 days ago. I am using a Mac and I have the latest Firefox . No updates of any kind have occurred in the past 4-5 days, so I must have inadvertedly activated this.
    How can I deactivate this?
    Note to Mozilla support: Please do not close this thread- I believe that it most specifically pinpoints the actual problem
    that I am facing, so hopefully I can find others with a similar problem (& solution!)
    The older thread can be ignored/closed.
    Also- I tried to respond to 2 tech support emails that I received, but I was unable to do so.
    (

    Hi lachem, you can't reply by email, you need to return to your thread in order to post a reply. If you need a link: https://support.mozilla.org/questions/1050646
    I'm not a moderator, so I'll just list a link to the earlier discussion: [https://support.mozilla.org/questions/1050032 The Firefox "search for text when I start typing feature" has just stopped working correctly]

Maybe you are looking for

  • Is this a good SSD for my mid 2009 13 inch MacBook Pro?

    http://www.ebay.co.uk/itm/BNIB-SANDISK-120GB-2-5-ULTRA-SATA-II-SOLID-STATE-DRIVE -120GB-SATA-3GB-s-SSD-/120820305054?pt=UK_Computing_HardDrives_RL&hash=item1c217 38c9e#ht_3905wt_1013 It's a Sandisk 120GB Sata II SSD with read and write speeds of 280

  • Email at the time of PO creation

    Hi , I have a requirement in Purchase order where if net value (at header level) exceeds the certain amount, an email should trigger to the specified email address. Can any one tell me UE/BADI or enhancement point .The only concern I have is , if any

  • My i phone is not working good

    hi.my iphone is not working good. sometimes the buttons not works....

  • SRP541W WAN Load Balancing and NAT

    Hello All, New to the forums. Thanks for taking the time to read my post. I recently switched my office over from a RV042 to SRP541W. We have 2 DSL lines and have used the Load Balance feature on the RV42 to make the best of the connecton speeds. Whe

  • Internet Explorer Versions

    Hi, I know this is not the place to be asking this kind of question, however I also know the people that look at the questions here are more likley to know the answer to this question. Does anyone know how install IE 5.5, IE 6 and IE7 all on the same