表单身份验证不起作用。当SMF尝试访问需要特定用户角色的服务器上的* .ism / Manifest文件时,不会将Auth cookie发送到服务器。

我所做的:
1.创建具有支持RIA WCF的新Silverlight平滑流模板。
2.配置web.config:

<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.xaml.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.config文件限制:

    <?xml version="1.0" encoding="UTF-8"?>
    <configuration>
        <system.web>
            <authorization>
            <allow roles="Role_name" />
            <deny users="*" />
            </authorization>
        </system.web>
    </configuration>


用户以该角色存在。

当我使用Xaml(大兔子)中指定的默认视频时,一切都很好。但是,当我将mediasource更改为服务器上限制区域的路径时,会出现访问错误。
在客户端,我成功获得了用户凭据。

提琴手展示下一件事情:
当我尝试访问RIA WCF上的另一种受限方法([RequiresAuthentication])时,客户端会发送Auth cookie,但是当SMFPlayer尝试访问媒体源时,不会发送该cookie。

我错过了什么?

最佳答案

我找到了一些解决方法:
如果将流文件传输到子目录中,并限制对其的访问(而不是包含“ ism”文件的目录)。清单将发给匿名用户,但数据流仅用于注册(当玩家尝试触摸数据流时,它会成功附加身份验证cookie)。

关于c# - Microsoft Media Platform +表单例份验证,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8693700/

10-13 06:27