IIS で使用している Silverlight ビジネス アプリケーションを使用しています。
以外のすべての種類の認証を無効にしましWindows Authentication
た。
web.config ファイルでは、認証は次のように設定されています -
<authentication mode="Windows">
<forms name=".FrontEnd_ASPXAUTH" timeout="2880" />
</authentication>
また、私が設定した App.xaml.cs で -
WebContext webContext = new WebContext();
webContext.Authentication = new WindowsAuthentication();
this.ApplicationLifetimeObjects.Add(webContext);
これは、Windows 認証が設定されているため、アプリがマシン上の Windows ユーザー アカウントに対して認証されていることを意味すると考えました。
ただし、アプリケーションを起動すると、まだログイン フォームが表示されます。ログイン フォームなしで Windows ログインに基づいて、アプリケーションをロードする方法はありますか?