ServletInclude JSP not loading without refresh

JDeveloper 10.1.2.1.0. Using servletInclude in UIX page to load content of JSP. The JSP contains an input form. It doesn't load until I refresh the browser (IE or Firefox). If I servletInclude a JSP that only has an HTML heading, it renders the when the page is first loaded. Any help? Thanks!

I saved your files locally and was able to see the problem.
This isn't an Accordion problem. This appears to be a pure CSS
Layout problem in IE6. If you distil it down to the minimal markup
and CSS necessary to reproduce the problem, it looks like this:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01
Transitional//EN" "
http://www.w3.org/TR/html4/loose.dtd">
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html;
charset=iso-8859-1">
<title>Frontline</title>
<style>
#wrapper {
width: 900px;
position: relative;
#mainbox {
width: 708px;
float: right;
position:relative;
background-color: cyan;
#sidebar {
float: right;
width: 180px;
margin-right: 12px;
background-color: yellow;
#rightfloater {
position:absolute;
top:235px;
width:200px;
right:-47px;
z-index:1;
background-color: green;
</style>
</head>
<body>
<div id="wrapper">
<div id="rightfloater">
Can you see this text?<br/>
Can you see this text?<br/>
Can you see this text?<br/>
Can you see this text?<br/>
</div>
<div id="mainbox"> </div>
<div id="sidebar"> </div>
</div>
</body>
</html>
--== Kin ==--

Similar Messages

  • Website pages will not open without refresh everytime

    website pages will not open without refresh everytime

    website pages will not open without refresh everytime
    That can be a symptom of a poorly performing DNS.  E.g. IE tries a lookup but doesn't wait long enough to get the answer; meanwhile the lookup proceeds, gets cached, etc.; so now when you try your "refresh" it is all there ready to go.  Unfortunately,
    I don't think there is any way of tuning your TCP to avoid this symptom.  A workaround would be trying a different DNS.  (A related workaround is to avoid a DNS relay to your router and make the OS aware of your real DNS.)  A way of changing
    the symptom is to always do enough in a cmd window to ensure a complete lookup is cached before you make your first request using IE, (e.g. using ping -n 1 because you don't care at that point if there
    is connectivity for ICMP).  But there may be problems doing that, depending on aliases and redirects and short Time To Live values.
    Post some details for a specific publicly accessible example, if you would like to see how these ideas could work with it.
    HTH
    Robert Aldwinckle

  • Could not load or refresh node tree creation failed on node

    Hi Experts
    I created one user with MSS role and ERP COMM role.
    It is working fine. We restarted the server for other purpose. Then surprisingly the MSS role was locked. I am unable to see the MSS tab in the top level navigation.
    When i expand the workset in line manager -> Manager Self Service -> Worksets
    I am getting the following error::
    Could not load or refresh node tree creation failed on node:
    pcd:portal_content/com.sap.pct/line_manager/com.sap.pct.erp.mss.bp_folder/com.sap.pct.erp.mss.worksets
    I can be able to expand and priveiw the Pages and iviews, except the worksets
    Please guide me, i am badly stucked here.
    Regards,
    Srinivas

    Hi KRISHNA,
    Check the below thread and notes mentioned in that
    Re: Tree creation failed on node: pcd:portal_content
    Koti Reddy

  • FPN Could not load or refresh node Tree creation failed on node: pcd:-Error

    Hi,
    I´m configuring a FPN using CRM Java as a producer and SAP Portal as a consumer, the SSO from SAP Portal to CRM Java is working fine, but we are having this Error when trying to Expand Content Administration > Portal Content > NetWeaver Content Producers > MyProducer System
    Could not load or refresh node Tree creation failed on node: pcd:NetWeaver_content_producers/........
    Also in Identity Management I can see the Federated Data Source but when search for roles no rol is retrieved and returns two messages.
    Last Search might be innacurate
    No element Found
    Has somebody faced this Error?
    Thanx in Advanced!
    Kind Regards,
    Gerardo J

    Hi KRISHNA,
    Check the below thread and notes mentioned in that
    Re: Tree creation failed on node: pcd:portal_content
    Koti Reddy

  • Values on the jsp page not loading after refresh

    Hi All,
    I have a problem in getting the values back onto the jsp page after a refresh. After the first refresh i get null values.
    Let me know what i should use: is it 1. request 2. application or 3. session scope? I have to keep my application running for ever (as long as the server is running) refreshing every 3 minutes. So i used application scope but in vain.
    Also i am using requestDispatcher and forwarding the req,res. I came to know that this method has some problems if we use request attributes. Do i need to use a send.Redirect instead?
    Let me know the correct procedure.
    Thanks in advance.

    Gouri-Java wrote:
    Hi All,
    I have a problem in getting the values back onto the jsp page after a refresh. After the first refresh i get null values.
    Let me know what i should use: is it 1. request 2. application or 3. session scope? I have to keep my application running for ever (as long as the server is running) refreshing every 3 minutes. So i used application scope but in vain.
    Also i am using requestDispatcher and forwarding the req,res. I came to know that this method has some problems if we use request attributes. Do i need to use a send.Redirect instead?
    Let me know the correct procedure.
    Thanks in advance.r u forwarding request to same page. ?
    try using sendRedirect with URL rewriting:
    for eg .
    response.sendRedirect("/myPage.jsp?id="+idValue+"");
    and access id on page submit.
    as
    request.getParameter("id");
    This should work .
    Edited by: AmitChalwade123456 on Jan 6, 2009 7:10 AM

  • JSPs not loading properly

              Hi,
              When I load a jsp, the parameter values are not loaded properly.
              For example the following line:
              <frame name="workpane" id="workpane" frameborder="1" scrolling="No" marginwidth="0"
              marginheight="0" src="/jsp/library/generic/loading.jsp?refresh=/jsp/library/generic/workspace.jsp?rows1=66$rows2=34$activepane=/list$apn1=scope$apv1=5000$apn2=type$apv2=3$previewpane=/default_previewpane.html">
              IS LOADED AS
              Loading: strRefreshURL= with parameters Param=refresh=/jsp/library/generic/workspace.jsp?rows1=66$rows2=34$activepane=/list$apn1=scope$apv1=5000$apn2=type$apv2=
              3$previewpane
              values=/default_previewpane.html
              Why does it do it this way?
              Is the $ sign making it do it this way?
              Thanks
              

    Hi again,
              Actually, you could simplify your dilemma if you use
              java.net.URLEncoder to encode your URL's. You should first apply it to the nested URL you have here, then apply it to the outer URL. I.e.
              <% String nestedURL=java.net.URLEncoder.encode("\"action=loadtree&scope=" +
              Scope.getSystemScope() +
              "&type=" +
              ControllerFactory.getDocumentTypeForName("folder") +
              "&disurl=/jsp/system/admintree.jsp\">"); %>
              <frame name="treepane" id="treepane" frameborder="1" scrolling="No" marginwidth="0"
              marginheight="0" src="<%= nestedURL %>" >
              Keeping your code simple will save you a lot of headaches :)
              "Alex Worden" <[email protected]> wrote in message news:[email protected]...
              <frame name="treepane" id="treepane" frameborder="1" scrolling="No" marginwidth="0"
              marginheight="0"
              src="/jsp/library/generic/loading.jsp?refresh=/list?action=loadtree$scope=<%=Scope.getSystemScope()%>$type=<=ControllerFactory.getDocumentTypeForName("folder")%>$disurl=/jsp/system/admintree.jsp">
              so... I presume your src request is for..
              /jsp/library/generic/loading.jsp
              with the single parameter...
              refresh=/list?action=loadtree&scope=<%=Scope.getSystemScope()%>&type=<=ControllerFactory.getDocumentTypeForName("folder")%>&disurl=/jsp/system/admintree.jsp">
              I don't know why you're using $ instead of & here...?
              Also - it's ambiguous. Even I can't figure out which of these query parameters are intended to be part of the value for 'refresh' or are extra query parameters of 'loading.jsp'.
              This is why you need to URLEncode the parameters that you don't intend to be interpreted by 'loading.jsp'. The URLEncoded representation for ? is %3f and & is %26, so, this would mean your refresh value should be (assuming all of the query parameters are part of the "refresh" sub-query-parameter)...
              <frame name="treepane" id="treepane" frameborder="1" scrolling="No" marginwidth="0"
              marginheight="0"
              src="/jsp/library/generic/loading.jsp?refresh=/list%3faction=loadtree%26scope=<%=Scope.getSystemScope()%>%26type=<=ControllerFactory.getDocumentTypeForName("folder")%>%26disurl=/jsp/system/admintree.jsp">
              of course, if for example you meant for "26disurl=/jsp/system/admintree.jsp" to be a query parameter interpreted by 'loading.jsp' and not whatever servlet is mapped to '/list' then you'd use...
              <frame name="treepane" id="treepane" frameborder="1" scrolling="No" marginwidth="0"
              marginheight="0"
              src="/jsp/library/generic/loading.jsp?refresh=/list%3faction=loadtree%26scope=<%=Scope.getSystemScope()%>%26type=<=ControllerFactory.getDocumentTypeForName("folder")%>&disurl=/jsp/system/admintree.jsp">
              I hope that helps!
              "anil" <[email protected]> wrote in message news:[email protected]...
              >
              > Hi,
              >
              > Thanks for the insight. I really appreciate it.
              > For example can you show me how I should code the following line:
              >
              > <frame name="treepane" id="treepane" frameborder="1" scrolling="No" marginwidth="0"
              > marginheight="0" src="/jsp/library/generic/loading.jsp?refresh=/list?action=loadtree$scope=<%=Scope.getSystemScope()%>$type=<%=ControllerFactory.getDocumentTypeForName("folder")%>$disurl=/jsp/system/admintree.jsp">
              >
              >
              > Thanks once again,
              > Anil
              >
              > "Toad" <[email protected]> wrote:
              > >DOH! That too. Needs to & those. Essentially he's got nested links with
              > >query strings. Should be easy to fix up.
              > >
              > >"Alex Worden" <[email protected]> wrote in message
              > >news:[email protected]...
              > >> You can't use a ? to separate parameters. I think this is part of a
              > >single
              > >> parameter that is a URI he wants his servlet to redirect the client
              > >to or
              > >> something... I think you're confusing that with a &. He appears to
              > >have
              > >> substituted $ for &. It would be better to just escape these chars
              > >correctly
              > >> using URLEncoding %xx notation.
              > >>
              > >> "Toad" <[email protected]> wrote in message
              > >> news:[email protected]...
              > >> > He has two parameters:
              > >> >
              > >> > 1. refresh=/jsp/library/generic/workspace.jsp
              > >> > 2. rows1=66$rows2=34$activepane=/list$apn1=scope$apv1=5000
              > >> > $apn2=type$apv2=3previewpane=/default_previewpane.html
              > >> >
              > >> > The "/" must be replaced with %2F.
              > >> >
              > >> > "Alex Worden" <[email protected]> wrote in message
              > >> > news:[email protected]...
              > >> > > It looks like your src URL contains bogus ? characters. You should
              > >> encode
              > >> > > the ones that aren't meant to be interpreted as query-string
              > >delimiters.
              > >> > >
              > >> > > "anil" <[email protected]> wrote in message
              > >> > > news:[email protected]...
              > >> > > >
              > >> > > > Hi,
              > >> > > >
              > >> > > > When I load a jsp, the parameter values are not loaded properly.
              > >> > > > For example the following line:
              > >> > > >
              > >> > > > <frame name="workpane" id="workpane" frameborder="1" scrolling="No"
              > >> > > marginwidth="0"
              > >> > > > marginheight="0"
              > >> > >
              > >> >
              > >>
              > >src="/jsp/library/generic/loading.jsp?refresh=/jsp/library/generic/workspace
              > >> > >
              > >> >
              > >>
              > >..jsp?rows1=66$rows2=34$activepane=/list$apn1=scope$apv1=5000$apn2=type$apv2=
              > >> > > 3$previewpane=/default_previewpane.html">
              > >> > > >
              > >> > > > IS LOADED AS
              > >> > > >
              > >> > > > Loading: strRefreshURL= with parameters
              > >> > >
              > >> >
              > >>
              > >Param=refresh=/jsp/library/generic/workspace.jsp?rows1=66$rows2=34$activepan
              > >> > > e=/list$apn1=scope$apv1=5000$apn2=type$apv2=
              > >> > > > 3$previewpane
              > >> > > > values=/default_previewpane.html
              > >> > > >
              > >> > > > Why does it do it this way?
              > >> > > > Is the $ sign making it do it this way?
              > >> > > >
              > >> > > > Thanks
              > >> > > >
              > >> > >
              > >> > >
              > >> >
              > >> >
              > >>
              > >>
              > >
              > >
              >
              [att1.html]
              

  • Pages not loading until refresh

    Hi all,
    Recently I have noticed on my Ipad and PC that webpages like google for example do not load, they get stuck until I refresh then it will go through and load the page. Also youtube has problems when I am using the ipad with certain videos just refusing to load. Wat can I do to rectify this problem!
    Thanks
    I am using a Netgear R6300 router

    Could be a DNS problem. Try using Google DNS instead - 8.8.8.8 and 8.8.4.4
    If you found this post helpful, please click on the star on the left
    If not, I'll try again

  • Why do most pages not load without stopping it and then reloading?

    most pages will not load. I have to click on the "stop loading this page" button and then click on the reload this page button to get it to work. This has to be done on most pages but a few work fine like www.google.com . I have tried it in the safe mode and have the same results so it is not an add on. I am currently running 23.0.1 I have not had this problem until i updated to this new version.

    Hello,
    The Reset Firefox feature can fix many issues by restoring Firefox to its factory default state while saving your essential information.
    Note: ''This will cause you to lose any Extensions, Open websites, and some Preferences.''
    To Reset Firefox do the following:
    #Go to Firefox > Help > Troubleshooting Information.
    #Click the "Reset Firefox" button.
    #Firefox will close and reset. After Firefox is done, it will show a window with the information that is imported. Click Finish.
    #Firefox will open with all factory defaults applied.
    Further information can be found in the [[Reset Firefox – easily fix most problems]] article.
    Did this fix your problems? Please report back to us!
    Thank you.

  • FF slow to load or will not load without rebooting PC

    Over the past few weeks I have been having a range of problems with FF. (I am posting this using a different browser as a result!).
    The problems seem to have begun when I upgraded to 3.6.10 - along with having the FF4 Beta running on my machine. FF 3.6.10 crashed on loading and although I followed all the suggested fixes, in the end I had to totally uninstall both 3.6.10 and the Beta version, (losing all my bookmarks, etc.) and then reinstall.
    That fixed the start-up problem, but I found a number of add-ins would no longer run even though they appeared to be compatible.
    I now have 3.6.11, and have further problems.
    Starting is slow - up to 30 secs or more from clicking the icon (other browsers are starting in around 5 seconds). Once it is running it the sometimes hangs for up to a minute before resuming. When I try to close the browser it sometimes does not respond. Sometimes when I try to restart it after closing, I get no response and have to reboot my PC to get it to work again.
    I have disabled all but the Java add-ins, but to no avail. Obviously there is a lot more I could do to try and isolate these problems, but I don't really have time. It's a shame as I have been a staunch FF fan since it was first released, but I find myself using other browsers at the moment because I find FF to much hassle.
    If anyone is interested in working with me to get to grips with this I am happy to help if I can.

    I was wondering if you ever found a fix? I have had the same problem since I upgraded my iPhone 4 to the 4.0.2 os

  • JSP not loading fully

    From this monday suddenly, one of our heavily used web pages is having strange problem in IE. The jsp doesn't load fully. When I check the view source, it only shows half of its source.
    I checked with Operations to see if the added any patch. They didn't. Also, checked with DB team and Application server team. No one has done anything.
    Strange is, the page loads in firefox. Let me know if you guys have any suggestions. Thanks,
    Maddy.

    When a JSP catches an exception it tries to forward to an error page that will generally show the exception stacktrace that was thrown.
    However, forwarding or redirecting only works when data hasn't been flushed to the browser yet. This creates the problem that when an exception occurs AFTER data has been flushed (this will happen automatically when the output buffer becomes full), you only get half the output.
    Check the logfiles of your webserver, I'm sure that it has the exception that is being caused.

  • Movie not loaded without internet access

    We have developed a flash movie to industry showing production data for a machine. Clients running this flash movie in a web browser. Some of these clients have internet access and others do not.
    The clients have access to intrernet shows flash movie without problems.
    The clients without internet access just shows a black box with the text note loeaded movie.
    The customer does not want to connect these clients to intenet but would consider opening specific ports or websites if necessary.
    What is it that requires flash player from internet to download flash movies?
    Flash movie connects to a server over XML socket to exchange production data. Serve respond to requests for policy-file-request with <cross-domain-policy> <allow-access-from domain='*' to-ports='*'/> </ cross-domain-policy> \ 0th
    It does not matter which version of the flash player or internet explorer that we use. We have tested many different varieties.
    Hoping for help!

    What errors are you getting when connecting to the server? There's several events you should be listening for, e.g. Event.CONNECT, Event.CLOSE, DataEvent.DATA, IOErrorEvent.IO_ERROR, SecurityErrorEvent.SECURITY_ERROR, etc..
    One of those should be giving you some useful information about the connection status.
    What sandbox are you using? Here's some info on setting the sandbox to essentially Administrator level so the SWF is allowed to connect to all resource types via a config file:
    http://help.adobe.com/en_US/ActionScript/3.0_ProgrammingAS3/WS5b3ccc516d4fbf351e63e3d118a9 b90204-7c95.html
    If not running AIR (which removes the need for that config) you're going to want your SWF to have access to local filesystem and networking without restriction. You should check what Security.sandboxType is set to. If the config file is successful (or you use the SWF settings menu to add the SWF as trusted) it should report Security.LOCAL_TRUSTED. If it's AIR it will report Security.APPLICATION. Then you know the SWF has permission to access network.
    Outside that the events returned from the socket connect should let you know if the problem lies on the server. I'm assuming you're already running a Security.allowDomain("*"). I don't know if this pertains to LAN IP ranges however, that'd be a good question. It falls in WAN in the 192.168.x.x and 10.0.0.x ranges.

  • Page not loading until refresh still in 4

    I don't know if anyone else gets this and I would be interested to know why it happens.
    Occasionaly I will pick a site that just sits there try to load. Reselecting it makes it load no problem.
    What could cause this?
    One other thing that bugs me the search forum bar on the right of you screen why does it have a small search bar within a bigger one, its been that way for a long time.
    Many thanks

    Hi,
    What could cause this?
    That's usually symptomatic of DNS lookup issues. Try using the DNS settings provided by [OpenDNS|www.opendns.com] to see if it makes any difference.
    why does it have a small search bar within a bigger one
    Dodgy coding on the forum page, nothing more than that I'm sure Apple will eventually get around to fixing it.

  • Execute without refresh

    can i execute a query without refresh?
    I try
    create database sample1
    and execute it but sample1 does not appear without refreshing the databases?

    No, SSMS Object Explorer don't refresh automatically, you have to refresh manually.
    Olaf Helper
    [ Blog] [ Xing] [ MVP]

  • "movie not loaded" -- some times

    Hi All,
    Some Time movie is not loading even refresh.
    It uses ExternalInterface  to post/get some events.
    Where I need to verify. It is very urgent.
    Is any work around.  Thanks in Advance.
    K. K. Chaitanya.

    i don't understand what you're saying but that image looks like a custom context menu item that's NOT enabled.

  • Mails not loading on to my mobile

    Hi,
    I have configured Office 365 mails on my new Zenfone 6 but the push system is not working inspite of the fact that it was perfectly fine in my earlier Samsung Galaxy, with same settings.
    The mails do not load and refresh gives an error 'couldn't connect to account'
    Pls support, since this is critical for me for my official work.
    Rgds,
    Amit

    Hi,
    Please have a look at the following link and follow the guide to set up Office 365 on your Android phone:
    http://office.microsoft.com/en-in/office365-suite-help/use-office-365-on-your-android-phone-HA103787372.aspx
    In addition, since this forum is for general questions, feedback, or anything else related to Microsoft Office for Windows, I'd recommend you post your question to the Answers forum:
    http://answers.microsoft.com/en-us/office/forum/office_365hp-office_install-os_device_android?tab=Threads
    The reason why we recommend posting appropriately is you will get the most qualified pool of respondents, and other partners who read the forums regularly can either share their knowledge or learn from
    your interaction with us. Thank you for your understanding.
    Steve Fan
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

Maybe you are looking for

  • Layout View is empty in WAD 7.0

    I have created a WAD with tabstrip. This WAD runs fine when executed but in the web application designer the Layout View is empty. I can see all the web items in the overview tab and XHTML tab is OK too. Just the layout view is not showing anything.

  • Credit Note Creation for Invoice of previous sytem

    Hi to everyone, An invoice was created on the previous system (Pastel) and now the client is returning the goods. How would I account for this return? A service credit Note? How to re integrate the stock (goods are coming back in stock) Thanks Kentis

  • Is my iBook REALLY dead?

    G4 iBook 1.33 (mid-2005) 12" Suddenly within 2 - 10 minutes of booting perfectly, I'd get the 4-language gray translucent alert telling me to hold down the Power button and shut down. Through testing I determined it was some sort of hardware problem.

  • I need a backup system, but do not need another wireless system. Does Time Capsule offer just a backup option?

    When I looked up Time Capsule on line, I found it provides backup and wireless connection. I don't want another wireless set up, just backup. Can I get just backup option with Time Capsule or do I have to seek an outside external backup device?

  • Multiple Selection for Plants

    Gurus, While using the Multiple Selection option in MMBE (The Arrow  tab). I could not save the value of the plants I have entered.  Requirement is that the plants needs to be added or removed as and when required./ ie plant need not ot be hard coded