微软媒体平台+表单认证
本文关键字:表单 认证 平台 媒体 微软 | 更新日期: 2023-09-27 18:19:07
表单身份验证不起作用。当SMF试图访问*时,验证cookie不会发送到服务器。
需要指定用户角色的服务器上的ism/Manifest文件。我做什么:1. 创建新的Silverlight平滑流模板,支持RIA WCF。2. 配置网络。配置:
<connectionStrings>
<add name="ApplicationServices" connectionString="Data Source=[SERVER];Initial Catalog=[CATALOG];User ID=[USER];Pwd=[PASSWORD];" providerName="System.Data.SqlClient" />
<system.web>
<authentication mode="Forms">
<forms loginUrl="~/Account/LogOn" timeout="2880" />
</authentication>
<membership>
<providers>
<clear />
<add name="AspNetSqlMembershipProvider" type="System.Web.Security.SqlMembershipProvider" connectionStringName="ApplicationServices" enablePasswordRetrieval="false" enablePasswordReset="true" requiresQuestionAndAnswer="false" requiresUniqueEmail="false" maxInvalidPasswordAttempts="5" minRequiredPasswordLength="6" minRequiredNonalphanumericCharacters="0" passwordAttemptWindow="10" applicationName="/" />
</providers>
</membership>
<profile>
<providers>
<clear />
<add name="AspNetSqlProfileProvider" type="System.Web.Profile.SqlProfileProvider" connectionStringName="ApplicationServices" applicationName="/" />
</providers>
<properties>
<add name="Gender" />
<add name="Birthday" />
<add name="AvatarPath" />
</properties>
</profile>
<roleManager enabled="true">
<providers>
<clear />
<add connectionStringName="ApplicationServices" applicationName="/" name="AspNetSqlRoleProvider" type="System.Web.Security.SqlRoleProvider" />
<add applicationName="/" name="AspNetWindowsTokenRoleProvider" type="System.Web.Security.WindowsTokenRoleProvider" />
</providers>
</roleManager>
- 添加认证服务和正确的用户类(添加3个道具)。
- 在客户端将此添加到app. example .cs:
public App()
{
//Default things...
InitializeWebContext();
}
private void InitializeWebContext()
{
WebContext webContext = new WebContext();
var fa = new FormsAuthentication();
var ac = new AuthenticationDomainService1();
fa.DomainContext = ac;
fa.Login(new LoginParameters("user", "password"), (y) =>
{
if (!y.HasError)
{
this.RootVisual = new MainPage();
}
}, null);
webContext.Authentication = fa;
ApplicationLifetimeObjects.Add(webContext);
Resources.Add("WebContext", WebContext.Current);
}
web限制访问。目标目录下的配置文件:
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.web>
<authorization>
<allow roles="Role_name" />
<deny users="*" />
</authorization>
</system.web>
</configuration>
用户在此角色中存在。
当我使用Xaml (Big Bunny)中指定的默认视频时-一切都很好。但是,当我将mediasource更改为服务器上限制区域的路径时,我得到访问错误。在客户端,我成功地获得了用户凭证。
Fiddler显示下一个东西:当我尝试访问RIA WCF上的另一个受限方法([RequiresAuthentication])时,客户端发送认证cookie,但当SMFPlayer尝试访问媒体源时,该cookie未发送。
我错过了什么?
我找到了一些解决方法:如果您将流文件传输到子目录中,并限制对它的访问(而不是包含"ism"文件的目录)。Manifest将发布给匿名用户,但数据流仅用于注册(当玩家尝试触摸数据流时,它成功地附加了认证cookie)。