Prevent an 'iframe' in a JSF page to refresh when a  button is clicked

I have a JSF Page. On this page I have a
1)Iframe that ponts to another JSF page that contains a JSF tree
2)A button named 'ADD'
3)A listbox
When I select a node in the tree it gets stored in the session and when I click the ADD button the selected value is populated into the listbox.
Building the tree is a very costly(time consuming) operation. So whenever I click the ADD button it's action event in the backing bean runs and populates the listbox with the selected value.
The problem whenever the I click the ADD button a postback happens and so the whole page is reloaded including the iframe and the tree with in the firame. How can I prevent the tree in the iframe refreshing each time I click the ADD button.
Any workarounds/ help greatly appreciated.
Thanks.
-Rolla
Message was edited by:
RollaTomasi

I do't think Virtual forms solve this problem as clicking anything(firing action events) on the main page would force the page and all the componets to refresh and the as the ui:iframe points to another JSF page on which the tree is; that page is also being refreshed .
I also have added logic in the init method of the second page inwhich the tree is tocheck for postbacks. But I observed that :
A postback on the main page is not a post back to the second page
Thanks for your reply.

Similar Messages

  • How to get a form to appear on the same page when a button is clicked?

    Hi,
    I have a report on a page with a create button. When a user clicks the create button, a form should appear on another region in the same page....how do i go about doing this?
    I know how to do this if the form is on a different page, but i'd like the form to appear on the same page as the report and only when the button is clicked.
    Thanks.

    Hi,
    I did the following, but it didnt work....
    1) Created a hidden item on the page, and in the Default Value field, I set the value to N.
    2) Created a button in the report with the following values under "Optional URL Redirect":
    Target is a: Page in this application
    Page: 4
    Set these items: P1_SHOW_FORM
    With these values: Y
    3) Created a form of HTML text type with the following values under "Conditional Display":
    Condition Type: Request=Expression 1
    Expression 1: P1_SHOW_FORM='Y'
    What have I done wrong or have i missed something?
    Thanks.

  • Display success message in same page when submit button is clicked

    I have a jsp page, where i use a form to submit data into my database.when submit button is clicked, i am able to display "Data entered Successfully" in a different page. But i want to display the message in the same jsp page.
    what do i do?
    PS :- i have tried a javascript message box, but that is not working properly. I need this solved urgently.
    Thanks

    Hi Deeptha,
    What is APEX version your using and is it your select list with submit option ?
    Regards,
    Ajay Periwal

  • JSF page goes blank  when using with servlet filters...

    Hi there,
    I have a JSF page, which shows up fine (in both IE and Firefox) in normal scenarios.
    But as soon as I apply servlet filters onto the faces extension, I get into trouble. So after setting up the filters, when I load the same page(s) in each of the browsers, the filters run fine in the background, but the page comes up blank (in both IE and FF).
    Happening only with JSF / Faces pages.
    Once I removed the filter mapping, the page loads up just fine.
    Would appreciate any feedback on this. TIA!

    More info on the original post...
    Platforms:
    Tomcat 5.5.15
    JSF/Faces - Sun RI 1.2
    Servlet Spec: 2.4
    Portion of the Web.xml code (after applying the filters onto the faces components):
       <listener>
          <listener-class>
             com.sun.faces.config.ConfigureListener
          </listener-class>
       </listener>
       <servlet>
          <servlet-name>Faces Servlet</servlet-name>
          <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
          <load-on-startup>1</load-on-startup>
       </servlet>
       <servlet-mapping>
          <servlet-name>Faces Servlet</servlet-name>
          <url-pattern>*.faces</url-pattern>
       </servlet-mapping>
       <filter>
          <filter-name>PreProcessFilter</filter-name>
          <filter-class>.....view.util.PreProcessFilter</filter-class>
       </filter>
       <filter-mapping>
          <filter-name>PreProcessFilter</filter-name>
          <url-pattern>*.html</url-pattern>
       </filter-mapping>
       <filter-mapping>
          <filter-name>PreProcessFilter</filter-name>
          <url-pattern>*.jsp</url-pattern>
       </filter-mapping>
       <filter-mapping>
          <filter-name>PreProcessFilter</filter-name>
          <url-pattern>*.faces</url-pattern>
       </filter-mapping> Thanks for your time!

  • How to prevent going back to the previous page by hitting the Back button ?

    In the html code I generate from my servlet, I have the following :
    <Html>
    <Head>
    <Title>Cox Part Time Benefit App Login Page</Title>
    <Meta http-equiv="Pragma" content="no-cache">
    <!-- Pragma content set to no-cache tells the browser not to cache the page. This may or may not work in IE -->
    <Meta http-equiv="expires" content="0">
    <!-- Setting the page to expire at 0 means the page is immediately expired. Any vales less then one will
    set the page to expire some time in past and not be cached. This may not work with Navigator -->
    <Meta http-equiv="Cache-Control" content="no-cache">
    <!-- This directive indicates cached information should not be used and instead requests should be forwarded
    to the origin server. This directive has the same semantics as the PRAGMA:NO-CACHE -->
    </Head>
    I hope it can prevent user from going back to the previous page by hitting the Back button on the browser, but it doesn't, what's the right way to do it ?
    Frank

    I think I'm half way now, but something is missing. I have the following filter :
    import java.io.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.util.*;
    public class ResponseHeaderFilter implements Filter
      FilterConfig fc;
      public void doFilter(ServletRequest req,ServletResponse res,FilterChain chain) throws IOException,ServletException
        HttpServletResponse response=(HttpServletResponse)res;
        for (Enumeration e=fc.getInitParameterNames();e.hasMoreElements();)        // Set the provided HTTP response parameters
          String headerName=(String)e.nextElement();
          response.addHeader(headerName,fc.getInitParameter(headerName));
        chain.doFilter(req,response);                                              // Pass the request/response on
      public void init(FilterConfig filterConfig)
        this.fc=filterConfig;
      public void destroy()
        this.fc=null;
    }And in my web.xml, I have something like this :
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
      <servlet>
      </servlet>
      <servlet-mapping>
      </servlet-mapping>
      <session-config>
      </session-config>
      <welcome-file-list>
      </welcome-file-list>
    <resource-ref>
    </resource-ref>
    <filter>
      <filter-name>ResponseHeaderFilter</filter-name>
      <filter-class>ResponseHeaderFilter</filter-class>
      <init-param>
        <param-name>Cache-Control</param-name>
        <param-value>private,no-cache,no-store</param-value>
       </init-param>
      <init-param>
        <param-name>Pragma</param-name>
        <param-value>no-cache</param-value>
       </init-param>
      <init-param>
        <param-name>expires</param-name>
        <param-value>0</param-value>
       </init-param>
    </filter>
    </web-app>I rebuilt the project and ran it, and yet, I can still hit the "Back" button and get to previous page, what am I missing ? Is what I've done in the web.xml file enough to set it up, or do I need to call ResponseHeaderFilter somewhere in my servlet in order to use it ?
    Frank

  • Query on  redirecting to a page when login button is clicked

    Hi,
    I want to redirect to/pop up an existing page with page name 9 when the login button in the log in page is
    clicked.Is that possible?.Now it is redirecting to page 1.
    Edited by: tj2010 on Sep 8, 2009 2:10 AM

    On login page (probably Pane 101) you have Login proces. Edit it to:
    wwwxxxxxxxx.login(
    P_UNAME => :P101_USERNAME,
    P_PASSWORD => :P101_PASSWORD,
    P_SESSION_ID => v('APP_SESSION'),
    P_FLOW_PAGE => :APP_ID||':'||nvl(:P101_PAGE_ID,'9')
    And probably you have to change Logout link in your Authentication Schemes:
    wwwxxxxxxxx.logout?p_this_flow=&APP_ID.&amp;p_next_flow_page_sess=&APP_ID.:9
    Edited by: AndyPol on 2009-09-08 11:17

  • Page is refreshing when changing parameter in sharepoint 2010 report viewer

    Hi All,
    I have uploaded a rdl file to sharepoint 2010 docuement library. When I click on this rdl file, it opens the report in a reportviewer.
    I have 4 parameters year, month, country, location(its is dependent on country selection).
    Now the issue is if I change year, month, and country it is refreshing entire page and displaying the following error message, but if I change location then no refresh is happening.
    "Report parameter values must be specified before the report can be displayed. Choose parameter values in the parameters area and click the Apply button""
    Any idea why it is refreshing the entire page when changing parameter value.
    Thanks !
    Soumya Das

    Hi Soumya,
    According to your description, my understanding is that you got an error when you used Report View.
    Whether you used cascading parameter in the report. It seems to be by design if you used cascading parameter in the report.
    As I am not an expert for reporting, I suggest you create a new thread on SSRS forum, more experts will assist you with this issue.
    SSRS forum:
    https://social.msdn.microsoft.com/Forums/sqlserver/en-US/home?forum=sqlreportingservices
    Or, you can open a ticket for this issue to confirm this issue.
    Here are two similar threads, you can use as a reference:
    https://social.msdn.microsoft.com/Forums/sqlserver/en-US/0979b6c1-b110-4ab9-9685-8382c8efbe3b/report-parameter-values-must-be-specified-before-the-report-can-be-displayed-choose-parameter?forum=sqlreportingserviceshttps://social.msdn.microsoft.com/Forums/sqlserver/en-US/0979b6c1-b110-4ab9-9685-8382c8efbe3b/report-parameter-values-must-be-specified-before-the-report-can-be-displayed-choose-parameter?forum=sqlreportingservices
    https://social.msdn.microsoft.com/Forums/sqlserver/en-US/c161fab2-e573-41e5-bba6-dde4122a798f/report-refreshes-when-it-shouldnt?forum=sqlreportingservices
    Best Regards
    Lisa Chen

  • Problem with history when ther is page redirection after 'go back' button is clicked.

    Recently I was developing some application which requires request redirection from server when the browser's 'go back' button is clicked. At that time while I was testing implemented behaviour i noticed that when i go one page back forward button is disabled and when I want to go back again I am returned one the same page over and over again. It seems that there is a problem with history and how firefox handles a page redirection.
    In other browsers everything goes as it should and there isn't any such problem with history.
    I hope that this problem will be solved in the next version.

    Hi,
    I found this Terminal command here on the discussion board posted bu Sinzu.
    defaults write com.apple.Safari com.apple.Safari.ContentPageGroupIdentifier.WebKit2BackspaceKeyNavigationEnable d -bool YES
    Dimaxum
    Sorry, everyting is BOLD tekst.

  • How do you stop your background from refreshing when a link is clicked on your muse page?

    The site I am creating is relying heavily on edge animate objects. I want to maintain smoothness and aesthetics by allowing buttons to animate (created in edge animate) when clicked then after their animation has concluded the page the button was linked to would load although the background image would not refresh so it seems that it is constant there and only the overlay content would be loading. If there is no way to do this in muse is it possible to be done in Dreamweaver?

    When you open an app or when you close an app using the App Switcher (double-tap the Home button)?
    If you are talking about the App Switcher, there's no way to disable the displayed screenshot. If you don't want to see the "scary image", browse to another website. I have Google set as one of my favorites...when I shut down Safari, I just hit the Google favorite so the next time I open Safari, it opens to Google. I've never heard of nor experienced random screenshots popping up when opening Safari.

  • URGENT:Expected behaviour when two buttons are clicked on a page?

    Hello,
    I have developed a search page. In the search results region, I have option to delete and update a record. What is the expected behaviour if I first click on the delete icon of one record and then click on the update icon of another record?
    I am getting an error page starting with the following line : oracle.apps.fnd.framework.OAException: java.lang.NullPointerException.
    Could anyone guide me about how I can correct this situation?
    In Dev guide, I saw the section 'PPR Event Queuing'. They have mentioned the below lines in this section :
    Note: To disable this feature, set the value of the profile FND_PPR_EVENT_QUEUE_DISABLED to Y. In this
    case, when a PPR event fires, all subsequent events on the page are ignored.
    Is it possible to set the profile FND_PPR_EVENT_QUEUE_DISABLED to Y in the PR of the search page? Or should I set the profile value through front end for the responsibility for which I'll be adding this search page?
    Thanks,
    Anju

    I had looked through the error message but I couldnt find anything related to the coding I have done.
    I have pasted the entire error message below:
    Exception Details.
    oracle.apps.fnd.framework.OAException: java.lang.NullPointerException
         at oracle.apps.fnd.framework.OAException.wrapperException(OAException.java:891)
         at oracle.apps.fnd.framework.webui.OAPageBean.releaseRootApplicationModule(OAPageBean.java:5448)
         at oracle.apps.fnd.framework.webui.OAPageContextImpl.performReleaseApplicationModule(OAPageContextImpl.java:2491)
         at oracle.apps.fnd.framework.webui.OAPageContextImpl.performReleaseRootApplicationModule(OAPageContextImpl.java:2439)
         at oracle.apps.fnd.framework.webui.OAPageBean.performReleaseApplicationModules(OAPageBean.java:4151)
         at oracle.apps.fnd.framework.webui.OAPageBean.finalizeRequest(OAPageBean.java:3926)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:552)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:423)
         at OA.jspService(OA.jsp:40)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:767)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:259)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:106)
         at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:803)
         at java.lang.Thread.run(Thread.java:534)
    ## Detail 0 ##
    java.lang.NullPointerException
         at com.evermind.server.http.EvermindHttpServletRequest.getSession(EvermindHttpServletRequest.java:2343)
         at oracle.apps.fnd.framework.webui.OAHttpSessionCookieImpl.deleteValue(OAHttpSessionCookieImpl.java:825)
         at oracle.apps.fnd.framework.webui.OAHttpSessionCookieImpl.releaseApplicationModule(OAHttpSessionCookieImpl.java:526)
         at oracle.jbo.common.ampool.SessionCookieImpl.releaseApplicationModule(SessionCookieImpl.java:584)
         at oracle.apps.fnd.framework.webui.OAPageBean.releaseRootApplicationModule(OAPageBean.java:5439)
         at oracle.apps.fnd.framework.webui.OAPageContextImpl.performReleaseApplicationModule(OAPageContextImpl.java:2491)
         at oracle.apps.fnd.framework.webui.OAPageContextImpl.performReleaseRootApplicationModule(OAPageContextImpl.java:2439)
         at oracle.apps.fnd.framework.webui.OAPageBean.performReleaseApplicationModules(OAPageBean.java:4151)
         at oracle.apps.fnd.framework.webui.OAPageBean.finalizeRequest(OAPageBean.java:3926)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:552)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:423)
         at OA.jspService(OA.jsp:40)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:767)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:259)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:106)
         at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:803)
         at java.lang.Thread.run(Thread.java:534)
    java.lang.NullPointerException
         at com.evermind.server.http.EvermindHttpServletRequest.getSession(EvermindHttpServletRequest.java:2343)
         at oracle.apps.fnd.framework.webui.OAHttpSessionCookieImpl.deleteValue(OAHttpSessionCookieImpl.java:825)
         at oracle.apps.fnd.framework.webui.OAHttpSessionCookieImpl.releaseApplicationModule(OAHttpSessionCookieImpl.java:526)
         at oracle.jbo.common.ampool.SessionCookieImpl.releaseApplicationModule(SessionCookieImpl.java:584)
         at oracle.apps.fnd.framework.webui.OAPageBean.releaseRootApplicationModule(OAPageBean.java:5439)
         at oracle.apps.fnd.framework.webui.OAPageContextImpl.performReleaseApplicationModule(OAPageContextImpl.java:2491)
         at oracle.apps.fnd.framework.webui.OAPageContextImpl.performReleaseRootApplicationModule(OAPageContextImpl.java:2439)
         at oracle.apps.fnd.framework.webui.OAPageBean.performReleaseApplicationModules(OAPageBean.java:4151)
         at oracle.apps.fnd.framework.webui.OAPageBean.finalizeRequest(OAPageBean.java:3926)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:552)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:423)
         at OA.jspService(OA.jsp:40)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:767)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:259)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:106)
         at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:803)
         at java.lang.Thread.run(Thread.java:534)

  • How to stop newtab-page flickering/refreshing when opening new tabs by ctrl-clicking thumbnails?

    Often when opening new tabs from thumbnails in newtab-page (about:newtab) the whole newtab-page refreshes itself or otherwise flickers. This sometimes causes that some new tabs are not opened when ctrl-clicking multiple thumbnails in a row. Does the newtab-page recalculate after every click what thumbnails it should show and this could cause the flickering effect? (Although I don't see changes in thumbnail order.)

    Hi FFanatic,
    Please update to version 32 to see if this is still happening. Go to About Firefox and click the update button.

  • How to forward a jsp page in flex application ( when a button is clicked)

    i am a fresher to this FLEX 2.0 , i designed the UI part in
    flex, but when i click the submit button it has to forward to the
    JSP page to check against the valid user,password , so how to
    forward the page to jsp(i mean from flex to jsp) , if u can suggest
    me with an example, it will be easy for me, is Flex Data Service 2
    is necessary for this
    thanks for ur speedy reply, hopping to get the solution for
    this issue,
    sandeep

    Your JSP is, as far as Flex is concerned, just a data service
    which it will request and read its response. I'd suggest using
    <mx:HTTPService>. For example:
    <mx:HTTPService id="authorize" url="validate.jsp"
    fault="handleFault(event)" result="handleResult(event)">
    <mx:request>
    <userid>{username.text}</userid>
    <password>{password.text}</password>
    </mx:request>
    </mx:HTTPService>
    Flex creates the request:
    http://{server}.{port}{context.root}/validate.jsp?userid=fred&password=flintstone
    assuming that you have <mx:TextInput id="username" />
    and <mx:TextInput id="password" /> components.
    Your Submit button then does: authorize.send()
    (note: you can also pass the request parameters in the send()
    method - check the Flex docs on HTTPService).
    Flex will listen for the response from your JSP. Typically a
    JSP would respond with an HTML page, but you don't want to do that
    for Flex. Your JSP should produce either a simple string ("yes" or
    "no" or "error" etc) or an XML document.
    The handleResult method can examine the response and do
    what's necessary.

  • Browser flashes when any button is clicked on web pages

    This started about a week or so ago. Every time I click a button on any web page the browser flashes to white then back. It usually takes 3 or 4 clicks before it actually does anything. It started after I upgraded to Version 4 so I reverted back to Version 3 and worked my way back up to 4 to see if it would stop with any other version but it hasnt. Is this an issue with my browser or my pc?

    Hi Andrey,
    Thanks for your time and response.
    Let me told you, i was traying to implement what you say in your last post but now i'm facing a new problem,
    The way i used to create the new field from HTML for the comment is not correct because the data in the GRIDLAYOUT are paged, so, when i change the page all data that i introduced in the field are ereased and i must save that values before change the page in a kind of buffer or something like that.
    so my new question is this, Do you know a right way to add that field to GRIDLAYOUT?  and then save this values in a Z table before save al plan data into the infocube.
    Sorry for all this questions but ive read a lot of articles and I can't find anything really helpful
    I've read some articles what talk about this issue but in IP, sincerely i'm NEW in this topic.
    Regards.
    Tony Montes.

  • Same JSF page is being displayed after submitting form

    I have a situation where some of my JSF pages occassionally misbehave. For example, sometimes when I click a <h:commandButton/> (which is located within a <h:form> tag) the action which the button is wired to is not executed. Instead the same page is displayed.
    Please note that this glitch happens intermittently with no fixed pattern.
    It is also interesting to note that the data which the user enters (prior to clicking the button) on the JSF form is also lost and has to be re-entered again by the user.
    Functionally, this is only a minor problem however from a usability perspective this is a major major problem!
    I have tried:
    Adding <h:messages /> components to jsp pages in order to see if there are any errors.
    Verified the spelling of the outcomes ("success", "cancel") in my navigation rules and in the action methods.
    Verified the spelling of my bean in the definition as a managed bean in the faces-config.xml file and in the jsp page.
    Verified the name of my action method, in the jsp and in the backing bean.
    Checked by logging if the action method is reached.
    Used the jsf phase tracker to print life cycles phases. However, when the page "misbehaves" this misses out all the application level phases i.e only phases restore view and render response are actually passed.
    Created getters and setters for all bean attributes
    I am desperate to fix this. Has anybody found a solution to this problem? Please let me know!
    Thank you.

    I am using JSF version 1.1 and the application server I am using is BEA WebLogic Server 9.1.
    The page is one in a series like a "bread crumb" trail or in the style of a wizard if you like. The user goes from one page to the next and can go back if he so wishes.
    I have a user form. One part of the form requests the user to enter an email address and then click an "Add" command button. However, sometimes instead of adding the email address to the data table the same JSF page is displayed when the button is clicked and all the data is lost, resulting in the user having to re-enter all the information on the form again!
    Hope this helps.

  • JSF page loading another JSF in iframe from same domain with diff port

    I was wondering if anyone has experienced this issue. I'm using ADF 11g and weblogic 10.3.2. Here's the scenario
    1. two ADF 11g application, app1 and app2
    2. app1 is deployed on managedserver1 running on port 7001
    3. app2 is deployed on managedserver2 running on port 7002
    4. page1 on app1 loads page2 from app2 inside an iframe.
    5. When a button is clicked on page1 that does a ppr or even a complete postback, the following message from the browser appears:
    Because of inactivity, your session has timed out and is no longer active. The page will automatically be reloaded in 10 seconds; if not, click here.
    When i check the log file on managedserver1 its has the following error:
    SEVERE: Could not find saved view state for token <some token>
    I did some research and came across oracle.adf.view.rich.security.FRAME_BUSTING, but this is not the issue here, the iframe loads fine, but after loading when i tried to do something on page1 it seems that the state of the page is messed up.
    Any idea would be helpful.
    Edited by: user8663354 on Jun 20, 2010 7:05 PM

    Hi,
    chances are that the iframe is not isolated as you think it is and the state management of the two overrides each other. I think its best to file a service request with customer support to ensure this scenarion is supposed to work
    Frank

Maybe you are looking for

  • Connecting external cassette and VHS to iMac

    I have some audio cassettes and audio recordings on VHS that I would like to put on my iMac. The players are separates. Is there a way in which I can play them through my iMac with adapter cords to the audio input on the back? I would appreciate any

  • Convince me to get a MB Pro

    Hi! First off, English is not my first language. I may misuse some technical terms. I'm a long-term Windows user - having used all OS since Win 95 - but lately, things have been going downhill. (Sounds more fatal than it really is, I suppose.) I own

  • User exit for creating/deleting vendor master

    Hello Gurus, I have this task that to update this customized transaction we have for the certification list of the vendors. What they want is every time that there is new vendor master to be created or deleted in XK01, the customized transaction we h

  • My messages are not going through imessage

    I am unable to send message in my ipad through imessage. However my iphone is working fine and I am able to send messages.

  • 1 computer and 2 different Time Capsules

    I have 1 macbook pro, and 2 time capsules. The time capsule at work i want used to backup my work related content, and the time capsule at home i want used to backup my personal content. is this possible?