Included page

          Hi,
          Is it possible the including page can exchange the varibles with the included
          page? In my jsp, i have a template file, the middle part is an includes file <jsp:include..>,
          but the rest of the page needs to determined by a varible that could be reset
          in the included page, how can i do it?
          Thanks
          

Share variables in the request scope (the HTTP request object).
          Peace,
          Cameron Purdy
          Tangosol, Inc.
          Clustering Weblogic? You're either using Coherence, or you should be!
          Download a Tangosol Coherence eval today at http://www.tangosol.com/
          "Jen" <[email protected]> wrote in message
          news:3c97e9ce$[email protected]..
          >
          > Hi,
          >
          > Is it possible the including page can exchange the varibles with the
          included
          > page? In my jsp, i have a template file, the middle part is an includes
          file <jsp:include..>,
          > but the rest of the page needs to determined by a varible that could be
          reset
          > in the included page, how can i do it?
          > Thanks
          

Similar Messages

  • Adf bindings of an included page

    I'm using adf/jsf, jdev 10.1.3.4. I'm trying to use the af:menuBar component in conjunction with the af dialog/popup functionality. More specifically, when the user clicks a menu item to navigate, if there are changes to the data on the current page (transaction is dirty), I want the popup dialog to ask the user if they want to save the changes before navigating.
    I've got this working from a simple command button on a jspx page. However, the first issue I'm having with trying to implement this from the menuBar component is that the menuBar is an included page. I use injection in the faces-config to inject the bindings into the backing bean associated with the 'master' page:
    <managed-bean>
    <managed-bean-name>backing_ApplSrch</managed-bean-name>
    <managed-bean-class>view.backing.setup.applications.ApplSrch</managed-bean-class>
    <managed-bean-scope>request</managed-bean-scope>
    <managed-property>
    <property-name>bindings</property-name>
    <value>#{bindings}</value>
    </managed-property>
    </managed-bean>
    The code, which is in the backing bean for the page, that determines if the transaction is dirty looks like this:
    protected boolean isDirty(){
    Boolean b;
    if (bindings == null){
    return false;
    b = ((Boolean) JSFUtils.resolveExpression("#{bindings.Commit.enabled}"));
    // if there is no commit binding, the form is by definition not dirty
    if (b == null){
    return false;
    return b.booleanValue();
    My problem is that when this code checks the bindings value, it's always null. So, the tranaction is never dirty, even when i know it is. I assume this is due to the fact that the code is checking for any bindings in a pageDef behind the menuBar.jspx instead of checking the bindings in the pageDef behind the 'main' page.
    Right now, the only solution I can think of would be not to include the menu jsp and instead add the code for it to every jsp page. However, from a reusability/maintenance standpoint, I'd rather not do it this way. Anyone have any ideas on how i can determine if transaction is dirty from an included page?

    I figured out the solution to that particular problem. Thanks.

  • On make: variable not found in include file (it's in including page)

    JDeveloper 10.1.2.1.0 build 1913
    I'm new to JDeveloper and finally have things set up correctly but when I try to make/run my app (java/beans/jsp) I get the "variable not found" error;
    Error(25,16): variable subActionName not found in class includes.vendorSubsidiaries
    since the variable is defined in the including page.
    I found this thread from 2 years ago:
    JSP Static Include in JDeveloper
    that was exactly the same....but had no resolution.
    Hopefully over the last 2 years someone knows the answer to this dilemna.
    thanks.

    Hi,
    I was able to make xerces.jar available in OC4J 9.0.3 but now I got problem with JMS.
    I got the following exception:
    java.lang.ClassCastException: com.evermind.util.CharString
    at com.evermind.server.jms.JMSExpressionParser.processParts(JMSExpressionParser.java:49)
    at com.evermind.parser.ExpressionParser.parseParts(ExpressionParser.java:449)
    at com.evermind.parser.ExpressionParser.parse(ExpressionParser.java:121)
    at com.evermind.server.jms.MessageSelector.<init>(MessageSelector.java:23)
    at com.evermind.server.jms.MessageSelector.getSelector(MessageSelector.java:54)
    at com.evermind.server.jms.LocalQueueConnection.receive(LocalQueueConnection.java:56)
    at com.evermind.server.jms.EvermindQueueSession.receive(EvermindQueueSession.java:241)
    at com.evermind.server.jms.EvermindQueueReceiver.receiveNoWait(EvermindQueueReceiver.java:85)
    at com.nrx.job.JobManager.receive(JobManager.java:167)
    at com.nrx.repository.appServer.SearchServlet.service(SearchServlet.java:120)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:721)
    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(Unknown Source)
    I don't get this exception if I use Oracle XML parsing classes. They use crimson.jar.
    Thanks a lot,
    Andrei.

  • Disable a button of the include page

    I am trying to disable a button on the include page using javascript's document.form.button.disable=true function. It works fine if I see just the include page in the browser but if I see the whole jsp page along with the include page, the button is not disabled. Can anyone help me here.
    Thanks in advance,
    snd

    The reason for this is due to the fact that the include page behaves like a component when the main page is loaded. This makes the attributes of the include page available to the main page, but restrictions are imposed on the realization of conditions applied on the include page when the main page is loaded. This results in the button becoming enabled.
    Suggest reworking on the logic or to handle the button in JSP itself.

  • Pass Parameter from main page to include page (subview) and read it ?

    Hello All
    i have an include header.jsp page in main page.jsp ,and i included it by subview.
    i want to pass a parameter ex(screen name) to the subview by using f:param.
    Here is the code in main.jsp:
    <f:subview id="headerSubView">
    <jsp:include page="/commons/header.jsp" flush="true">
    <jsp:param name="screenTitleByJspParam" value="screen2007"/>
    </jsp:include>
    <f:param name="screenTitleByFparam" value="screen2007"/></f:subview>
    Code in header.jsp
    1- <af:outputFormatted value="#{param.screenTitleByJspParam}"/> -- this dose not work
    2- <af:outputFormatted value="#{param.screenTitleByFparam}"/> -- this dose not work (i want this manner)
    So how i can send parameter by ]<f:param and read it by subview uesing adf/jsf tags ?
    Regards
    Mohd.Weshah
    weshah79

    Dear thanassis
    Thanks for you help ,your code is working successfully but my case is the following :
    same your main jsp page but the subview tag in table :
    <%@ page contentType="text/html;charset=windows-1256"%>
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
    <%@ taglib uri="http://xmlns.oracle.com/adf/faces" prefix="af"%>
    <%@ taglib uri="http://xmlns.oracle.com/adf/faces/html" prefix="afh"%>
    <f:view>
    <html>
    <head>
    <meta http-equiv="Content-Type"
    content="text/html; charset=windows-1256"/>
    <title>main</title>
    </head>
    <body>
    <h:form>
    <afh:tableLayout>
    <afh:rowLayout>
    <afh:cellFormat>
    <f:subview id="header">
    <jsp:include page="header.jsp" flush="true">
    <jsp:param name="pageTitle" value="Modify aa record"/>
    </jsp:include>
    <f:subview>
    </afh:cellFormat>
    </afh:rowLayout>
    </afh:tableLayout> </h:form>
    </body>
    </html>
    </f:view>
    try it the parameter dose not work ,but if you want that code work successfully move the subview out of the table.
    Do you know what is the problem ?
    i want give you another hint maybe it is realted to the same problem, which is in my original page the body tag is adf tag ie(<afh:body>) your code dose not work with that tag until i changed the afh:body to html body.
    Regards
    Mohd.Weshah

  • Include page items along with report in CSV export file

    I have a classic report and several page items asa apart of a classic report region. They represent various calculations based on the report.
    When I export the report it does not include page items in it. Is it possible to include page items as a paart of the report export?
    Thanks,
    Gagi

    GagiVel wrote:
    I have a classic report and several page items asa apart of a classic report region. They represent various calculations based on the report.
    When I export the report it does not include page items in it. Is it possible to include page items as a paart of the report export?No. Report exports include the rows returned by the report, not the contents of the report region.

  • ADF Faces: included pages and bindings

    Hello all,
    I want to create a page with a panelSplitter, where the left panel has some sort of selection menu and the right panel displays a page depending on the selection made.
    I am displaying the pages with ppr using f:subview and jsp:include. I have already learned that the bindings for the included page must be in the pageDef of the enclosing form for it to work properly. Now I found a post in the forum where someone said that in JDev 11 it would be possible to include one pageDef into another pageDef. Is that feature already available in the 11g Preview? If so, how do I use it?
    Thanks,
    Achim

    Achim,
    Including a .jsff page in a jspx/jsp page with the jsp:include tag will not include any pageDef associated with the page fragment. Instead you can include a page fragment in a page by creating a task flow that contains the fragment you wish to reference and then include the task flow in you jspx via an af:region. Below is a link to an online demo the illustrates how-to create a task flow.
    http://www.oracle.com/technology/products/jdev/viewlets/11/index.html
    --Ric                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Forward from an included page

    When we try to <jsp:forward> from an included (<jsp:include>) page, the
    rest of the page that includes gets rendered after the forwarded page.
    Let's say "main.jsp" includes "subpage.jsp". If there is an error in
    "subpage.jsp", we want to forward in to an eror page called "error.jsp"
    However, after the "error.jsp" is rendered, the remaining section of the
    main.jsp (after where the include is made) is rendered as well. So we
    see the contents of "error.jsp" and remaining-sections of "main.jsp" in
    a single page.
    Is there a way to stop this?
    Thanks

    It is very odd to fw: from an included page. Very odd. Forward basically
    means "go somewhere else to render the page" and include basically means
    "while rendering this page, include something from somewhere else". It is
    handy to code a servlet, for example, without any presentation logic, and so
    at the end of its processing, it just forwards to a JSP or HTML page or XSL
    processor. It is handy from within a JSP to include a standard page heading
    and a standard left navigation pane and a standard right navigation pane and
    a standard footing so your JSP has includes to suck those things in.
    Cameron Purdy
    "Muhtar Akbulut" <[email protected]> wrote in message
    news:[email protected]..
    When we try to <jsp:forward> from an included (<jsp:include>) page, the
    rest of the page that includes gets rendered after the forwarded page.
    Let's say "main.jsp" includes "subpage.jsp". If there is an error in
    "subpage.jsp", we want to forward in to an eror page called "error.jsp"
    However, after the "error.jsp" is rendered, the remaining section of the
    main.jsp (after where the include is made) is rendered as well. So we
    see the contents of "error.jsp" and remaining-sections of "main.jsp" in
    a single page.
    Is there a way to stop this?
    Thanks

  • Databinding within UIX include pages

    I have a uix file (call it browseTable.uix) with this line of code:
    <sortableHeader model="${ctrl:createSortableHeaderModel(bindings.CountryCodeView1,'CountryCodeRid')}"/>
    But I'm trying to make this uix file into an include file, so I want to replace the references to "CountryCodeView1" and "CountryCodeRid"
    with databound values that will be supplied by the including page.
    So here's what I did
    1) The including page has this inline data provider:
    <data name="rootPage">
    <inline>
    <VO name="CountryCodeView1"/>
    <Rid name="CountryCodeRid"/>
    </inline>
    </data>
    and includes the browseTable.uix like this:
    <include node="${ctrl:parsePage(uix,' browseTable')}"/>
    2) and in the included page (browseTable.uix), I tried changing the line
    <sortableHeader model="${ctrl:createSortableHeaderModel(bindings.CountryCodeView1,'CountryCodeRid')}"/>
    to be
    <sortableHeader model="${ctrl:createSortableHeaderModel(bindings[uix.data.rootPage.VO.name], '${uix.data.rootPage.Rid.name}')}"/>
    But the page isn't displaying the databound values. The documentation said that included pages can see data providers defined in the including page, so perhaps my syntax is wrong? I tried databinding a simple styledText element <styledText text="${uix.data.rootPage.VO.name}"/> in the included page to display inline data defined in the including page but that didn't work either (nothing was displayed).
    Any help would be appreciated!
    Thanks
    J
    PS I'm using JDeveloper 9.0.5.2

    Hi Jancia,
    It looks correct to me. I mocked up a test case that works, so maybe you can try it and it will help you figure out what you are doing wrong:
    includeTest.uix:
    <ctrl:page xmlns="http://xmlns.oracle.com/uix/ui" xmlns:ctrl="http://xmlns.oracle.com/uix/controller" xmlns:data="http://xmlns.oracle.com/uix/ui" xmlns:html="http://www.w3.org/TR/REC-html40" expressionLanguage="el" xmlns:ui="http://xmlns.oracle.com/uix/ui">
      <ctrl:content>
        <dataScope>
          <contents>
       <stackLayout>
        <contents>
         <header text="including InlineTest">
          <contents>
           <include  node="${ctrl:parsePage(uix, 'inlineTest')}"/>
          </contents>
         </header>
        </contents>
       </stackLayout>
         </contents>
               <provider>
                 <data name="rootPage">
                   <inline headerText="Using inline" linkText="Click">
                    <Rid name="CountryCodeRid" />
                   </inline>
                 </data>
          </provider>
         </dataScope>
      </ctrl:content>
    </ctrl:page>inlineTest.uix
    <ctrl:page xmlns="http://xmlns.oracle.com/uix/ui"
    xmlns:ctrl="http://xmlns.oracle.com/uix/controller"
    xmlns:data="http://xmlns.oracle.com/uix/ui"
    xmlns:html="http://www.w3.org/TR/REC-html40"
    expressionLanguage="el" xmlns:ui="http://xmlns.oracle.com/uix/ui">
      <ctrl:content>
               <button   text="${uix.data.rootPage.Rid.name}"/>
      </ctrl:content>
    </ctrl:page>

  • Pass parameter to included page and read it in the included packing bean

    Hello
    i have a page include in adf page (main.jspx include body.jspx) and i send a parameter to the included page ,and the included page has a request scope backing bean ,and in the constructor for this backing bean i tried to read the parameter , how can i get the included parameter "userId" in the backingbean which is realted to body page i.e(i want to pass the userid parameter to the body backing bean),the following is my code.
    main.jspx :
    <f:subview id="Body">
    <jsp:include page="/body.jspx";>
    <jsp:param name="userId" value="123456"/>
    </jsp:include>
    </f:subview>
    Regards
    Mohd.Weshah

    i tried your soluation
    <managed-bean>
    <managed-bean-name>testBacking</managed-bean-name>
    <managed-bean-class>checklist.TestBacking</managed-bean-class>
    <managed-bean-scope>session</managed-bean-scope>
    <managed-property>
    <property-name>testValue</property-name>
    <property-class>java.lang.String</property-class>
    <value>${param.myParam}</value>
    </managed-property>
    </managed-bean>
    it return to me in the getter method for the testValue the experssion as string ${param.myParam} but if i put ${param.myParam} it return value.
    please advice.
    Regards
    Mohd.Weshah

  • My computer broke and I got it fixed. It doesn't say that the hard-drive was replaced, but I can tell my data is gone, including Pages that I bought. Is there any way of getting that without paying for it again?

    My computer broke and I got it fixed. It doesn't say that the hard-drive was replaced, but I can tell my data is gone, including Pages that I bought. Is there any way of getting that without paying for it again?

    Or if you purchased Pages as part of iWork on a disk, reinstall from the same disk.
    Best of luck.

  • Support for jsp:include page tag

    Is there a support for the jsp:include page tag ?
    I get an exception when trying to include jsp's
    Thanks

    Hi
    I use a page with a one column template
    I print a JSP that include another JSP using <jsp:include page="my_shopping_cart.jsp"
    flush="true"/>
    i get this exception :
    java.lang.IllegalStateException: Can not set buffer size after writing data. at
    com.bea.portlet.container.HttpServletResponseImpl.setBufferSize(HttpServletResponseImpl.java:179)
    at weblogic.servlet.jsp.PageContextImpl.initialize(PageContextImpl.java:66) at
    weblogic.servlet.jsp.PageContextImpl.(PageContextImpl.java:105) at weblogic.servlet.jsp.JspFactoryImpl.getPageContext(JspFactoryImpl.java:37)
    at jsp_servlet._portlets._oci.__my_shopping_cart._jspService(my_shopping_cart.jsp)
    at com.bea.portlet.jsp.PortletJspBase.service(PortletJspBase.java:110) at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1053)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:387)
    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:28) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
    at com.bea.p13n.servlets.PortalServletFilter.doFilter(PortalServletFilter.java:313)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
    at com.bea.wlw.netui.pageflow.PageFlowJspFilter.doFilter(PageFlowJspFilter.java:101)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
    at weblogic.servlet.internal.RequestDispatcherImpl.include(RequestDispatcherImpl.java:597)
    at weblogic.servlet.internal.RequestDispatcherImpl.include(RequestDispatcherImpl.java:409)
    at weblogic.servlet.jsp.PageContextImpl.include(PageContextImpl.java:155) at jsp_servlet._portlets._oci.__oci._jspService(oci.jsp:209)
    at com.bea.portlet.jsp.PortletJspBase.service(PortletJspBase.java:110) at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1053)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:387)
    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:28) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
    at com.bea.p13n.servlets.PortalServletFilter.doFilter(PortalServletFilter.java:313)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
    at com.bea.wlw.netui.pageflow.PageFlowJspFilter.doFilter(PageFlowJspFilter.java:101)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
    at weblogic.servlet.internal.RequestDispatcherImpl.include(RequestDispatcherImpl.java:597)
    at weblogic.servlet.internal.RequestDispatcherImpl.include(RequestDispatcherImpl.java:409)
    at com.bea.portlet.container.PortletRequestDispatcherImpl.include(PortletRequestDispatcherImpl.java:98)
    at com.cgi.poc.jsr168.MyAccountsPortlet.doView(MyAccountsPortlet.java:107) at
    javax.portlet.GenericPortlet.doDispatch(GenericPortlet.java:208) at javax.portlet.GenericPortlet.render(GenericPortlet.java:137)
    at com.bea.portlet.container.PortletStub.render(PortletStub.java:370) at com.bea.portlet.container.AppContainer.renderStub(AppContainer.java:501)
    at com.bea.portlet.container.AppContainer.invokeRender(AppContainer.java:436)
    at com.bea.portlet.server.PortletHttpServer.invoke(PortletHttpServer.java:218)
    at com.bea.portlet.server.PortletHttpServer.process(PortletHttpServer.java:162)
    at com.bea.portlet.server.PortletHttpServer.doGet(PortletHttpServer.java:119)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:740) at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1053)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:387)
    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:28) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
    at com.bea.p13n.servlets.PortalServletFilter.doFilter(PortalServletFilter.java:313)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
    at com.bea.wlw.netui.pageflow.PageFlowJspFilter.doFilter(PageFlowJspFilter.java:101)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
    at weblogic.servlet.internal.RequestDispatcherImpl.include(RequestDispatcherImpl.java:597)
    at weblogic.servlet.internal.RequestDispatcherImpl.include(RequestDispatcherImpl.java:409)
    at com.bea.netuix.servlets.controls.content.JavaPortletContent.fireRender(JavaPortletContent.java:246)
    at com.bea.netuix.servlets.controls.content.JavaPortletContent.renderInternal(JavaPortletContent.java:146)
    at com.bea.netuix.servlets.controls.content.JavaPortletContent.beginRender(JavaPortletContent.java:108)
    at com.bea.netuix.nf.ControlLifecycle$7.visit(ControlLifecycle.java:424) at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:427)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:436)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:436)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:436)
    at com.bea.netuix.nf.ControlTreeWalker.walk(ControlTreeWalker.java:172) at com.bea.netuix.nf.ControlTreeWalker.walk(ControlTreeWalker.java:95)
    at com.bea.netuix.nf.Lifecycle.run(Lifecycle.java:380) at com.bea.netuix.nf.UIControl.render(UIControl.java:580)
    at com.bea.netuix.servlets.controls.PresentationContext.render(PresentationContext.java:341)
    at com.bea.netuix.servlets.util.RenderToolkit.renderChild(RenderToolkit.java:123)
    at com.bea.netuix.servlets.jsp.taglib.RenderChild.doStartTag(RenderChild.java:58)
    at jsp_servlet._framework._skeletons._bellca.__gridlayout._jspService(gridlayout.jsp:29)
    at com.bea.portlet.jsp.PortletJspBase.service(PortletJspBase.java:110) at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1053)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:387)
    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:28) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
    at com.bea.p13n.servlets.PortalServletFilter.doFilter(PortalServletFilter.java:313)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
    at com.bea.wlw.netui.pageflow.PageFlowJspFilter.doFilter(PageFlowJspFilter.java:101)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
    at weblogic.servlet.internal.RequestDispatcherImpl.include(RequestDispatcherImpl.java:597)
    at weblogic.servlet.internal.RequestDispatcherImpl.include(RequestDispatcherImpl.java:409)
    at com.bea.netuix.servlets.controls.JspRenderer.renderAlt(JspRenderer.java:187)
    at com.bea.netuix.servlets.controls.JspRenderer.beginRender(JspRenderer.java:90)
    at com.bea.netuix.nf.ControlLifecycle$7.visit(ControlLifecycle.java:420) at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:427)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:436)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:436)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:436)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:436)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:436)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:436)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:436)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:436)
    at com.bea.netuix.nf.ControlTreeWalker.walk(ControlTreeWalker.java:172) at com.bea.netuix.nf.Lifecycle.runOutbound(Lifecycle.java:220)
    at com.bea.netuix.nf.Lifecycle.run(Lifecycle.java:158) at com.bea.netuix.servlets.manager.UIServlet.runLifecycle(UIServlet.java:363)
    at com.bea.netuix.servlets.manager.UIServlet.service(UIServlet.java:207) at com.bea.netuix.servlets.manager.PortalServlet.service(PortalServlet.java:584)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1053)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:387)
    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:28) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
    at com.bea.p13n.servlets.PortalServletFilter.doFilter(PortalServletFilter.java:313)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:6316)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:317)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:118) at
    weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3622)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2569)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:197) at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:170)
    Subbu Allamaraju <[email protected]> wrote:
    Could you please post more details of the exceptions?
    Thanks
    Subbu
    Carl Samson said the following on 12/09/2003 01:15 PM:
    Is there a support for the jsp:include page tag ?
    I get an exception when trying to include jsp's
    Thanks

  • If I buy iWork, will that include Pages, Numbers and Keynote for all my Devices?

    If I buy iWork, will that include Pages, Numbers and Keynote for all my Devices?
    It seems like purchasing Pages, Numbers and Keynote Seperately for my Mac Computers and then again for my iOS 5 Devices ads up to about $100, though iWork costs more as a whole, what would be the key advantages in purchasing iWork not from the app store?
    If i do purchase iWork not from the app store, will it still be available on all my Devices?
    -iPhone
    -iPad
    -Macbook

    ElliotDG wrote:
    my question was whether buying iWork from the apple store would defuse this restriction and make it available on all my devices
    No.

  • Including page in a region : best practice

    Hello all,
    I know that this subject has been already discussed many times but my question is not really "how to do it"...but "is it the best way"?
    So the initial need was the following :
    I had to be able to include the content from a page in an application into the region of another application using a generic solution that allows end user to configure easily what page he wants to render without having to use Apex.
    For this :
    1. I first defined a plugin that allows to render an parametrized iframe into a region.
    2. I defined my plugin region on the first page that is linked with elements to define the parameters (page number to render, items and values to set on the page).
    3. Then the user can easily change the rendered page on the first application changing the database row that specify the page id.
    That is working pretty good but I would like to be sure that there is no proper solution because some customers do not really like the idea to have an application with embedded iframes.
    I considered a solution using PLSQL dynamic region, trying to retrieve the page content using an HTML post in PLSQL. But it was not really a success. After fixing access issues, I just noticed that the page was rendering but nothing was functionnal on it (buttons, process...) because of the unknown session context.
    I did not succeed to fix this.
    I also considered to use an AJAX with htmldb_Get but I do not really like this in that case. Because I want the region to be displayed on pageload. Then that does not really seem logical to make a server call to render first the original page and them refresh the region content.
    Moreover, I already used this in the past, and I also had issues about session context (processes not working and so on...)
    Do you have any other idea? Do you think the iframe solution is the best one?
    Thank in advance for your help and advices.
    Best Regards,
    Max

    Hello,
    because some customers do not really like the idea to have an application with embedded iframes.How do the customers know whether you are using iframes or not. If you apply page templates similar to "pop-up" and if you use same CSS definitions as of calling application for embedded application, then they can't make it out whether is part of application or iframe calling another application.
    Regards,
    Hari

  • How to include page fragment dynamically in BSP

    Hi all,
    I want to include a page fragment dynamically in my BSP default.htm.
    Is it possible to give a variable (path to page fragment) in the include? Instead of using:
    <%@include file="../bsp_app/test.htm" %>
    I want to give:
    variable = "../bsp_app/test.htm"
    <%@include file= variable %>
    Thank you for your help.
    Oliver

    Welcome to SDN.
    check out this weblog.
    <a href="/people/sap.user72/blog/2005/06/02/dynamic-includes-for-bsp">Dynamic Includes for BSP</a>
    Regards
    Raja

Maybe you are looking for