"Page cannot be displayed" error when attempting to download large dataset.

In the following code, can anybody please tell me at what point the data actually starts to get transferred and the popup "download file" box appears? I'm thinking that the dialog box should appear on the first outputstream.write and start transferring data. However, I think it's not transferring the data until the while loop has finished! That's bad because this is a real long process and I eventually get "Page cannot be displayed" error. On a smaller dataset (shorter while loop) everything seems to work correctly. Is there some sort of a web server configuration that tells it to write out the data ONLY if outputstream closes? I really need it to write out the data as it's coming in. Code is below and thanks in advance.
response.setHeader("Expires", "0");
response.setHeader("Content-disposition","inline;filename=Download.csv");
response.setContentType("application/x-msdownload");
outputStream = response.getOutputStream();
bufferInBytes = this.getData();
while (bufferInBytes != null)
outputStream.write(bufferInBytes, 0, bufferInBytes.length);
outputStream.flush();
bufferInBytes = this.getData();
outputStream.close();

Hi All,
Thanks for all your help.
Seems I already found out the issue.
Since we are using "Personal Home Page" for the system profile option "Self Service Personal Home Page Mode" I checked oracle note and found out
that 11i did not support this mode. Maybe this is the problem that is why we are getting page cannot be displayed error when only 1 responsibility is active.
The way to fix this, is to use mode 'Framework Only' instead of 'Personal Home Page' as Oracle are phasing out mod_plsql based UI and it will not be present in future releases. No maintenance is being performed (i.e. bug fixes) to the mod_plsql based UI technology.
Please check this note for more clearer explanation:
Is The 'Personal Home Page' Mode Supported In Oracle 11i Applications? [ID 368628.1]
Again, thank you for your help!

Similar Messages

  • "The Page Cannot Be Displayed" error when clicking the Remote Agent

    Hi everyone! We have installed ACS SE 4.0 and we have added a remote agent running on Windows Server 2003. Recently, we are encountering "The page cannot be displayed" error when we click the RA under a network device group. This is resolved by rebooting the ACS SE appliance and accessing the ACS SE web console again but after few hours, problem reoccurs. Clicking the links on the ACS SE web console is okay at first but after clicking the RA, every link shows the error "The page cannot be displayed." Hope you could help us on this problem. Anyone's support is very much appreciated.
    Thanks!

    Hi JG,
    Thank you so much for your response. Does Cisco have a documentation that states that this is a known issue with 4.0, such as release notes, for we might need this for the proposal upgrade?
    Again, thanks a lot!

  • Page cannot be displayed error when login to EBS home page

    Hi All,
    I have some problem login to EBS page, if only one responsibility is active to user it will get error Page cannot be Displayed error 404 on the Main Menu.
    However if 2 or more responsibilities are active no error will come up and it will show all responsibilities.
    Below is the log I got from apache.
    [Thu Apr 28 15:58:26 2011] [warn] mod_plsql: Stale Connection due to Oracle error 6502
    [Thu Apr 28 15:58:26 2011] [error] mod_plsql: /pls/XXX/OracleNavigate.menuBypass ORA-6502
    ORA-06502: PL/SQL: numeric or value error: hex to raw conversion error
    ORA-06512: at "APPS.ICX_CALL", line 1077
    ORA-06512: at "APPS.ORACLENAVIGATE", line 2358
    ORA-06512: at line 28
    Appreciate if someone can share something about this.
    Database Server
    RDBMS : 10.2.0.2.0
    Oracle Applications : 11.5.10.2
    Thanks a lot

    Hi All,
    Thanks for all your help.
    Seems I already found out the issue.
    Since we are using "Personal Home Page" for the system profile option "Self Service Personal Home Page Mode" I checked oracle note and found out
    that 11i did not support this mode. Maybe this is the problem that is why we are getting page cannot be displayed error when only 1 responsibility is active.
    The way to fix this, is to use mode 'Framework Only' instead of 'Personal Home Page' as Oracle are phasing out mod_plsql based UI and it will not be present in future releases. No maintenance is being performed (i.e. bug fixes) to the mod_plsql based UI technology.
    Please check this note for more clearer explanation:
    Is The 'Personal Home Page' Mode Supported In Oracle 11i Applications? [ID 368628.1]
    Again, thank you for your help!

  • Page cannot be displayed' error when 2 events (FireAction and GO) fired

    We have created a framework page where FireAction event will be executed
    when the value of a calendar item is modified. When we modify the
    value and leave the cursor in the field (without tabbing out), and click
    GO button, 'Page cannot be displayed' error message will be displayed.
    When FireAction event is started, we use CO to retrieve the event. And
    when the cursor remains in item1 after being modified and click GO,
    2 events will be started (the FireAction event and the GO button's event)
    and 'Page cannot be displayed' error will be shown since CO is retrieving
    2 events at the same time.
    Since by changing certain fields of framework page without tabbing out
    is a regualar operation, how can we go around this error when we are
    using FireAction event?
    sample34_00co.java
    package oracle.apps.xx03.ap.webui;
    import oracle.apps.fnd.common.VersionInfo;
    import oracle.apps.fnd.framework.webui.OAControllerImpl;
    import oracle.apps.fnd.framework.webui.OAPageContext;
    import oracle.apps.fnd.framework.webui.beans.OAWebBean;
    import oracle.apps.fnd.framework.webui.OADialogPage;
    import java.util.Calendar;
    * Controller for ...
    public class Sample34_00CO extends OAControllerImpl
    public static final String RCS_ID="$Header$";
    public static final boolean RCS_ID_RECORDED =
    VersionInfo.recordClassVersion(RCS_ID, "%packagename%");
    public StringBuffer message = new StringBuffer();
    * Layout and page setup logic for a region.
    * @param pageContext the current OA page context
    * @param webBean the web bean corresponding to the region
    public void processRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processRequest(pageContext, webBean);
    Calendar cal = Calendar.getInstance();
    // When the browser back button is not executed
    if (!pageContext.isBackNavigationFired(false))
    System.out.println("NOT FROM BACK BUTTON!! ["+cal.getTime()+"]");
    // When the browser back button is executed
    else
    System.out.println("FROM BACK BUTTON!! ["+cal.getTime()+"]");
    //Action being performed when the browser back button is executed
    OADialogPage dialogPage = new OADialogPage(STATE_LOSS_ERROR);
    pageContext.redirectToDialogPage(dialogPage);
    * Procedure to handle form submissions for form elements in
    * a region.
    * @param pageContext the current OA page context
    * @param webBean the web bean corresponding to the region
    public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processFormRequest(pageContext, webBean);
    Calendar cal = Calendar.getInstance();
    if ( "updateItem1".equals(pageContext.getParameter(EVENT_PARAM)) )
    //When FireAction is executed
    System.out.println("item1 FireAction is executed! ["+cal.getTime()+"]");
    else
    //When other actions beside FireAction is executed
    System.out.println("item1 FireAction is not executed! ["+cal.getTime() +"]");
    sample34_00pg.xml
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <!-- dbdrv: exec java oracle/jrad/tools/xml/importer XMLImporter.class java &phase=dat+24 checkfile:~PROD:~PATH:~FILE &fullpath:~PROD:~PATH:~FILE -username &un_apps -password &pw_apps -dbconnection &jdbc_db_addr -userId "1" -rootPackage /oracle/apps/~PROD -rootdir &fullpath:~PROD:mds:directory -->
    <page xmlns:jrad="http://xmlns.oracle.com/jrad" xmlns:oa="http://xmlns.oracle.com/oa" xmlns:ui="http://xmlns.oracle.com/uix/ui" version="9.0.3.8.11_1183" xml:lang="en-US" xmlns:user="http://xmlns.oracle.com/jrad/user" xmlns="http://xmlns.oracle.com/jrad" file-version="$Header$">
    <content>
    <oa:pageLayout id="PageLayoutRN" windowTitle="Sample34_00 WindowTitle" amDefName="oracle.apps.fnd.framework.server.OAApplicationModule" title="Sample34_00 PageHeader">
    <ui:corporateBranding>
    <oa:image id="corporateBrandingImage" source="/OA_MEDIA/FNDSSCORP.gif"/>
    </ui:corporateBranding>
    <ui:contents>
    <oa:messageComponentLayout id="MainRN" controllerClass="oracle.apps.xx03.ap.webui.Sample34_00CO">
    <ui:contents>
    <oa:messageTextInput id="item1" prompt="item1" dataType="DATE">
    <ui:primaryClientAction>
    <ui:fireAction event="updateItem1"/>
    </ui:primaryClientAction>
    </oa:messageTextInput>
    <oa:messageLayout id="ButtonLayout">
    <ui:contents>
    <oa:submitButton id="Go" use="/oracle/apps/fnd/attributesets/Buttons/Go"/>
    </ui:contents>
    </oa:messageLayout>
    </ui:contents>
    </oa:messageComponentLayout>
    </ui:contents>
    </oa:pageLayout>
    </content>
    </page>
    ----------

    Shive...good one..!!
    One thing that you can do if you don't wanna have PPR, is to validate date column in fire action event in CO in process form request, and raise an error if you don't find appropriate format or null , as per your requirement.
    --Mukul                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Getting "Page Cannot be displayed" error when calling a procedure

    Hi all,
    I have a page having a table with more than 2000 rows. On click on save I need to call a pl/sql procedure and then a concurrent program and then based upon the result of CP I need to update the records from the back end.
    All this is done on the click of save button. Now my issue is the concurrent program takes a long time to get completed and I get "Page cannot be displayed error" on my page. Is there any way by which on click of save button I can redirect user to some other page saying the CP has been submitted and at the same time my CP and Pl/SQl procedure will be called. Here I have only one constraint that after competitions of my CP I need to update my table as well. So I need to handle that part as well.
    Regards,
    Arvind Goel

    hi
    would u please share ,how r u calling concurrent program ???
    thanx
    Pratap

  • Page cannot be displayed error when executing WAD

    Hi all,
    I'm getting this error (Page cannot be displayed) when i execute my WAD. What is curious is that i can execute it ok i some machines, but some others get the error.
    Anyone knows what could be causing this?
    I've tried in different machines, all with Win XP sp2 and IE6 browser... and remains the same: some execute the WAD ok, some don't.
    I'll appreciate any help on this.
    Thank you,
    g.

    I had the same error and was a PROXY problem....
    I fix it setting in IE connetions the access to HTTP://MYSERVER/...ETC....in LAN Configuration->advanced options in IE....it works fine for me....
    Regards...

  • Page cannot be displayed - error when a view is created

    Hi all,
         I am new to webdynpro. I am trying to craete a webdynpro application. when a view is created i am not getting the login popup and the layout shows "Page cannot be displayed". I am connected through the router string. The same when i try in the local system i am able to view the layout. The services are activated in sicf.
    Pls guide me to resolve this issue. Is it neccessary that the host name has to be added in my machine also? Because the host is added in the server machine.
    Thanks in advance,
    Neela

    Hi,
    Try following thing:
    Make sure that proxy settings are up to date, for this
    i) Get the link of application
    ii) Copy the part till .com e.g. abc.def.com
    iii) Open internet explorer
    iv) Goto Tools-> Internet Options-> Connections-> LAN Settings-> Advanced->
    v) Add link of application in 'Exceptions' part as *.def.com
    Regards,
    Saket

  • The page cannot be displayed error in UWL

    Hi
    I am getting the "The page cannot be displayed error” when I try to click the Refresh button or MSS link in the UWL.
    Any idea...
    Regards
    Ali

    Hello,
    Can you be more clear? Are you able to see UWL list itself. If you are not able to see the UWL itself, then please make the needed config is done as in the link
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/39/a1bb5c4c0d4ab4a417e87ef35f1efa/frameset.htm
    Regards
    <i><b>Raja Sekhar</b></i>

  • When Loading a Webdynpro Application getting Page Cannot be displayed Error

    Hi All,
    Webdynpro application when loading through Internet or VPN connection is displaying a Page Cannot be displayed Error and when we try to refresh it automatically loads the page.
    Application is launched from the SAP Netweaver Portal. Operating System is Windows Vista and IE -7. Can anyone please let us know how to resolve the issue.
    Any help is higly appreciated.
    Thanks,
    Madhavi

    Hi,
    How is configured the Cache of Your Internet Explorer, try to set it to verify the new version at "Every visit to page".
    Maybe a cache problem.
    Best regards

  • "XML page cannot be displayed" error

    Using XML output on a table with more than a few rows falls over with a "XML page cannot be displayed" error. Sometimes only the error is displayed, sometimes some rows are displayed with this error at the end of the page (eg the DEMO_STATES table)
    Can anyone advise if there is some sort of limiter at work here?
    Thanks,
    Barry

    i'm pretty sure that error comes up when your browser (ie, specifically, i believe) can't render the xml data it's received. i'm also pretty sure, as the full message implies, it's because it doesn't know what style sheet to use when you go to that page. in short, it's a browser config issue. one way to bypass it (to at least prove that it's a browser issue) would be to create a link to your page, right click the link, and do a "Save Target As...". the resulting file will be your valid XML one. fwiw, i've had better luck controlling the manner in which my xml data is received when i use mozilla or netscape (but i'd imagine there's just some setting you'd toggle in IE to avoid your issue).
    hope this helps,
    raj

  • "Page cannot be displayed" error in EBS R12

    Hi All,
    We implemented EBS R12 with 2 Application Node, 2 CM nodes and 2 DB Nodes(RAC). We have also setup load balancer at the application level. We have enabled HTTPS at the load balancer level. Our application works perfectly fine except some of the PIM module related screens and especially Workflow Manager, it gives us "Page Cannot be displayed" error sometime. What we have observed is, Our URL is https://ebs.abcltd.com but when we click on Workflow manager link under Oracle Application Manager, the URL gets redireced to http://ebs.abcltd.com:443/. We would like it know why this redirection is happening? as we have not mentioned this (http://ebs.abcltd.com:443) url in our context file.
    Thanks,
    Prasad

    Hi Prasad,
    Can you find any errors in Apache/Workflow/Database log files when this error occur?
    Did you verify the session persistence on the load balancer? -- See the documents referenced in this F5 Load Balancer with Oracle 11i.
    Regards,
    Hussein

  • The page cannot be displayed Error showing for workspace

    Hi All
    The page cannot be displayed Error showing for workspace.
    http://localhost:19000/workspace/index.jsp
    Other web applications working fine.... Shared Services, FDM webclient
    1. I have restarted Hyperion Workspace - Agent Service and IIS Admin service Still my problem didn't get resolved.
    2.Below web services extensions provided *"Allow"* permission in Internet information services(IIS)Manager
    Active Server Pages
    ASP.NET v1.1.4322
    ASP.NET v2.0.50727
    Internet Data Connector
    Server Side Includes
    WebDAV
    Application Pool->DefaultApp Status showing Running
    Web sites->*1.Default web site 2.Administration* Status showing Running
    Regards
    Smilee

    Correct, I just mistyped it in my thread. I just tried "http://epm.southbay.local:19000/workspace/"
    When I click Start Reporting and Analysis core serivces a command prompt window opens with the name "server" on the window, but the command prompt window itself is empty.

  • Page cannot be displayed error while accessing links on DAS page

    Hi,
    I have installed SSO server along with DAS on a single m/c. While installing i gave OID instance hostname and password. After installation when i access the DAS homepage and click on Login or Myprofile url is is throwing Page cannot be displayed error page
    i found following in the Apache\logs\error.log
    [Wed Nov 23 10:28:26 2005] [error] [client 198.186.43.113] [ecid: 1132759706:198.186.43.113:2408:2136:6,0] MOD_OC4J_0376: Request initial processing failed in ac worker with HTTP status code 1. This status will be passed back to the listener for error handling.
    I checked OC4J_SECURITY and HTTP_Server status. They are up and running. OID is also running.
    Any solution for this problem?

    Hi,
    I once faced a similar problem - I am not sure if the issues are related, but here goes :
    I figured out that DAS uses mod_osso to connect to the SSO Server. I hadn't configured mod_osso to correctly talk to the SSO Server. I used the ssoreg.sh script in the $ORACLE_HOME/sso/bin to make the mod_osso " talk " to the SSO Server.
    After this, the DAS started working properly.
    BTW, what's your AS instance version ?

  • The SharePoint item being crawled returned an error when attempting to download the item.

    I get this error when I run full crawl.
    The SharePoint item being crawled returned an error when attempting to download the item.
    I did make sure that the crawl account has full read access to the web application. I am able to access the page and site just fine from a browser. I am not sure what is causing the problem.

    On closely looking at ULS logs, this is what I am noticing....
    CSTS3Accessor::Init: SharePointError found in URL
    http://xxxxx/default.aspx header value 0, hr=8004FD0F  [sts3acc.cxx:566]  d:\office\source\search\native\gather\protocols\sts3\sts3acc.cxx 
    CSTS3Accessor::Init fails, Url sts4://xxxx/siteurl=/siteid={c011d5c9-9019-41e8-bf5a-5176739b2b79}/weburl=xxxxx/webid={e42001c0-2ef1-4a8e-8fe5-361d72fa60c2}, hr=8004FD0F  [sts3handler.cxx:312]  d:\office\source\search\native\gather\protocols\sts3\sts3handler.cxx 
    CSTS3Handler::CreateAccessorExD: Return error to caller, hr=8004FD0F            [sts3handler.cxx:330]  d:\office\source\search\native\gather\protocols\sts3\sts3handler.cxx 

  • After upgrade SP-Crawl Error: The SharePoint item being crawled returned an error when attempting to download the item.

    Hi All - After the upgrade, I am getting SP-Crawl Error for certain links. I check the Crawl component has proper permission.
    Google is showing some article like
    http://blog.karstein-consulting.com/2012/04/20/error-in-crawl-log-the-sharepoint-item-being-crawled-returned-an-error-when-attempting-to-download-the-item/
    not sure if this resolution is referring to 2010 and/or 2013. 
    I checked the registery editor. I couldn't find 14.0 under the Office Server.
    Any clue?
    Regards,
    Khushi
    Khushi

    I checked the web application policy the search crawl account has full read permission.
    Crawl
    Fiddler
    Log Error referring the Correlation ID
    01/06/2014 13:05:06.14  w3wp.exe (0x1698)                        0x0118 SharePoint Foundation        
     Monitoring                     nasq Medium   Entering monitored scope (Request (GET:/sites/HR/Shared%20Documents/Benefits/Insurance%20Benefits/Life%20Insurance/Basic%20Life%20and%20ADD)).
    Parent No 
    01/06/2014 13:05:06.14  w3wp.exe (0x1698)                        0x0118 SharePoint Foundation        
     Logging Correlation Data       xmnv Medium   Name=Request (GET:<SiteURL>/sites/HR/Shared%20Documents/Benefits/Insurance%20Benefits/Life%20Insurance/Basic%20Life%20and%20ADD) e8b1679c-0476-70d4-9fcd-2cef5be44461
    01/06/2014 13:05:06.14  w3wp.exe (0x1698)                        0x0118 SharePoint Foundation        
     Authentication Authorization   agb9s Medium   Non-OAuth request. IsAuthenticated=True, UserIdentityName=, ClaimsCount=0 e8b1679c-0476-70d4-9fcd-2cef5be44461
    01/06/2014 13:05:06.15  w3wp.exe (0x1698)                        0x1738 SharePoint Foundation        
     General                        af71 Medium   HTTP Request method: GET e8b1679c-0476-70d4-9fcd-2cef5be44461
    01/06/2014 13:05:06.15  w3wp.exe (0x1698)                        0x1738 SharePoint Foundation        
     General                        af75 Medium   Overridden HTTP request method: GET e8b1679c-0476-70d4-9fcd-2cef5be44461
    01/06/2014 13:05:06.15  w3wp.exe (0x1698)                        0x1738 SharePoint Foundation        
     General                        af74 Medium   HTTP request URL: /sites/HR/Shared%20Documents/Benefits/Insurance%20Benefits/Life%20Insurance/Basic%20Life%20and%20ADD e8b1679c-0476-70d4-9fcd-2cef5be44461
    01/06/2014 13:05:06.17  w3wp.exe (0x1698)                        0x1738 SharePoint Foundation        
     Files                          aise3 Medium   Failure when fetching document. 0x80070090 e8b1679c-0476-70d4-9fcd-2cef5be44461
    01/06/2014 13:05:06.17  w3wp.exe (0x1698)                        0x1960 SharePoint Foundation        
     Monitoring                     b4ly Medium   Leaving Monitored Scope (Request (GET:<SiteURL>/sites/HR/Shared%20Documents/Benefits/Insurance%20Benefits/Life%20Insurance/Basic%20Life%20and%20ADD)).
    Execution Time=20.5461867360237 e8b1679c-0476-70d4-9fcd-2cef5be44461
    01/06/2014 13:05:06.17  w3wp.exe (0x1698)                        0x1960 SharePoint Foundation        
     Monitoring                     b4ly Medium   Leaving Monitored Scope (Request (GET:<SiteURL>/sites/HR/Shared%20Documents/Benefits/Insurance%20Benefits/Life%20Insurance/Basic%20Life%20and%20ADD)).
    Execution Time=29.917489513332 e8b1679c-0476-70d4-9fcd-2549ba3ee9d4
    01/06/2014 13:05:06.17  w3wp.exe (0x1698)                        0x1960 SharePoint Foundation        
     Monitoring                     nasq Medium   Entering monitored scope (Request (GET:<SiteURL>nsurance%20Benefits%2fLife%20Insurance%2fBasic%20Life%20and%20ADD&FolderCTID=0x01200039DA632EEACF264685CF39D68A18F7C8)).
    Parent No 
    Any clue?
    Regards,
    Khushi
    Khushi

Maybe you are looking for

  • Operating Concern - Transport

    Hi All, I'm trying to create a New operating concern, new characteristics and value fields in the gold client. But these customizing changes are not "automatically" collected in a transport request. Can someone tell me what is the right way to go abo

  • Hello, I'm installing windows xp on my mac with bootcamp.

    the problem is when I reboot the mac and when I have to choose the operating system PC does not recognize my keyboard ... why? now I can not install the drivers for the keyboard because as soon as I turn on the mac I open the installation of windows,

  • Dead iMac scree

    Hi, I have the 2009 model iMac and while replacing my dvd drive I either didn't attach some cables back correct or something shorted out. Now my iMac's screen doesn't power on but the computer runs. Is there a way to use an external screen to use for

  • How To Use Microsoft Progress Bar import in ocx in forms6i

    I import microsoft progress bar in ocx in form6i but i dont have to initialize it with form or cursor.. can any one send sample code on [email protected] thanxx

  • Will Wireless WRT54G3G Work with USB Broadband card?

    Hi, I bought the WRT54G3G Router... When it arrived I realized it was made to take a plug in Broadband card with the small connectors. I have a USB broadband card. Does anyone know if it will still work via another method, ie: via a lan line, or if t