无法找到Authentication_JSON_AppService.axd

时间:2013-12-27 18:38:56

标签: c# asp.net asp.net-mvc-4 forms-authentication authentication

我正在尝试构建一个桌面应用程序,该应用程序使用客户端应用程序服务通过ASP.Net MVC Web应用程序对用户进行身份验证。麻烦的是我似乎无法获得“身份验证服务位置”的值。这与我在浏览到http://localhost55555/Authentication_JSON_AppService.axd的默认URL时找不到Authentication_JSON_AppService.axd这一事实有关。

请有人帮我正确实施。

1 个答案:

答案 0 :(得分:0)

将此添加到您的web.config:

<system.web.extensions>
    <scripting>
      <webServices>
        <authenticationService enabled="true" requireSSL="false"/>
      </webServices>
    </scripting>
  </system.web.extensions>

另请检查您的web.config:

 <httpHandlers>
     ....
      <add verb="*" path="*_AppService.axd" validate=...
....