Beispiel #1
0
        protected void Application_Start()
        {
            GlobalConfiguration.Configure(WebApiConfig.Register);
#if DEBUG
            GlobalConfiguration.Configure(config => SwaggerConfig.Register(config, "~/bin/ArtifactStore.XML", "ArtifactStore"));
#endif
            HttpsSecurity.Configure();
        }
Beispiel #2
0
        protected void Application_Start()
        {
            GlobalConfiguration.Configure(WebApiConfig.Register);
#if DEBUG
            GlobalConfiguration.Configure(config => SwaggerConfig.Register(config, "~/bin/AdminStore.XML", "AdminStore",
                                                                           "AdminStore is Web Service to facilitate application and project administration functionality, user authentication and authorization."));
#endif
            HttpsSecurity.Configure();
        }
Beispiel #3
0
        protected void Application_Start()
        {
            GlobalConfiguration.Configure(WebApiConfig.Register);
#if DEBUG
            GlobalConfiguration.Configure(config => SwaggerConfig.Register(config, "~/bin/FileStore.XML", "FileStore",
                                                                           "FileStore is Web Service to persist and provide files attached to artifacts or any other kind of user files in Blueprint Web Application."));
#endif
            HttpsSecurity.Configure();
        }
Beispiel #4
0
        protected void Application_Start()
        {
            GlobalConfiguration.Configure(WebApiConfig.Register);
#if DEBUG
            GlobalConfiguration.Configure(config => SwaggerConfig.Register(config, "~/bin/SearchService.XML", "SearchService",
                                                                           "SearchService is Web Service to perform searchs in Blueprint Web Application."));
#endif
            HttpsSecurity.Configure();
        }
 private ActionHandlerService()
 {
     // Enable TLS 1.1/1.2
     HttpsSecurity.Configure();
 }