Disable caching  in Workspace

Hi
Anyone knows how to disable caching in Workspace. It's because I have made a custom renderform and it is not every time i open a pdf that it runs the renderform?
So I want to make sure that the renderform is ran every time a pdf is opend in Workspace.

Hi
Anyone knows how to disable caching in Workspace. It's because I have made a custom renderform and it is not every time i open a pdf that it runs the renderform?
So I want to make sure that the renderform is ran every time a pdf is opend in Workspace.

Similar Messages

  • How To Disable Caching Of Workspace Name

    Hello Everyone.
    I have an issue that I suspect many others have also encountered. However, searching through this Forum and on the web has not gleaned any solution.
    Here's the situation.
    I have an IE browser open to my Apex application workspace. If I now open a second IE browser (note: I do not mean simply opening up a new tab in the first browser but, rather, opening up an entirely new IE browser window) and proceed to log into a different workspace, I find that my first browser has automatically logged me out of the original workspace.
    This is frustrating. During development, I'm often wanting to open browsers into several different workspaces so that I can compare what I've done or copy/paste from one workspace into another. As soon as I log into a different workspace in one browser, all of the other browser windows automatically log me out.
    I am seeing this behavior in both IE8 and IE9. I also see the same thing if I have two or more Firefox (latest version: 4) browsers open, each into a different workspace. I've not tried with any other browsers (Opera, etc.).
    I've looked at the IE (and Firefox) "Internet Options" and do not see anything that would account for this.
    Is this behavior something that can be controlled from within Apex itself or is there some browser setting I need to set to prevent this?
    Thank you for any help/advice.
    Elie

    Hello, again, Varad.
    Again, you've come to my aid, and I'm grateful.
    I was not aware of that Firefox article. I read through it. All I can say is that it seems alot to do to achieve the same functionality that IE8/9 already provides.
    Perhaps I'm misinderstanding, but the article implies that one must create profiles for the number of different (in this case) Apex workspaces I intend on using, as if I must set this up prior to doing any development work. In IE, however, there is no required setup. Just click the "File -> New Session" option and I have a new IE browser with no concern of caching my previous session id. Seems much more flexible and easy.
    Still, I'll give it a go and see how it works.
    Thank you so much for your kind help. It's much appreciated.
    Elie

  • Plz help.  How disable caching SQLJ statement  on WebLogic server 10.3?

    Plz help.
    How disable caching statement by SQLJ on WebLogic server?
    what the actual problem:
    1. create or replace view vtest as select object_name from dba_objects where rownum<200
    2. test.sqlj
      #sql dx testIterator = {
         select object_name from vtest
       int cnt=0;
       while( testIterator.next() ){
         cnt++;
       System.out.println("Count: "+cnt);
    3. Restart WebLogic and deploy project
    4. Run test on server, in log file
    "*Count: 199*"
    5. create or replace view vtest as select object_name from dba_objects where rownum<10
    6. Run test on server, in log file
    "*Count: 199*"
    7. Restart WebLogic
    8. Run test on server, in log file
    "*Count: 9*"

    Hi bud,
    Have you tried using WLST for what you are trying to achieve?
    Please take a look at the following links:
    http://docs.oracle.com/cd/E11035_01/wls100/config_scripting/domains.html
    http://docs.oracle.com/cd/E13222_01/wls/docs91/config_scripting/domains.html
    http://docs.oracle.com/cd/E13179_01/common/docs21/interm/config.html
    Hope this helps.
    Thanks,
    Cris

  • How to disable cache for a particular Report in obiee 10g?

    HI
    My name is Rani .Learning obiee10g ifaced 1 interview in that they asked me like how u disable cache for a particular report?

    In the advanced tab of the report, under prefix you need to mention:
    SET VARIABLE DISABLE_CACHE_HIT=1;
    Refer below link
    http://tipsonobiee.blogspot.com/2009/06/step-by-step-to-bypass-all-caches.html
    Thanks

  • Disabling cache usage in IE by java(this is really very important and urgen

    Hi,
    i would like to know if it is possible to disable cache memory(tempinternetfile) for IE.
    Since my jsp pages have the meta tag <META HTTP-EQUIV="Pragma" CONTENT="no-cache"> some of the pages are being stored in temporary internet files folder and being called from there and this cause really big problems since all the data has to come from database,
    they just came from cache and none of the changes are being displayed.
    Thanks

    Try add page expire date:
    <META HTTP-EQUIV="expires" CONTENT="Fri, 31 Dec 2001 23:59:59 GMT">

  • How to Disable caching of all SSL pages?

    May anyone can help me, how to Disable caching of all SSL pages in an web application?
    Thanks in advance.
    Balamurugan.K

    sabre150 wrote:
    kajbj wrote:
    It doesn't matter that you are using SSL if I understood your question correctly. I'm not certain but I think it does matter. As I understand it, no SSL/HTTPS pages should be cached since this could represent a security weakness. I was a bit vague. I meant that it doesn't matter what he is using under the hood since he isn't doing any "programming" if he's only serving pages. Everything should be related to configuring the server correctly, and/or using the correct header directives (not sure since I'm not a web developer)

  • How to disable cache implementation in 8.1 SP6 for entity beans

    How to disable cache implementation in 8.1 SP6 for entity beans
    In our production environment, we want to disable cache implementation for entity beans. We are using weblogic 8.1 SP6.
    Weblogic cache implementation has been causing many cachefull exceptions so we want that it fetches the data from database everytime instead of cache.

    Check the "max-beans-in-cache" setting in your weblogic-ejb-jar.xml. The cache full exception, means that a new bean could not be created because of this cache being full.
    Nothing to do with fetching from the database directly.
    If you really want direct fetches then do not use beans at all. Consider using direct JDCB/SQL calls (without a entity bean) to fetch huge data.
    Let's again review your application based on the below explanation before making a decision on which configuration change to perform:
    If you truly have many ejbs simultaneously enrolled in transactions, then yes, the cache must be big enough to hold all the instances.
    Your cache must have a max size large enough to handle your peak simultaneous transaction load.
    Also, try to ask the following query to your application developer. Does every user actually have to have more than one bean in the cache ? Are many of these values read-only reference values that are not updated ?
    SOLUTION CHOICE:
    1. If you are testing with more number of users simultaneously, then you will need to increase the "max-beans-in-cache" setting in your weblogic-ejb-jar.xml to match the load.
    2. If you have few users but still seeing a lot of beans, then consult with your application developer and try to ask the above questions (Does every user have more than......) and based on that try to redesign/tune your application to make it an effective Entity bean model.
    3. If you have queries where huge result sets are returned, consider using plain/direct JDB/SQL calls.
    Arun

  • Minor error in docs in Chapter "Disable Cache and Cache" (PDF page 76)

    Hi Data Modeler-Team,
    The explanation to option "Disable Cache and Cache" (PDF page 76) is wrong. In the 2nd sentence there is a "not" missing.
    http://docs.oracle.com/cd/E18464_01/doc.30/e15802.pdf
    Thanks,
    Blama
    (WinXP, Version 3.0.0.665)

    Hi Blama,
    Thanks for reporting this error, which has been fixed in the documentation for Data Modeler version 3.1.
    An Early Adopter release of version 3.1 is now available from http://www.oracle.com/technetwork/developer-tools/datamodeler/sqldevdm31ea-download-515132.html
    David

  • How to disable caching for pcui applications

    Somehow the PCUI applications are cached and when we go to some opportunity and come back to the previous one,
    we can still see the changed data which is not actually saved to the Box but if we refresh the page it will go off.
    If we click on save, and if it has some error ,it wont save the opportunity but the changed data remains in the page something like Work protect in Portal.Couldnt find any options in portal and disabling cache for Iview didnt help.How can we disable the PCUI or Sever cache so that the unsaved data goes off..
    George

    Hello George,
    This can be done in two ways, one you can use transaction CRM_BSP_STATE_
    ERASE and delete all the previous states.
    Otherwise please append crm_bsp_restore=FALSE in the URL. This is
    explained in SAP Cookbook. Please have a look at the same. Kindly let
    me know for more information on the same.
    This issue  happens
    because of state manager which saves the state for individual
    application and individual user . This can be switched off by adding
    a URL parameter "CRM_BSP_RESTORE=FALSE" in the query string.
    Kindly please reffer the cook book for further  detail.
    Can you please try this & check if this helps.
    Thanks & Regards,
    Bhavya

  • Disable Cache mode for a specific Mailbox

    Hi
    Is it posibble disable cache mode for a specific mailbox ??

    As per the information and details provided by you, to disable Cache Mode for a specific mailbox, please follow these steps: -
    The information provided by
    Amy.Wang is correct, Exchange has no built in function to disable cached mode for a specific mailbox. And to
    configure Cached Exchange mode setting by using Group Ploicy, please follow these steps: -
    To do this, first you need to download
    custom administrative template.
    Download and extract the templates to your domain controller.
    Start > Admistrative tools > Group Policy Management Console > either create a new policy and link it to your
    USERS or edit an existing policy.
    Navigate to:
    User Configuration > Policies > Administartive Templates
    Right click >
    Add/Remove Templates.
    Add > Navigate to the folder where you extracted the templates >
    ADM Folder > en-us folder (change depending on your locale) > Outlk14.adm > Open.
    Now Navigate to:
    User Configuration > Policies > Administrative Templates > Classic Administartive Templates > Microsoft Outlook 2010 > Account Settings > Exchange > Cached Exchange Mode.
    Locate “Use Cached Exchange Mode for new and existing Outlook profiles”
    Set the policy to
    Disabled > Apply OK > Close the policy editor. Locate “Use Cached Exchange Mode for new and existing Outlook Profiles”
    Then get the clients to log off and back on again, wait a couple of hours, or manually run
    “gpupdate/ force” on them.
    I hope this information will be helpful for you.
    Thanks and regards
    Ashish@V

  • Programatically disable cache of a tab

    What api should i use to programatically disable cache of a tab.
    Any idea will be helpful
    Thanks
    Harish

    I also want to know how to programatically clear cache?
    Harish

  • How can I *permanently* disable caches?

    I've turned on the Develop menu and selected 'Disable Caches'. However, this option does not 'stick', as after a few subsequent minutes of surfing, the option will turn itself off and re-enable caches on its own. How can I stop Safari from doing that?
    I have tried the old trick for disabling caches (i.e. deleting the cache folders and using the 'touch' command to create empty files with the same names as those folders), but this will cause Safari to crash when the 'Warn when visiting fraudulent websites' option is turned on. So that's out.

    From the Finder type shift-command-G or Go->Go to folder...
    /var/folders/IZ is the path. Within the IZ folder you will see another folder with a very long, random character name. Open that folder and you will a folder named -Caches-. Within the -Caches- folder you find the folder com.apple.Safari. Inside the com.apple.Safari folder are the files Cache.db and SafeBrowsing.db. These are Safari's actual caches in Leopard. This is also the reason some people are having trouble with Safari 3.2. If they have disabled Safari's cache using the terminal or a utility like Onyx, Cocktail, or any of the other Safari utilities that disable the cache then Safari 3.2 can't access the SafeBrowsing.db and apparently crashes. This is also why turning off the fraudulent website preference causes some user's Safari to start working again. And of course, a whole lot of people were obsessed with speeding up Safari and took bad advice to disable the cache, then promptly forgot they did so. Then when Safari 3.2 blew up in their faces they had no clue. Combine that with all the third-party add-ons and, well, you get the picture.
    Trashing the Cache.db and the SafeBrowsing.db files may also be a good troubleshooting tool. But remember, we're talking Leopard only, not Tiger.

  • Disable caching ACS dynamic users

    Hi all!
    I have an ACS 3.3(2)b2 what use AD as an external DB. I experianced, that dynamic users created after successful authentication from the AD, and these users don't purge themself from the ACS internal DB. I did a test environment, and the same thing happened. I upgraded the ACS to 4.0, and the same thing happened.
    I find a mention in the ACS4.0 user guide, what says the following:
    "Users that are dynamically mapped will keep on being dynamically mapped even when their group
    mapping settings are modified to a group which is set to Disable caching of dynamically mapped users."
    So my question is, where can I disable caching of dynamically mapped users?
    Thanks a lot for the answers!
    By(e)
    Miki

    Miki,
    This is a feature that is added on ACS 4.2 see the release notes below:
    http://www.cisco.com/en/US/docs/net_mgmt/cisco_secure_access_control_server_for_windows/4.2/release/notes/ACS42_RN.html#wp90436
    Option of disabling caching of dynamic users-Administrators can determine whether they want to disable the creation of dynamic users while using an external database for authentication. Minimal performance disruption occurs when disabling caching of dynamic users.

  • Temporarily disable caching

    Hello,
    I would like to be able to update an application to a newer version without any interruption of service by sequentially updating every machine in the cluster while the others are running.
    There will be in consequence a small period of time during the update in which different application versions will be running on different servers. Different domain object versions may clash inside the Coherence cache.
    In order to tackle this problem I am considering temporarily reducing the size of our caches to 0 (i.e. temporarily "disabling" cache). When all the servers are updated to the newer version, cache would be reactivated.
    My question is: how can I do that at runtime, without changing configuration files and restarting Coherence, using just the Coherence console?
    Otherwise, anybody has any experience to share on hot updating with distributed cache ?
    I am using Coherence 3.0.
    Thank you,
    Adrian Dimulescu

    Adrian,
    First, I'd like to underscore that the Coherence command line console is a tool for developers, not the operational people. It requires deep understanding of your caching layer topology and a small mistake or typo can result in an application failure. Majority of commercial deployments I've seen contain a dedicated application control and management tier developed by application developers for operational use at deployment time.
    Secondly, I don't know whether or not your application uses a read-through caching approach or a read-aside, but in either case let's assume that immediately after you clear the cache a user thread checks the cache for some data and immediately turns around and puts new data into the cache. You would end up with an "old" version of data, which is what you want to avoid. To prevent this from happening you need to have some synchronization logic or flags that indicate the fact the application is currently in transition. That could only be a part of application logic I was talking about.
    All said, I may not see all the complexity around your specific upgrade process, so the decision is yours to make...
    Regards,
    Gene

  • Difference between 'Always Refresh' and 'Disable Cache Hits'

    We are using clustered application servers with its own cache. We are not doing any cache synchronization. So, for selective objects we should ensure that cache is not returning stale objects.
    I see two options in MWB for refreshing and disabling the cache. Can somebody explain the difference between these two and recommend what I should do to address my problem.
    Thanks in advance.

    These are similar and often used together settings:
    'Disable Cache Hits'
    Is used by TopLink when a ReadObjectQuery is executed with only the PK fields. By default TopLink will short-circuit going to the database and try to find the object in the cache first. This includes 1:1 mapping queries. Turning this on will cause TopLink to go to the database instead of the cache in these cases.
    'Always Refresh'
    Is used to tell TopLink how to handle the results returned from a query against the database. By default TopLink will trust the cached version of any instances already cached. When this is enabled, or the refreshIdentityMapResult is turned on for a specific query the results of the query are used to refresh the values of the cached version.
    The trick with always-refresh is that it does not force all queries to go to the database. It simply forces all returned rows to refresh cached instances.
    These are often selected by customers who never want to trust a cached instance. They are typically used together to get that effect. This configuration will get minimal performance gain from the cache but still require the cache for object-identity (avoid duplicate instances).
    Be careful though because these will have the effect for EVERY query and mapping traversal. I typically prefer to manually turn this on for my specific queries where I need to get the latest version from the database versus turning it on for all queries.
    On the query the methods you will be interested in are:
    query.refreshIdentityMapResult()
    This will force the query to the database and have the results refresh the cached instance if it already exists.
    One setting that is of definite interest is
    descriptor.onlyRefreshIfNewerVersion();
    This must be used in conjunction with the above query refresh and optimistic locking but it will avoid additional unecessary steps if the row has not changed since the cached version was read.
    Doug

Maybe you are looking for

  • PLZ Help: how to get value of a request scoped Bean/Attribute in JSF ?!!!

    hi, I noticed this part of code to retrieve session scoped beans/vars in an ActionListener or other jsf classes, but it does not work for request scoped beans/vars :( what's the problem then ? what shall i do ? Type var = (Type)Util.getValueBinding("

  • Jobs taking more than 3 hrs to complete!!!

    i have a job which creates indexes.. the job used to get completed within 28 mins.. however yesterday it took more than 3 hrs and still running..any ideas ??

  • Add Users in CUE with Bulk

    Hello, I'm trying to to find a way to add 150 users with their extensions on cisco unity express 8.6.4 one time instead going one by one as it consumes a lot of time. Is there a way in CUE to acheive such requirements?. If not what about third party

  • Illustrator CS5 Recolor Artwork question

    I was passed down a file of a old logo from a friend in .ai format. He wants me to change the colors from Red to Blue. Seems pretty easy, but it has 2082 colors in it!!! I am a fairly novice user and wondered if someone could help me with an easier w

  • HT4437 Viewing a downloaded video on Apple TV

    I've downloaded a video to my iPad using the VDownloads app. How do I play this on my Apple TV?