0

I'm getting,"Multiple controller types were found that match the URL", Error while performing postman operation for the below API Calls.

Can someone help me figuring out the attribute mapping for the same. What I think is resolver considering the "respond" as the name of the Book.

Thanks In Advance

Code Snippet :

public class BookApiController : ApiController
{
  [HttpGet]
  [Route("api/v1/books/{bookName}")]
  public async Task<HttpResponseMessage> Get(string bookName){
    /* Code Here */
  }
}

public class ProcessApiController : ApiController
{
  [HttpGet]
  [Route("api/v1/books/respond")]
  public async Task<IHttpActionResult> Respond(string values){
    /* Code Here */
  }
}
Sridhar
  • 473
  • 3
  • 15
  • 2
    Your assumption is correct. you have a route conflict because the *respond* is being seen as a *book name*. Normally one would use route constraints to differentiate the routes. – Nkosi Oct 09 '18 at 09:51
  • Just out of interest, does it resolve correctly if you put both methods in the same controller? – Craig H Oct 09 '18 at 15:19
  • @craig yes. It did resolve – Sridhar Oct 10 '18 at 01:22

0 Answers0