这是错误消息:
“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 错误的主题,但到目前为止没有一个对我有用。关于在哪里看的任何建议?