- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已经花了一个工作日来处理以下 .NET Framework 4.0 异常。我在网上研究了解决方案,但还没有找到可行的解决方案。请提前提供帮助并致谢。
我的 asp.net Web 应用程序在我的本地 PC 环境上运行正常,该环境同时具有 IIS 8.0 和本地 SQL Server 2012 实例,但是当我将其部署到同时具有 IIS 8.0 和 SQL Server 2012 实例的 Web 服务器时,出现异常。
异常(exception):
Stack Trace:
[WebException: The remote server returned an error: (401) Unauthorized.]
System.Net.HttpWebRequest.GetResponse() +8527180
System.ServiceModel.Channels.HttpChannelRequest.WaitForReply(TimeSpan timeout) +237
[MessageSecurityException: The HTTP request is unauthorized with client authentication scheme 'Ntlm'. The authentication header received from the server was 'NTLM'.]
System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg) +14539490
System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type) +622
MyAspNetSolution.Services.ReportService2010.ReportingService2010Soap.ListChildren(ListChildrenRequest request) +0
MyAspNetSolution.Services.ReportService2010.ReportingService2010SoapClient.MyAspNetSolution.Services.ReportService2010.ReportingService2010Soap.ListChildren(ListChildrenRequest request) +102
MyAspNetSolution.Services.ReportService2010.ReportingService2010SoapClient.ListChildren(TrustedUserHeader TrustedUserHeader, String ItemPath, Boolean Recursive, CatalogItem[]& CatalogItems) +220
MyAspNetSolution.Services.ReportServerInfoService.ListReportCollection(String itemPath, Boolean recursive) +653
MyAspNetSolution.AspxPageListAllReportsOnSSRS.Page_Load(Object sender, EventArgs e) +151
....
--------------------------------------------------------------------------------
Version Information: Microsoft .NET Framework Version:4.0.30319; ASP.NET Version:4.0.30319.18034
详细信息/我的故事:
我有一个 asp.net Web 表单应用程序,它具有对 SQL Server 2012 Reporting Service 的 SOAP Web 服务的 Web 引用并使用该服务(请参阅 http://msdn.microsoft.com/en-us/library/ee640743.aspx )。我的名为“MyAspNetSolution”的asp.net Web表单解决方案是使用VS 2012/.NET Framework 4.5和本地企业版SQL Server 2012开发的。该解决方案包含一个Web表单应用程序项目,以及其他自定义类库项目。这些类库项目之一是名为“MyAspNetSolution.Services”的类库项目,其 Web 引用为并使用 SSRS SOAP Web 服务,例如:
...
using MyAspNetSolution.Services.ReportService2010;
using System.Net;
...
namespace MyAspNetSolution.Services
{
public class ReportServerInfoService
{
public CatalogItem[] ListReportCollection(string itemPath, bool recursive)
{
CatalogItem[] reportCollection = {};
try
{
ReportService2010.ReportingService2010SoapClient client = new ReportService2010.ReportingService2010SoapClient();
client.ClientCredentials.Windows.ClientCredential = System.Net.CredentialCache.DefaultNetworkCredentials;
client.ClientCredentials.Windows.AllowedImpersonationLevel = System.Security.Principal.TokenImpersonationLevel.Impersonation;
client.Open();
TrustedUserHeader t = new TrustedUserHeader();
try
{
// I need to list of children of a specified folder.
client.ListChildren(t, itemPath, recursive, out reportCollection); // see http://msdn.microsoft.com/en-us/library/reportservice2010.reportingservice2010.listchildren.aspx
}
catch (SoapException ex)
{
_logger.Error("ReportServerManagementService--" + ex);
}
}
catch (SoapException ex)
{
_logger.Error("ReportServerManagementService--" + ex);
}
return reportCollection;
}
}
}
我的 Web 应用程序项目 Web.config 中 SQL Server 2012 Reporting Service 的 SOAP Web 服务的端点、绑定(bind)和其他部分如下所示:
...
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="ReportingService2010Soap">
<security mode="TransportCredentialOnly">
<transport clientCredentialType="Ntlm"></transport>
</security>
</binding>
</basicHttpBinding>
</bindings>
<client>
<endpoint address="http://my-pc-network-domain-or-server-domain/ReportServer_SQL2012/ReportService2010.asmx" binding="basicHttpBinding" bindingConfiguration="ReportingService2010Soap" contract="ReportService2010.ReportingService2010Soap" name="ReportingService2010Soap"/>
</client>
</system.serviceModel>
...
附注:
我还查看了以下线程(针对 SharePoint 客户端开发),代码与我正在开发的代码(针对 SSRS 客户端开发)相同,但在我的本地 PC 环境上工作,而不是在 Web 服务器上。
或其他资源:
http://jaliyaudagedara.blogspot.com/2012/05/accessing-report-server-using-report.html
最佳答案
您应该尝试 NetworkCredentials 并将它们传递给客户端。如果仍然出现错误,请将其放入您的 wcf 配置文件中:
<identity>
<servicePrincipalName value=""/>
</identity>
谢谢
关于asp.net - SSRS Web 服务访问异常 - 401 未经授权的方案 'Ntlm',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17003807/
据我所知,要将声音设置为铃声,应将其插入 MediaStore。在 MediaStore 中写入,需要 WRITE_EXTERNAL_STORAGE 权限。但是...有没有办法在不需要 WRITE_E
我只是想设置铃声。我不想授予 WRITE_SETTINGS 权限,我可以找到大部分答案来授予 WRITE_SETTINGS 权限但是我正在使用一个应用程序,该应用程序没有设置铃声的 WRITE_SET
我在 Windows 10 中以管理员身份运行 Android studio。AVD 是 Nexus 5X API 28。我正在尝试运行 flutter 演示,但设备下拉框仍然显示“无设备”,它只是有
我的应用程序构建于 spring-social-twitter允许用户使用 Twitter 登录的功能最近已停止工作。 我收到如下错误消息: Callback URL not approved for
我正在尝试使用 python-firebase 更新 Firebase库,但无法使用经过修改的示例代码进行身份验证: from firebase import firebase as fb auth
今天,当我尝试使用 GCC7 编译一个非常简单的 C++ 程序时,我遇到了一个非常奇怪的问题:程序没有向构造函数中的 vector 添加任何元素,当编译时没有优化(例如 -O0/-Og ) 来自 Re
简单问题:我正在尝试使用 Discord API 备份服务器(或公会,如果您使用官方术语)上的所有消息。 因此,我实现了 OAuth,没有任何问题,我有访问 token ,并且可以查询一些端点(我尝试
您好,我正在使用 msdn 中的以下代码供我公司内部使用: using System; public sealed class Singleton { private static volati
我们从 Google 的 GCM 服务中收到间歇性的 401 Unauthorized 错误。在过去,它 100% 的时间都有效。该问题可能与我们的路由器接受 IPv6 流量同时发生,但即使我们在适配
我有一个使用 Playwright + TS-Jest 设置 E2E 测试的项目。为了组织我的测试,我使用页面对象模型。结构看起来像这样: 我想在 tsconfig.json 中使用 TypeScri
我有一个后端应用程序在 Google Cloud Storage 中同步文件,我想在 javascript 中列出存储中的所有文件,而不需要从后端请求它们。我已经设置了 CORS,并且所有文件的 ac
我在尝试在私有(private) gitlab 存储库中发布 Artifact 时遇到问题。我正在使用 Maven 并使用个人访问 token 进行身份验证。当我运行 mvn deploy -s ~/
这是从 Google+ 登录中使用的 GoogleApiClient 获取 token 的传统方式: String token = GoogleAuthUtil.getToken(apiClient.
我在阅读 facebook Open Graph 文档后比较确定我不能让网站“订阅”公共(public)页面,除非该页面安装了我的应用程序。如果那是错误的,请告诉我。 我想做的是一个照片库,非常简单,
我是一名优秀的程序员,十分优秀!