first commit
This commit is contained in:
35
F4SDwebService/App_Start/WebApiConfig.cs
Normal file
35
F4SDwebService/App_Start/WebApiConfig.cs
Normal file
@@ -0,0 +1,35 @@
|
||||
using F4SDwebService.ActionFilters;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Web.Http;
|
||||
|
||||
namespace F4SDwebService
|
||||
{
|
||||
public static class WebApiConfig
|
||||
{
|
||||
public static cAuthentication authenticationHandler = new cAuthentication();
|
||||
|
||||
public static void Register(HttpConfiguration config)
|
||||
{
|
||||
// Web API configuration and services
|
||||
config.MessageHandlers.Add(authenticationHandler);
|
||||
|
||||
config.Filters.Add(new CheckLicenceFilter());
|
||||
config.Filters.Add(new CheckCollectorFilter());
|
||||
|
||||
// Web API routes
|
||||
config.MapHttpAttributeRoutes();
|
||||
|
||||
config.Routes.MapHttpRoute(
|
||||
name: "DefaultApi",
|
||||
routeTemplate: "api/{controller}/{id}",
|
||||
defaults: new { id = RouteParameter.Optional }
|
||||
);
|
||||
|
||||
var appXmlType = config.Formatters.XmlFormatter.SupportedMediaTypes.FirstOrDefault(t => t.MediaType == "application/xml");
|
||||
if (appXmlType != null)
|
||||
config.Formatters.XmlFormatter.SupportedMediaTypes.Remove(appXmlType);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user