RDLC Reports to be generated after stipulated Time

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • raghulvarma
    New Member
    • Oct 2007
    • 90

    RDLC Reports to be generated after stipulated Time

    Consider the following scenario. Currently a .Net application is used to generate reports. The end user needs the reports twice in a day.So he runs the application at scheduled time for report generation.
    Now the client wants to automate this process such that the application should become a scheduled task at the desired time of the client.That is, the client need not run the application every time he needs. When the IIS starts, the application should initiate itself and generate the reports at scheduled time.
    Placing the code in Application_Sta rt event handler of Global.asax will not help here since it needs the application to be run for the purpose of report generation. Do you have any idea where to and how to code so that the application will generate reports once the IIS starts?


    Thanks and regards
    Raghul
  • Frinavale
    Recognized Expert Expert
    • Oct 2006
    • 9749

    #2
    Consider using a Windows Service to run this task.

    Move the report generating code into a Class Library (DLL) that both your ASP.NET application and this Windows Service can use to generate reports. The reports will automatically be generated by the Windows Service, and the ASP.NET application will let them generate the report like they are currently.

    Comment

    • raghulvarma
      New Member
      • Oct 2007
      • 90

      #3
      Crystal Report generation automatically daily at a particular time

      Consider the following scenario. Currently a .Net application is used to generate reports. The end user needs the reports twice in a day.So he runs the application at scheduled time for report generation.
      Now the client wants to automate this process such that the application should become a scheduled task at the desired time of the client.That is, the client need not run the application every time he needs. When the IIS starts, the application should initiate itself and generate the reports at scheduled time.
      Placing the code in Application_Sta rt event handler of Global.asax will not help here since it needs the application to be run for the purpose of report generation. Do you have any idea where to and how to code so that the application will generate reports once the IIS starts?


      Thanks and regards
      Raghul

      Comment

      • Frinavale
        Recognized Expert Expert
        • Oct 2006
        • 9749

        #4
        Did you consider the Web Service solution I suggested?

        If you've disregarded this suggestion, then what have you tried to solve the problem?

        What are you thinking of using as a solution?

        Comment

        Working...