12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- using Microsoft.AspNetCore.Builder;
- using Microsoft.AspNetCore.Hosting;
- using Microsoft.AspNetCore.HttpsPolicy;
- using Microsoft.AspNetCore.Mvc;
- using Microsoft.Extensions.Configuration;
- using Microsoft.Extensions.DependencyInjection;
- using Microsoft.Extensions.Hosting;
- using Microsoft.Extensions.Logging;
- using Newtonsoft.Json;
- using Newtonsoft.Json.Serialization;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Net;
- using System.Threading.Tasks;
- using XYY.Authentication.Standard;
- using XYY.Core.Standard.ApiClient;
- using XYY.Core.Standard.Data.Infrastructure;
- using XYY.Data.Standard.Tasks;
- using XYY.Service.Standard.RegionService;
- using XYY.TaskTrack.Standard;
- namespace XYY.Api.Order
- {
- public class Startup
- {
- public Startup(IConfiguration configuration)
- {
- Configuration = configuration;
- }
- public IConfiguration Configuration { get; }
- readonly string MyAllowSpecificOrigins = "_myAllowSpecificOrigins";//Ãû×ÖËæ±ãÆð
- // This method gets called by the runtime. Use this method to add services to the container.
- public void ConfigureServices(IServiceCollection services)
- {
- services.AddXYYService(new ServiceOption
- {
- USEDBTransferAsMVC = true,
- CacheType = DistributedCacheType.Memory,
- SqlServiceConnection = Configuration[DefaultConfig.SqlServiceConnectionKey],
- UseRabbit = true,
- //UseFiddler=true,
- }, Configuration);
- services.ConfigAspectCore("BoxService");
- services.AddCors(option => option.AddPolicy(MyAllowSpecificOrigins, policy =>
- policy.AllowAnyHeader().AllowAnyOrigin().WithMethods("GET", "POST", "HEAD", "PUT", "DELETE", "OPTIONS")));
- services.AddControllers().AddNewtonsoftJson(options =>
- {
- options.SerializerSettings.ReferenceLoopHandling = ReferenceLoopHandling.Ignore;
- options.SerializerSettings.NullValueHandling = NullValueHandling.Ignore;
- options.SerializerSettings.ContractResolver = new DefaultContractResolver();
- });
- services.AddAuthentication(BasicAuthenticationScheme.DefaultScheme)
- .AddScheme<BasicAuthenticationOption, BasicAuthenticationHandler>(BasicAuthenticationScheme.DefaultScheme, null
- );
- //ºöÂÔÖ¤Êé´íÎó
- ServicePointManager.ServerCertificateValidationCallback += (sender, certificate, chain, errors) =>
- {
- // local dev, just approve all certs
- return true;
- };
- }
- // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
- public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
- {
- if (env.IsDevelopment())
- {
- app.UseDeveloperExceptionPage();
- }
- app.UseStatusCodePages();
- app.UseRouting();
- app.UseCors(MyAllowSpecificOrigins);
- app.UseBasicAuthentication();
- app.UseAuthentication();
- app.UseAuthorization();
- app.UseWebSockets();
- app.UseEndpoints(endpoints =>
- {
- endpoints.MapControllers();
- });
- }
- }
- }
|