ASP.NET Web API2 - 突然不会显示页面

时间:2014-12-10 20:20:26

标签: asp.net-web-api

突然,我的应用程序不会显示页面,现在我得到了#34;您无权查看此目录或页面。" I looked at this但是那里的建议没有帮助。

代码:

[ServiceContract]
[AspNetCompatibilityRequirements(RequirementsMode = AspNetCompatibilityRequirementsMode.Allowed)]
[ServiceBehavior(InstanceContextMode = InstanceContextMode.PerCall)]
// NOTE: If this class is renamed, remember to update the global.asax.cs file
public class Service
{
    [WebGet(UriTemplate = "")]
    public string GetTest()
    {
        return "Windward update REST service running.";
    }
}

当我请求aspx页面时,它可以正常工作。

Global.asx.cs:

public class Global : HttpApplication
{
    private static readonly ILog log = LogManager.GetLogger(typeof(Global));

    void Application_Start(object sender, EventArgs e)
    {
        RegisterRoutes();

        log4net.Config.XmlConfigurator.Configure();
        log.Info(string.Format("Update REST server started, running under user {0}", WindowsIdentity.GetCurrent().Name));
    }

    private void RegisterRoutes()
    {
        // The class providing the REST service
        RouteTable.Routes.Add(new ServiceRoute("Service", new WebServiceHostFactory(), typeof(Service)));
    }

web.config(相关部分):

  <system.web>
    <compilation debug="true" targetFramework="4.5"/>
    <pages controlRenderingCompatibilityVersion="4.0"/>
  </system.web>
  <system.webServer>
    <modules runAllManagedModulesForAllRequests="true">
      <add name="UrlRoutingModule" type="System.Web.Routing.UrlRoutingModule, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>
    </modules>
  </system.webServer>
  <system.serviceModel>
    <serviceHostingEnvironment aspNetCompatibilityEnabled="true"/>
    <standardEndpoints>
      <webHttpEndpoint>
        <!-- 
            Configure the WCF REST service base address via the global.asax.cs file and the default endpoint 
            via the attributes on the <standardEndpoint> element below
        -->
        <standardEndpoint name="" helpEnabled="true" automaticFormatSelectionEnabled="true"/>
      </webHttpEndpoint>
    </standardEndpoints>
  </system.serviceModel>

没有任何实质性改变。那么为什么请求不再调用服务呢?

谢谢 - 戴夫

0 个答案:

没有答案