Adds RFC 7807 support to ASP.NET 4.x Web API applications. Note that this library supports ASP.NET 4.x; ASP.NET Core is not supported.
Add a reference to the IntelligentPlant.ProblemDetails.WebApi NuGet package.
An example self-hosted application can be found here.
To add support for all Web API controller actions via global action and exception filters on a System.Web.Http.HttpConfiguration
object, use the AddProblemDetails
extension method:
public void Configuration(IAppBuilder app) {
var config = new HttpConfiguration();
// Enable detailed exceptions to include error messages and stack traces in 500 responses.
//config.IncludeErrorDetailPolicy = IncludeErrorDetailPolicy.Always;
config.AddProblemDetails();
config.MapHttpAttributeRoutes();
app.UseWebApi(config);
}
When using an OWIN application to host Web API, the OWIN application will return a 401 response in the authorization stage of the pipeline if access to a route is denied, and a 404 response if it cannot identify a matching route for a request, meaning that the Web API filters cannot return problem details for these requests. You can return problem details for 401 and 404 responses by adding a middleware directly to the OWIN pipeline using the UseProblemDetails
extension method:
public void Configuration(IAppBuilder app) {
// We only want to return a problem details response on API routes.
app.UseProblemDetails(new PathString("/api"));
var config = new HttpConfiguration();
// Enable detailed exceptions to include error messages and stack traces in 500 responses.
//config.IncludeErrorDetailPolicy = IncludeErrorDetailPolicy.Always;
config.AddProblemDetails();
config.MapHttpAttributeRoutes();
app.UseWebApi(config);
}
The IntelligentPlant.ProblemDetails.WebApi
namespace contains extension methods for the ApiController
type to allow direct creation of responses containing problem details objects in API controller methods, allowing you to return a problem details response that is appropriate for the exception that occurred. For example:
[HttpGet]
[Route("greet")]
public async Task Greet(string? name = null, CancellationToken cancellationToken = default) {
try {
var result = await ProcessGreeting(Request.GetOwinContext(), name, cancellationToken).ConfigureAwait(false);
return Ok(result);
}
catch (ArgumentException e) {
return this.CreateProblemDetailsResponse(statusCode: HttpStatusCode.BadRequest, detail: e.Message);
}
catch (System.Security.SecurityException e) {
return this.CreateProblemDetailsResponse(statusCode: HttpStatusCode.Forbidden, detail: e.Message);
}
catch (System.ComponentModel.DataAnnotations.ValidationException e) {
return this.CreateValidationProblemDetailsResponse(e);
}
catch (Exception e) {
return this.CreateServerErrorProblemDetailsResponse(e);
}
}
It is also possible to generate problem details responses from unhandled exceptions in the OWIN pipeline. To do this, you can assign a callback function to the ExceptionHandler
property on the ProblemDetailsMiddlewareOptions
class:
public void Configuration(IAppBuilder app) {
// We only want to return a problem details response on API routes.
app.UseProblemDetails(new ProblemDetailsMiddlewareOptions() {
IncludePaths = new [] {
new PathString("/api")
},
ExceptionHandler = ProblemDetailsErrorHandler
});
}
private static ProblemDetails? ProblemDetailsErrorHandler(IOwinContext context, Exception error, ProblemDetailsFactory factory) {
if (error is System.Security.SecurityException) {
return factory.CreateProblemDetails(context, 403);
}
// - handling for other exceptions here -
// Return null to rethrow the unhandled exception.
return null;
}
By default, Web API ensures that all unhandled exception in the Web API pipeline are handled using its IExceptionHandler
service. However, you may wish to handle Web API exceptions directly in the OWIN pipeline, so that all unhandled application errors pass through the same set of OWIN middleware prior to generating a problem details response for an API call.
You can disable Web API exception handling completely when registering the Web API problem details configuration with the Web API configuration:
public void Configuration(IAppBuilder app) {
// We only want to return a problem details response on API routes.
app.UseProblemDetails(new ProblemDetailsMiddlewareOptions() {
IncludePaths = new [] {
new PathString("/api")
},
ExceptionHandler = ProblemDetailsErrorHandler
});
var config = new HttpConfiguration();
config.AddProblemDetails(handleExceptions: false);
config.MapHttpAttributeRoutes();
app.UseWebApi(config);
}
private static ProblemDetails? ProblemDetailsErrorHandler(IOwinContext context, Exception error, ProblemDetailsFactory factory) {
if (error is System.Security.SecurityException) {
return factory.CreateProblemDetails(context, 403);
}
// - handling for other exceptions here -
// Return null to rethrow the unhandled exception.
return null;
}