36 lines
1.2 KiB
C#
36 lines
1.2 KiB
C#
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);
|
|
}
|
|
}
|
|
}
|