我的UWP应用有一个小问题。首先,UWP应用程序具有以下功能:
现在,我想连接到ASP.NET Core 2.1 Web API中的SignalR-Hub。中心看起来像这样:
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.SignalR;
namespace Test.Namespace
{
[Authorize]
public class SyncHub : Hub
{
public void SendUpdate()
{
Clients.All.SendAsync("Update");
}
}
}
这是我的Startup.cs:
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.SignalR;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
namespace Test.Namespace
{
public class Startup
{
public Startup(IConfiguration configuration)
{
Configuration = configuration;
}
public IConfiguration Configuration { get; }
// This method gets called by the runtime. Use this method to add services to the container.
public void ConfigureServices(IServiceCollection services)
{
services.AddMvc().SetCompatibilityVersion(CompatibilityVersion.Version_2_1);
services.AddSignalR();
services.AddSingleton<IUserIdProvider, NameUserIdProvider>();
}
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
public void Configure(IApplicationBuilder app, IHostingEnvironment env)
{
if (env.IsDevelopment())
{
app.UseDeveloperExceptionPage();
}
else
{
app.UseHsts();
}
app.UseHttpsRedirection();
app.UseSignalR(routes =>
{
routes.MapHub<SyncHub>("/syncHub");
});
app.UseMvc();
}
}
}
整个API在配置了Windows身份验证的IIS上运行。 Active Directory在同一台计算机上运行。
这是我的UWP应用调用服务的方式:
HubConnection connection = new HubConnectionBuilder().WithUrl("http://Server:81/syncHub", options => {
options.UseDefaultCredentials = true;
}).Build();
await connection.StartAsync();
此调用始终抛出401。
我在做什么错?我现在已经处理了这个问题一个多星期了,我不知道为什么它不起作用。
感谢所有将帮助我的人:)
编辑:所以我今天尝试了一些思考,发现这不是SignalR本身的问题。我创建了一个ASP.NET Core控制台应用程序,该应用程序具有完全相同的调用,并且一切正常精细。当我在UWP应用中对凭据进行硬编码时,它也可以使用。仅当我在UWP中使用“ UseDefaultCredentials”时,它才无效。我完全一无所知。我已经重新检查了功能,但这也无济于事。
答案 0 :(得分:0)
似乎app.UseHttpsRedirection();
无法重定向客户端凭据。
尝试使用https网址进行测试。
var hubConnectionBuilder = new HubConnectionBuilder();
var hubConnection = hubConnectionBuilder.WithUrl("https://localhost:44381/timeHub",options => {
options.UseDefaultCredentials = true;
}).Build();
await hubConnection.StartAsync();
答案 1 :(得分:0)
最后!
确实很难找到答案,但是现在可以了! 根据此网站:https://support.microsoft.com/en-us/help/303650/intranet-site-is-identified-as-an-internet-site-when-you-use-an-fqdn-o
该应用将呼叫标识为对互联网的呼叫,因此不允许发送默认凭据。我必须使用Internet Explorer将该页面手动添加到本地Intranet站点,然后它才能像魅力一样发挥作用。
感谢所有为我提供帮助的人:)