这是错误消息:
“502 - Web服务器在充当网关或代理服务器时收到无效响应。”
我有这个ReportService,它正在消耗C#中的代码,就像这样:
string Uri = "report service url"
ReportViewer1.ServerReport.ReportServerUrl = new Uri(Uri);
string reportKey = "report to be called";
ReportViewer1.ServerReport.ReportPath = reportKey ;
ReportViewer1.ServerReport.SetParameters("some more url parameters for the report");
ReportViewer1.ServerReport.Refresh();
ReportViewer1.PageCountMode = PageCountMode.Actual;
显示如下:
<rsweb:ReportViewer
ID="ReportViewer1"
runat="server"
ProcessingMode="Remote"
AsyncRendering="true"
SizeToReportContent="True"
ShowRefreshButton="True"
ExportContentDisposition="AlwaysAttachment"
ShowBackButton="False"
BackColor="White">
</rsweb:ReportViewer>
我一直在寻找这个场景,肯定有很多关于502错误的话题但到目前为止没有一个对我有用。 有关何处查看的任何建议?