Introduction

These sample projects demonstrate how to embed a Microsoft ReportViewer control that points to reports hosted on SQL Reporting report servers and how to use SQL Reporting SOAP APIs in your Windows Azure Web application.

Prerequisites

Building the Sample

  • C#
    Edit|Remove
    <appSettings> 
        <!-- Specify the server name of the SQL Reporting instance. This is found in the URL: https://<RSSERVER_NAME>/ReportServer. --> 
        <add key="RSSERVER_NAME" value="instance_name.account_name.windowsazure.mscds.com" /> 
        <!-- Specify the username used to access the SQL Reporting instance. --> 
        <add key="RSUSERNAME" value="username"/> 
        <!-- Specify the password used to access the SQL Reporting instance. --> 
        <add key="RSPASSWORD" value="password"/> 
        <!-- Specify the path of the report hosted in SQL Reporting. This used by the ReportViewer Server Mode project. --> 
        <add key="RSREPORT_PATH" value="/dir/subdir/report_name" /> 
      </appSettings>
  • Description

     

    Source Code Files 

    More Information