Reports timeout at 60-seconds in web page

I have an SSRS 2012 report that takes a couple minutes to run. It runs fine in Visual Studio, and when run directly from the report-server manager (webpage), but when run from an ASP.NET webpage, it "stops running" at 60-seconds. No errors - just
the "please wait" message disappears and there are no results, although the report toolbar is still visible and operable. You can click the refresh button on the report toolbar and it "runs" again, but still stops at 60-seconds and
nothing in the results.
I don't believe the problem is at the report server, since the report runs fine there. I think it is somewhere in the web server that's accessing the report server, but I just can't find anywhere there might be an exact 60-second timeout. The web server
is pretty-much vanilla, with it's default settings.
Does anyone know what timeout might be defaulting at 60-seconds and causing the report to just stop?
Thanks in advance.
DanielCraig

Hi Daniel - Are you using ReportViewer control? If so, please check this out - http://social.msdn.microsoft.com/Forums/en-US/58a4367a-b48c-4db7-9293-5e1123f9440a/report-viewer-2010-long-running-reports-time-out?forum=sqlreportingservices
Shahfaisal Muhammed http://shahfaisalmuhammed.blogspot.com

Similar Messages

  • XML Publisher Report EXCEL output Huge stored as Web Pages

    Hello
    I have a XML Publisher Report which generates EXCEL output and the output file size is huge.
    What I notice that it is stored as Web Pages *.htm; *.html (Save as Type) in Excel this is the reason it is huge.
    If I save as Microsoft Office Excel Workbook *.xls it Reduce the size.
    I don't know how to save as ".xls" through XML Publisher using PL/SQL.
    Any body knows? please Help..
    XML Publisher Template Builder for WORD
    Version 5.6 Build 45
    PATCH        BUG_NUMBER
    XDO.H     *3263588*
    4.5.0     *3554613*
    5.0.0     *3822219*
    5.5.0     *4206181*
    5.0.1     *4236958*
    5.6.0     *4561451*
    5.6.1     *4905678*
    5.6.2     *5097966*
    5.6.3     *5472959*
    Thanks.

    Hi Vetsrini,
    We're on 10.1.3.4.1 and siebel 8.1.1.3 and when trying to open a report from within siebel in the output format EXCEL (selected from the parameter applet), it just opens the document in the browser.
    Is there a way to get it to open directly in Excel? I guess the reason is the file extension*.EXCEL, how could we get the extension to be in excel format (xls)?
    We don't want our users to have to do this themself.
    Regards,
    Hakan

  • Lightroom 1.1 Server timeout message when uploading a web page

    I just updated to LTR 1.1 and now I'm sitting here looking at an error message for most of the day when ever I want to make a Web Page in LTR.
    It tells me the Server is not responding and It's timing out.
    I called my ISP and Server both are okay. What can I do or, who can I call to make things work a little ?

    Duane,
    This looks like the URL has the content of a wiki page as an attachment to the URL which is blowing up the get request. Can you go to the earlier version - the history should allow you to backtrack changes - if you access this earlier version and change something small - does it save OK. If so then maybe the change you made is the problem.
    I cannot access the workspace without being given explicit access so this is a guess.
    Phil

  • Web pages keep turning on and off?

    Web page keeps turning into a black screen and then back to web page every few seconds?

    Web page keeps turning into a black screen and then back to web page every few seconds?

  • Getting Error While Displaying web page in Oracle Report 11g

    Hi,
    I am new to Oracle reports 11g. I have stuck into an error. While I'm trying to display the web page it says "No such Web command ()".
    I am using following URL to call the report.
    http://hostname:port/reports/rwservlet/?server=repserver&report=a.jsp&destype=cache&desformat=htmlcss&userid=scott/tiger@db
    Please help me out from this.

    Hi Rupesh,
    Thanks a lot removing web solved my problem.
    My second problem is
    1) SAP xMII >Navigation services>Navigation do following
    a) From the account name pull down menu select everyone
    b)In the navigation tree tab page,choose Navigation Item >Add>Child
    c)In the loading content dialog box,enter a name , for example,"Test"
    d)choose."..."
    e)In the File Browse dialog box,open the CM folder and navigate to teh QM folder
    Select ZPPWeb.htm and choose Ok
    After this I get error message as
    "Can't move focus to the control because it is invisible , not enabled or of a type that does not accept the focus".
    It does not add my htm file to the navigation link
    Thanks in advance
    Regards Namita

  • Print / Export on web page no longer works for Crystal Report

    I am honestly at a loss, for days, the report would allow me to click on the printer icon and print to PDF or export the result of the report, but now, all I get is a blank page when the page refreshes. It no longer asks me for print range or anything. I thought this might be a IE 6 setting, but after reviewing the settings and placing the site in my trusted sites list, I still can't print.Is there a web.config setting I need to know about to make sure that export and print are enabled?
    I get no error messages at all, it is as if the button is broke, but I have no way to troubleshoot the innerworkings of crystal xi r2 buttons on the web page. If I could just step though the script it uses that would atleast let me see what is going on, but right now, I am stuck.
    Thanks for your help ahead of time.

    I've went a bit farther than that, I created a virtual directory and placed the aspx file (and its associated ascx and designer files) into that folder along with the report, then I placed a basic web.config file with only crystal required elements within that folder. I disconnected that version of the viewing page from the master web file so that it no longer used a master file, I setup the assembly register at the top under the control section, then I placed the viewer and source on that page. Same end result, the report shows but when clicking on any option, the page is blank but source shows that there is javascript there. My report is not autobound, it is programatically generated from a click of a button.
    These were my assumptions:
    1) when the report is generated, it is on the page and the session information has everything it needs to know about the report
    2) when an option is selected, either clicking on the tree, the zoom, the print or export (or other options), that the view information is passed back during the postback event to the controls so that the report would not have to be regenerated
    What I am finding out, at the very least through trials, is that an autobound report, the controls work, but a manual bound report, the pages are blank after selection of any of the listed javascripted items. On top of that, the only time that this seems to be working on a manual bound page is that the page can contain nothing but the report and that the report must be rebuilt on page_load event. Which is not good.
    What 'should' be the desired design, is that Crystal writes to a session variable, the report data so that on a post back event, it understands what we want without having to do a full report reload. This would be optional of course because in its current design, each event triggered causes a repost of new data and never last pulled information, so that if there was a change in records, the event pulls the most up to date information. This is not documented anywhere that I have found for web design.
    So then, another problem along the same lines has arrisen. As you say, Crystal doesn't play well with AJAX, but AJAX is a requirement for the project and I need to have a progress bar for the report since ultimately the page is waiting on the report to show. Depending on the report and the postback, this could be a while, If it takes a minute for the initial view of the report to show, all events on the page will trigger a full refresh of the report and subsequent pulls will take the same time since the controls don't allow for 'use posted data' instead of 'pull new data'.
    Taking your suggestion, I removed the view from the panel and placed it above the panel control. At this point, the tree node script works, the zoom script works, all of the controls in the control colection on the report work, except export and print, those two still do not work. This is with me also placing the call to the buildreport on page_load event.
    What is even more troubling, is that not until I had removed the UpdatePanel and UpdateProgress controls from the page completely did the export or print work at all. With the fact those two exist anywhere on the page in general causes a problem. Again, not a desired result. I need a live visual effect for the user that something is going on because some of the reports take seconds while others can take minutes depending on the pull and they need to know that 'something' is going on.
    Removing UpdatePanel and UpdateProgress is not an option.

  • A second web page pops up

    when i go to a web page a second page loads all the time
    usually google or clicksor or another
    how do i stop this i blocked google with no sucess
    happens in exploror too

    Have you tried to
    '''''[https://support.mozilla.org/en-US/kb/troubleshoot-firefox-issues-using-safe-mode Start Firefox in Safe Mode]'''''?
    <BR><BR>What is the real web address where you are having problems?
    What is your computer system? Are you using add-ons / plugins?
    ================================================
    Sometimes a problem with Firefox may be a result of malware installed on your computer, that you may not be aware of.
    You can try these free programs to scan for malware, which work with your existing antivirus software:
    * [http://www.microsoft.com/security/scanner/default.aspx Microsoft Safety Scanner]
    * [http://www.malwarebytes.org/products/malwarebytes_free/ MalwareBytes' Anti-Malware]
    * [http://support.kaspersky.com/faq/?qid=208283363 TDSSKiller - AntiRootkit Utility]
    * [http://www.surfright.nl/en/hitmanpro/ Hitman Pro]
    * [http://www.eset.com/us/online-scanner/ ESET Online Scanner]
    [http://windows.microsoft.com/MSE Microsoft Security Essentials] is a good permanent antivirus for Windows 7/Vista/XP if you don't already have one.
    Further information can be found in the [[Troubleshoot Firefox issues caused by malware]] article.
    Did this fix your problems? Please report back to us!

  • Bex: diplaying the report in Web page needs print button and extend frame.

    Hi
    1. Is this possible to add print button in the web page which we execute from Bex for the Report or Queries?
    2. After Execution the display area is small within the frame , is that possible to extend the size of the frame and display?
    Thanks and points will be assigned!
    Regards
    M.A

    Hi
    1. Is this possible to add print button in the web page which we execute from Bex for the Report or Queries?
    2. After Execution the display area is small within the frame , is that possible to extend the size of the frame and display?
    Thanks and points will be assigned!
    Regards
    M.A

  • How do I call Reports 2.5 from a web page?

    Dear all,
    I want to make a hiperlink on a web page that calls a (run) report (2.5).
    Can someone please help me how to define the call?
    Best regards,
    Ronald.

    Hi Ronald,
    You have to use Reports CGI (it is r25cgi32.exe in Reports 2.5), as you are calling from web.
    For Example,
    To generate the HTML output to cache, your hyperlink should be,
    http://myhost.com:portno/cgi-bin/r25cgi32?server=repserver1+report=test.rdf+userid=scott/tiger@mydb+destype=cache+desformat=html
    You should have the Web server <-> Reports CGI Setup. A Report server (repserver1, in this example) should be running to accept the jobs from CGI.
    Thanks,
    -Siva B

  • How to embed a report in a web page?

    Hello,
    I want to have my users just go to a web page and bring up their reports.  I don't want to spend $7,000.00 on Crystal Server when I only have 5 reports the users need.
    Is there a way to just embed a control or something into a web page?  Maybe even use an older version and the RDC component?
    Thanks.

    See my reply on the following thread;
    Do I need to buy an old version of Crystal Reports to put reports in browse
    Ludek
    Follow us on Twitter http://twitter.com/SAPCRNetSup

  • Embedding Crystal Reports with parameters in web page

    Hi,
    I have created a sample report file and configured it with a parameter field. On embedding this report file in the web page, as expected I am prompted to enter value for the parameter. After entering value and clicking OK, CrystalReportViewerServlet delegates the call to the custom JDBC connector implementation which is the data provider. However, the web page doesnu2019t show the retrieved resultset but shows a page with some text like this:
    {"update":{"children":[{"children":[
    {"args":{"curPage":1,"numPages":"1"},"cons":"bobj.crv.newSelectPageControl"},{"args":{"searchText":""},"cons":"bobj.crv.newSearchTextControl"}
    ],"cons":"bobj.crv.newToolbar"},{"args":{"displayDrilldownTab":true,"initTabIdx":0},"children":[{"args":{"isMainReport":true,"label":"Main Report","viewStateId":"1"},"children":[{"args":{"content":"\r\n 
    On debugging I could see, that the parameter value from the prompt is correctly passed from the CrystalReportViewerServlet to the custom Connector (i.e., the sql query is updated with the parameter value) and the connector fetches the data also.
    I also tried embedding another .rpt file with few parameter fields configured (where user input values are just passed to the details section of the report for display). However on running this web page also I get the same error.
    Report files with no parameter fields configured are working fine when embedded in web page.
    Any thoughts would be appreciated.
    Regards,
    Ria

    I would take a look at running our simple [sample application |http://www.sdn.sap.com/irj/boc/index?rid=/library/uuid/307224d2-3d11-2c10-fe86-d87bab901bee&overridelayout=true]that views reports to see if you have the issue there.

  • Report not displyed in web page

    Hi All,
    I am trying to execute the report in Query designer and when i click on execute button the internet explorer pops up with about blank page.Is thery any specific settings  i need to make in order to display the report in web page.Please provide me the step by step process to make this work.
    Thanks.

    Hi
    there are some setting to be made in your system (your IP system addres is not recognized by the internet explorer)
    follow the steps
    Step1
    click on the start button---- Run->type Drivers->open the Folder ETC
    Step 2
    On the Host file , right click and open with notepad once you open it you will find the text as below
    Copyright (c) 1993-1999 Microsoft Corp.
    This is a sample HOSTS file used by Microsoft TCP/IP for Windows.
    This file contains the mappings of IP addresses to host names. Each
    entry should be kept on an individual line. The IP address should
    be placed in the first column followed by the corresponding host name.
    The IP address and the host name should be separated by at least one
    space.
    Additionally, comments (such as these) may be inserted on individual
    lines or following the machine name denoted by a '#' symbol.
    For example:
         101.54.64.87    xxxx.ac.com          # source server
          37.25.68.15     x.xxx.com              # x client host
    as above copy your server name of your BI system and paste it below and save it .
    Step3
    now close all and open fresh with the query designer and execute.
    hope your problem will be solved
    santosh

  • How to load a web page into crystal report

    How can i load a web page into crystal report? pls help
    Thanks in advance

    Hi Sebastin,
    You can't open a webpage in your Crystal Report, because all webpages will be executed in browser only. If you insert any webpage link in any documents it will not open in the same document, it will open in browser.
    Hope this will help you
    Thanks,
    Sastry

  • Since a week or 2 Firefox has been loading web pages very slow. Or it does load them but it takes a good 3 seconds before i can scroll or enter anything.

    This morning also it froze up for a good 10 seconds and then it loaded the web pages again. Especially when i am browsing on a forum and return to main page or something. It just takes ages before i can select anything. It loads somewhat slower also but the part of it that i cannot select anything or scroll down before it stops thinking.

    A possible cause is a problem with the file places.sqlite that stores the bookmarks and the history.
    *http://kb.mozillazine.org/Bookmarks_history_and_toolbar_buttons_not_working_-_Firefox
    *https://support.mozilla.org/kb/Bookmarks+not+saved#w_fix-the-bookmarks-file
    You can also try to repair the places database with this extension:
    *https://addons.mozilla.org/firefox/addon/places-maintenance/
    A possible cause is security software (firewall) that blocks or restricts Firefox or the plugin-container process without informing you, possibly after detecting changes (update) to the Firefox program.
    Remove all rules for Firefox and the plugin-container from the permissions list in the firewall and let your firewall ask again for permission to get full unrestricted access to internet for Firefox and the plugin-container process and the updater process.
    See:
    *https://support.mozilla.org/kb/Server+not+found
    *https://support.mozilla.org/kb/Firewalls

  • I want to launch a Bo report whith a URL and render it back to the web page

    I want to launch a Bo report whith a URL and render it back to the web pages in HTML format? And the report have parameters as well.
    Exampel: If a have report in InfoView that i want to se in my web page i just click a link button with my URL. And i get my report.
    My version of BO is 5.1.6 at the moment but we are going to upgrade to BO XI soon.
    Here is another exampel that works for Reporting Services:
    http://stosp2/Reportserver?/KPI/KPI_map3&rs:command=render&KPI=CA&rc:Toolbar=False&rc:Parameters=False
    Best regards
    Mikael Bergströ

    Hi,
    You can find the guide here
    [http://resources.businessobjects.com/support/communitycs/TechnicalPapers/boe_xi_opendocument.pdf]
    The openDocument API is available in Business Objects XI onwards. I don't think you would be able to do it from 5.1.6.
    Regards
    Jacques

Maybe you are looking for