Note that there are some explanatory texts on larger screens.

plurals
  1. POdisplaying a report in server using report viewer VS 2010
    primarykey
    data
    text
    <p>We hosted new website, in that I created 3 reports using asp.net MS-report (report viewer).</p> <p>I published this locally and it is working great, but same thing I copied to server now its not displaying the report and it's asking for authentication. After providing username and password, it's simply showing a blank page. </p> <p>And also manually I transferred all <strong>.rdlc</strong> files into report folder with I copied data set to application folder.</p> <p>And here is my <code>web.config</code>: </p> <pre><code>&lt;?xml version="1.0"?&gt; &lt;!-- For more information on how to configure your ASP.NET application, please visit http://go.microsoft.com/fwlink/?LinkId=169433 --&gt; &lt;configuration&gt; &lt;appSettings&gt; &lt;add key="CrystalImageCleaner-AutoStart" value="true" /&gt; &lt;add key="CrystalImageCleaner-Sleep" value="60000" /&gt; &lt;add key="CrystalImageCleaner-Age" value="120000" /&gt; &lt;/appSettings&gt; &lt;system.web&gt; &lt;sessionState timeout="20"/&gt; &lt;compilation targetFramework="4.0"&gt; &lt;assemblies&gt; &lt;add assembly="CrystalDecisions.CrystalReports.Engine, Version=13.0.2000.0, ulture=neutral, PublicKeyToken=692fbea5521e1304"/&gt; &lt;add assembly="CrystalDecisions.ReportSource, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304" /&gt; &lt;add assembly="CrystalDecisions.Shared, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304" /&gt; &lt;add assembly="CrystalDecisions.Web, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304" /&gt; &lt;add assembly="CrystalDecisions.ReportAppServer.ClientDoc, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304" /&gt; &lt;add assembly="Microsoft.ReportViewer.WebForms, Version=10.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" /&gt; &lt;add assembly="Microsoft.ReportViewer.Common, Version=10.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" /&gt; &lt;add assembly="Microsoft.Build.Framework, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" /&gt; &lt;add assembly="System.Management, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" /&gt; &lt;/assemblies&gt; &lt;buildProviders&gt; &lt;add extension=".rdlc" type="Microsoft.Reporting.RdlBuildProvider, Microsoft.ReportViewer.WebForms, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" /&gt; &lt;/buildProviders&gt; &lt;/compilation&gt; &lt;globalization requestEncoding="iso-8859-1" responseEncoding="iso-8859-1" /&gt; &lt;httpHandlers&gt; &lt;add path="CrystalImageHandler.aspx" verb="GET" type="CrystalDecisions.Web.CrystalImageHandler, CrystalDecisions.Web, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304" /&gt; &lt;add path="Reserved.ReportViewerWebControl.axd" verb="*" type="Microsoft.Reporting.WebForms.HttpHandler, Microsoft.ReportViewer.WebForms, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" validate="false" /&gt; &lt;/httpHandlers&gt; &lt;/system.web&gt; &lt;connectionStrings&gt; &lt;add name="constr" connectionString="Data Source=SQLEXPRESS; Initial Catalog =databasename; User Id = user; Password = pwd;" /&gt; &lt;add name="iCAMSConnectionString" connectionString="Data Source=SQLEXPRESS;Initial Catalog=databasename;Persist Security Info=True;User ID=user;Password=pwd" providerName="System.Data.SqlClient" /&gt; &lt;/connectionStrings&gt; &lt;system.webServer&gt; &lt;handlers&gt; &lt;add name="CrystalImageHandler.aspx_GET" verb="GET" path="CrystalImageHandler.aspx" type="CrystalDecisions.Web.CrystalImageHandler, CrystalDecisions.Web, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304" preCondition="integratedMode" /&gt; &lt;add name="ReportViewerWebControlHandler" preCondition="integratedMode" verb="*" path="Reserved.ReportViewerWebControl.axd" type="Microsoft.Reporting.WebForms.HttpHandler, Microsoft.ReportViewer.WebForms, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" /&gt; &lt;/handlers&gt; &lt;validation validateIntegratedModeConfiguration="false" /&gt; &lt;/system.webServer&gt; &lt;/configuration&gt; </code></pre> <p>And I kept all <strong>.dll</strong> in <code>bin</code>, for example: </p> <pre><code>Microsoft.ReportViewer.WebForms Microsoft.ReportViewer.Common </code></pre> <p>and reports(.rdlc) in report folder</p> <p>Please any one can help me, I tried lot but i don't know where I am missing. </p> <p>Thank you.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload