【问题标题】:c# web api can't call from webc# web api不能从web调用
【发布时间】:2016-10-10 16:03:14
【问题描述】:

我有一个带有一些模型控制器web api解决方案。

这是我的模型示例:

public class Category
{
    [Key]
    public int Id { get; set; }
    [Required]
    public string Name { get; set; }
}

这是他的控制者

public class CategoriesController : ApiController
{
    private FrigoWebServiceContext db = new FrigoWebServiceContext();

    // GET: api/Categories
    [HttpGet]
    public string GetCategories()
    {
        return JsonConvert.SerializeObject(db.Categories.ToList());
    }

    // GET: api/Categories/5
    [ResponseType(typeof(string))]
    public string GetCategory(int id)
    {
        Category category = db.Categories.Find(id);
        if (category == null)
        {
            return null;
        }

        string jsonCategory = JsonConvert.SerializeObject(category);
        return jsonCategory;
    }

    protected override void Dispose(bool disposing)
    {
        if (disposing)
        {
            db.Dispose();
        }
        base.Dispose(disposing);
    }

    private bool CategoryExists(int id)
    {
        return db.Categories.Count(e => e.Id == id) > 0;
    }
}

现在,这是配置

        config.Routes.MapHttpRoute(
            name: "GetId",
            routeTemplate: "api/{controller}/{id}"
            //defaults: new { id = RouteParameter.Optional }
        );
        config.Routes.MapHttpRoute(
            name: "GetAll",
            routeTemplate: "api/{controller}"
            //defaults: new { id = RouteParameter.Optional }
        );

但是调用以下网站我什么也没收到

注意:我使用 IIS 发布了带有“myAppName”路径名的 api

但这些都没有工作

这是错误

错误 HTTP 404.0 - 未找到所需资源已被删除, 重命名或暂时不可用

我从互联网上看到了一些问题,我尝试使用它们,但我无法弄清楚为什么这不起作用。

任何帮助将不胜感激,这是我第一次使用 WebApi

这是我的 Web.Config

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <configSections>
    <section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
  </configSections>
  <connectionStrings>
    <add name="FrigoWebServiceContext" connectionString= [***] />
  </connectionStrings>
  <appSettings></appSettings>
  <system.web>
    <compilation debug="true" targetFramework="4.5" />
    <httpRuntime targetFramework="4.5" />
    <httpModules>
      <add name="ApplicationInsightsWebTracking" type="Microsoft.ApplicationInsights.Web.ApplicationInsightsHttpModule, Microsoft.AI.Web" />
    </httpModules>
  </system.web>
  <system.webServer>
    <handlers>
      <remove name="ExtensionlessUrlHandler-Integrated-4.0" />
      <remove name="OPTIONSVerbHandler" />
      <remove name="TRACEVerbHandler" />
      <add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="*" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0" />
    </handlers>
    <validation validateIntegratedModeConfiguration="false" />
    <modules>
      <remove name="ApplicationInsightsWebTracking" />
      <add name="ApplicationInsightsWebTracking" type="Microsoft.ApplicationInsights.Web.ApplicationInsightsHttpModule, Microsoft.AI.Web" preCondition="managedHandler" />
    </modules>
  </system.webServer>
  <runtime>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35" />
        <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
        <bindingRedirect oldVersion="1.0.0.0-5.2.3.0" newVersion="5.2.3.0" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35" />
        <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-9.0.0.0" newVersion="9.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
  </runtime>
  <system.codedom>
    <compilers>
      <compiler language="c#;cs;csharp" extension=".cs" type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.CSharpCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" warningLevel="4" compilerOptions="/langversion:6 /nowarn:1659;1699;1701" />
      <compiler language="vb;vbs;visualbasic;vbscript" extension=".vb" type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.VBCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" warningLevel="4" compilerOptions="/langversion:14 /nowarn:41008 /define:_MYTYPE=\&quot;Web\&quot; /optionInfer+" />
    </compilers>
  </system.codedom>
  <entityFramework>
    <defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework" />
    <providers>
      <provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
    </providers>
  </entityFramework>
</configuration>

【问题讨论】:

  • /Api/Categories/
  • @AntP 感谢回复,但还是不行
  • 我认为问题出在发布的代码之外
  • 您确定 IIS 配置正确吗?
  • 您的应用程序可以在本地机器上运行吗?

标签: c# asp.net-web-api asp.net-web-api2 asp.net-web-api-routing


【解决方案1】:

如果您没有使用 Route attribute 指定/覆盖方法名称并且您没有在路由中指定默认方法名称,则 Web API 使用默认操作动词 GetPostPutDelete 作为方法名称。这意味着您必须像这样更改您的方法:

只看到方法名称的变化,不要注意返回类型,这是我对您的示例代码的另一个抱怨。您应该让 Web API 框架使用配置的序列化程序,而不是返回字符串,而是默认返回 IHttpActionResult。为什么和如何超出了这个问题的范围,但我不会通过将字符串作为方法签名上的返回类型来延续这种不好的做法。

public class CategoriesController : ApiController
{
  [HttpGet]
  public IHttpActionResult Get()

  // or to pass in an an int and return only 1 category
  [HttpGet]
  public IHttpActionResult Get(int id)

现在允许你像这样调用你的 api

  • /Api/Categories/
  • /Api/Categories/128使用第二种方法

如果您想使用这 4 个以外的方法名称(get/put/post/delete),那么您可以在 WebApiConfig.cs 中更改您的路由或使用 Route attribute

对于 WebApiConfig.cs 仅更改您可以这样做:

config.Routes.MapHttpRoute(
    name: "Get",
    routeTemplate: "api/{controller}/{action}/{id}"
    defaults: new { id = RouteParameter.Optional }
);

现在允许你像这样调用你的 api

  • /Api/Categories/GetCategories/
  • /Api/Categories/GetCategory/1234

如果你想使用Route attribute,你可以这样做:

[RoutePrefix("api/categories"]
public class CategoriesController : ApiController
{
  [HttpGet]
  [Route("")]
  public IHttpActionResult GetCategories()

  [HttpGet]
  [Route("{id:int}")]
  public IHttpActionResult GetCategory(int id)

现在允许你像这样调用你的 api

  • /Api/Categories/
  • /Api/Categories/128 使用第二种方法

编辑

根据下面的 cmets... 另请参阅 HTTP 404 Page Not Found in Web Api hosted in IIS 7.5。将UrlRoutingModule 添加到web.config 解决了这个问题,因为它是由路由配置和路由配置引起的..

【讨论】:

  • 感谢这个深入且描述良好的解决方案,但我不知道为什么我仍然遇到同样的错误。我还按照您的建议修复了退货。我不知道最佳实践是使用 IHttpActionResult 但现在我正在使用它。我开始认为问题可能出在我的 IIS 或我的配置中。我正在发布我在问题中使用的 web.config。如果可能的话,你能看看吗?也非常感谢您的建议
  • 注意:我刚刚尝试过,根据您的建议,它可以在我的本地机器上运行,但仍然无法在我的服务器上运行。可能是web.config引起的?
  • 好的,我从this SO answer 得知。它对我有用,如果您将其添加到您的问题中,我会将其标记为答案,因为您和他都解决了我的问题。再次感谢
  • @PierGiorgioMisley - 很好,我很高兴你能成功。我编辑了我的答案。
  • @PierGiorgioMisley - 使用IHttpActionResult 允许返回 Http 状态代码(带有或不带有序列化数据),这可以更轻松地帮助您根据各种条件返回错误(例如未经身份验证或错误的数据模型发送到方法等)。很酷,你切换了,祝你好运!
猜你喜欢
  • 2015-03-24
  • 2019-06-14
  • 1970-01-01
  • 1970-01-01
  • 2016-12-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
相关资源
最近更新 更多