Git Product home page Git Product logo

Comments (4)

commonsensesoftware avatar commonsensesoftware commented on May 24, 2024

This looks like a possible false positive. In the new POST action, it is returning the location header that is generated by using the route template with the key notAGet and the values new { id = 43 }. Since the route template defined by [HttpPost("notAGet")] does not have an {id} template parameter, I would expect some type of failure.

To test the theory, I added and modified your example as:

[HttpPost("notAGet")]
public IActionResult NotAGet() => CreatedAtRoute("GetMessageById", new { id = 43 }, null );

The request looks like:

POST /api/v1/helloworld/notAGet HTTP/1.1
Host: localhost

The operation succeeds with the response:

HTTP/1.1 201 Created
api-supported-versions: 1.0
Location: http://localhost/api/v1/HelloWorld/43

In addition, the 500 response that I received clearly indicated that one or more of the route values were not present in the template. Maybe that information is only disclosed during debugging. Let me know if this is not the behavior you are expecting.

from aspnet-api-versioning.

BillDines avatar BillDines commented on May 24, 2024

@commonsensesoftware - sorry, my example is probably a bit confusing, so I'll strip it down to the simplest case. Take this controller

[ApiVersion("1.0")]
[Route("api/v{version:apiVersion}/[controller]")]
public class HelloWorldController : Controller
{
[HttpPost("notAGet")]
public IActionResult NotAGet() => Ok();
}

if you issue a GET request as follows:
GET /api/v1/helloworld/notAGet HTTP/1.1
Host: localhost

You get an unhandled ArgumentNullException from the ApiVersioning middleware. It throws at line 26 of Microsoft.AspNetCore.Mvc.Versioning.ActionSelectionContext.cs. This will end up being an Http 500 response.

I think you should get an Http 404 in this instance because there is no matching route for the GET request. At least that is what happens if you do the same thing to a controller in a project without any Api versioning e.g.

[Route("api/[controller]")]
public class HelloWorldController : Controller
{
  [HttpPost("notAGet")]
  public IActionResult NotAGet() => Ok();

}

GET /api/helloworld/notAGet HTTP/1.1
Host: localhost

Gives a 404...

Hope that makes sense...

from aspnet-api-versioning.

commonsensesoftware avatar commonsensesoftware commented on May 24, 2024

I see. Yes, this is a bug. The original implementation of the ActionSelector class returns null when no actions are satisfied and I didn't account for that. I've tracked down the issue and will have a published fix in soon. Thanks for reporting this.

from aspnet-api-versioning.

BillDines avatar BillDines commented on May 24, 2024

No problem. Thanks for fixing!

from aspnet-api-versioning.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.