フォーム:設定WCFは、私が持っている私のサービスの実装では認証
<serviceHostingEnvironment aspNetCompatibilityEnabled="true" />
と::
<system.web.extensions> <scripting> <webServices> <authenticationService enabled="true" requireSSL = "false"/> </webServices> </scripting> </system.web.extensions>
と:
私は私の.configファイルで[AspNetCompatibilityRequirements(RequirementsMode = AspNetCompatibilityRequirementsMode.Required)]
を
<authentication mode="Forms" />私のサービスのための "ログイン" 方法では
、私が持っている:
FormsAuthentication.SetAuthCookie(request.UserName, false);
しかし、私がチェックしたとき:
HttpContext.Current.User.Identity.Name
それは空の文字列です。私は何が欠けていますか?