123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326 |
- using EVCB_OCPP.Packet.Features;
- using EVCB_OCPP.Packet.Messages;
- using EVCB_OCPP.Packet.Messages.Basic;
- using EVCB_OCPP.Packet.Messages.Core;
- using EVCB_OCPP.WSServer.Dto;
- using EVCB_OCPP.WSServer.Helper;
- using EVCB_OCPP.WSServer.Message;
- using EVCB_OCPP.WSServer.Service;
- using Microsoft.Extensions.Hosting;
- using Newtonsoft.Json;
- using System.Data;
- using System.Diagnostics;
- using System.Xml.Linq;
- using NLog;
- using Microsoft.Extensions.Configuration;
- using System.Collections.Concurrent;
- using Microsoft.Extensions.Logging;
- using System.Net.WebSockets;
- using System.Net;
- using System.Text;
- using EVCB_OCPP.WSServer.Service.WsService;
- namespace EVCB_OCPP.WSServer
- {
- public class DestroyRequest : IRequest
- {
- public string Action { get; set; }
- public bool TransactionRelated()
- {
- return false;
- }
- public bool Validate()
- {
- return true;
- }
- }
- public class ProtalServer : IHostedService
- {
- //static private ILogger logger = NLog.LogManager.GetCurrentClassLogger();
- public ProtalServer(
- ILogger<ProtalServer> logger
- , IConfiguration configuration
- , IMainDbService mainDbService
- , IConnectionLogdbService connectionLogdbService
- , LoadingBalanceService loadingBalanceService
- , ServerMessageService serverMessageService
- , WebDbService webDbService
- , ProfileHandler profileHandler
- , WebsocketService<WsClientData> websocketService
- , OuterHttpClient httpClient)
- {
- this.logger = logger;
- this.configuration = configuration;
- this.mainDbService = mainDbService;
- this.connectionLogdbService = connectionLogdbService;
- this.webDbService = webDbService;
- this.httpClient = httpClient;
- isInDocker = !string.IsNullOrEmpty(configuration["DOTNET_RUNNING_IN_CONTAINER"]);
- this.profileHandler = profileHandler;// new ProfileHandler(configuration, serviceProvider);
- this.websocketService = websocketService;
- this._loadingBalanceService = loadingBalanceService;// new LoadingBalanceService(mainDbConnectionFactory, webDbConnectionFactory);
- this.messageService = serverMessageService;
- WarmUpLog();
- }
- #region private fields
- private OuterHttpClient httpClient;
- private DateTime lastcheckdt = DateTime.UtcNow.AddSeconds(-20);
- private ConcurrentDictionary<string, WsClientData> clientDic = new ConcurrentDictionary<string, WsClientData>();
- //private readonly Object _lockClientDic = new object();
- private readonly Object _lockConfirmPacketList = new object();
- private readonly ILogger<ProtalServer> logger;
- private readonly IConfiguration configuration;
- private readonly IMainDbService mainDbService;
- private readonly IConnectionLogdbService connectionLogdbService;
- private readonly WebDbService webDbService;
- private readonly ProfileHandler profileHandler;
- private readonly WebsocketService<WsClientData> websocketService;
- private readonly bool isInDocker;
- private List<NeedConfirmMessage> needConfirmPacketList = new List<NeedConfirmMessage>();
- private DateTime checkUpdateDt = DateTime.UtcNow;
- private DateTime _CheckFeeDt = DateTime.UtcNow;
- private DateTime _CheckLBDt = DateTime.UtcNow;
- private DateTime _CheckDenyListDt = DateTime.UtcNow.AddDays(-1);
- private readonly LoadingBalanceService _loadingBalanceService;// = new LoadingBalanceService();
- private readonly ServerMessageService messageService;
- private List<StationInfoDto> _StationInfo = new List<StationInfoDto>();
- private readonly List<string> needConfirmActions = new List<string>()
- {
- "GetConfiguration",
- "ChangeConfiguration",
- "RemoteStartTransaction",
- "RemoteStopTransaction",
- "ChangeAvailability",
- "ClearCache",
- "DataTransfer",
- "Reset",
- "UnlockConnector",
- "TriggerMessage",
- "GetDiagnostics",
- "UpdateFirmware",
- "GetLocalListVersion",
- "SendLocalList",
- "SetChargingProfile",
- "ClearChargingProfile",
- "GetCompositeSchedule",
- "ReserveNow",
- "CancelReservation",
- "ExtendedTriggerMessage"
- };
- private readonly List<Profile> profiles = new List<Profile>()
- {
- new CoreProfile(),
- new FirmwareManagementProfile(),
- new ReservationProfile(),
- new RemoteTriggerProfile(),
- new SmartChargingProfile(),
- new LocalAuthListManagementProfile(),
- new SecurityProfile(),
- };
- #endregion
- //private OCPPWSServer appServer;
- //private WebApplication appApi;
- //private WebApplication yarpApp;
- internal Dictionary<string, WsClientData> GetClientDic()
- {
- Dictionary<string, WsClientData> toReturn = null;
- toReturn = new Dictionary<string, WsClientData>(clientDic);
- return toReturn;
- }
- internal List<NeedConfirmMessage> GetResendMessage()
- {
- List<NeedConfirmMessage> sendMessages = new List<NeedConfirmMessage>();
- lock (_lockConfirmPacketList)
- {
- sendMessages = needConfirmPacketList.Where(x => x.SentTimes > 1 && x.CreatedBy == "Server").ToList();
- }
- return sendMessages;
- }
- internal IReadOnlyList<Profile> Profiles => profiles.AsReadOnly();
- internal LoadingBalanceService LoadingBalanceService => _loadingBalanceService;
- internal ProfileHandler ProfileHandler => profileHandler;
- public async Task StartAsync(CancellationToken cancellationToken)
- {
- GlobalConfig.DenyModelNames = await webDbService.GetDenyModelNames();
- Start();
- return;
- }
- public Task StopAsync(CancellationToken cancellationToken)
- {
- Stop();
- return Task.CompletedTask;
- }
- internal void UpdateClientDisplayPrice(string key,string price)
- {
- clientDic[key].DisplayPrice = price;
- }
- internal void SendMsg(WsClientData session, string msg, string messageType, string errorMsg = "")
- {
- Send(session,msg,messageType,errorMsg);
- }
- internal void Start()
- {
- logger.LogTrace("Starting Server...");
- if (!GlobalConfig.LoadAPPConfig(configuration))
- {
- logger.LogError("Please check App.Config setting .");
- return;
- }
-
- StartWsService();
- if (!isInDocker)
- {
- Task consoleReadTask = new Task(RunConsoleInteractive);
- consoleReadTask.Start();
- //RunConsoleInteractive();
- return;
- }
- return;
- }
- private void RunConsoleInteractive()
- {
- while (true)
- {
- if (Console.In is null)
- {
- break;
- }
- var input = Console.ReadLine();
- switch (input.ToLower())
- {
- case "stop":
- Console.WriteLine("Command stop");
- Stop();
- break;
- case "gc":
- Console.WriteLine("Command GC");
- GC.Collect();
- break;
- case "lc":
- {
- Console.WriteLine("Command List Clients");
- Dictionary<string, WsClientData> _copyClientDic = null;
- _copyClientDic = new Dictionary<string, WsClientData>(clientDic);
- var list = _copyClientDic.Select(c => c.Value).ToList();
- int i = 1;
- foreach (var c in list)
- {
- Console.WriteLine(i + ":" + c.ChargeBoxId + " " + c.SessionID);
- i++;
- }
- }
- break;
- case "lcn":
- {
- Console.WriteLine("Command List Customer Name");
- Dictionary<string, WsClientData> _copyClientDic = null;
- _copyClientDic = new Dictionary<string, WsClientData>(clientDic);
- var lcn = clientDic.Select(c => c.Value.CustomerName).Distinct().ToList();
- int iLcn = 1;
- foreach (var c in lcn)
- {
- Console.WriteLine(iLcn + ":" + c + ":" + clientDic.Where(z => z.Value.CustomerName == c).Count().ToString());
- iLcn++;
- }
- }
- break;
- case "help":
- Console.WriteLine("Command help!!");
- Console.WriteLine("lcn : List Customer Name");
- Console.WriteLine("gc : GC Collect");
- Console.WriteLine("lc : List Clients");
- Console.WriteLine("cls : clear console");
- Console.WriteLine("silent : silent");
- Console.WriteLine("show : show log");
- // logger.Info("rcl : show Real Connection Limit");
- break;
- case "cls":
- Console.WriteLine("Command clear");
- Console.Clear();
- break;
- case "silent":
- Console.WriteLine("Command silent");
- //var xe = XElement.Load("NLog.config");
- //var xns = xe.GetDefaultNamespace();
- //var minlevelattr = xe.Descendants(xns + "rules").Elements(xns + "logger")
- // .Where(c => c.Attribute("writeTo").Value.Equals("console")).Attributes("minlevel").FirstOrDefault();
- //if (minlevelattr != null)
- //{
- // minlevelattr.Value = "Warn";
- //}
- //xe.Save("NLog.config");
- foreach (var rule in LogManager.Configuration.LoggingRules)
- {
- if (rule.RuleName != "ConsoleLog")
- {
- continue;
- }
- var isTargetRule = rule.Targets.Any(x => x.Name.ToLower() == "console");
- if (isTargetRule)
- {
- rule.SetLoggingLevels(NLog.LogLevel.Warn, NLog.LogLevel.Off);
- }
- }
- break;
- case "show":
- Console.WriteLine("Command show");
- //var xe1 = XElement.Load("NLog.config");
- //var xns1 = xe1.GetDefaultNamespace();
- //var minlevelattr1 = xe1.Descendants(xns1 + "rules").Elements(xns1 + "logger")
- // .Where(c => c.Attribute("writeTo").Value.Equals("console")).Attributes("minlevel").FirstOrDefault();
- //if (minlevelattr1 != null)
- //{
- // minlevelattr1.Value = "trace";
- //}
- //xe1.Save("NLog.config");
- foreach (var rule in LogManager.Configuration.LoggingRules)
- {
- if (rule.RuleName != "ConsoleLog")
- {
- continue;
- }
- var isTargetRule = rule.Targets.Any(x => x.Name.ToLower() == "console");
- if (isTargetRule)
- {
- rule.SetLoggingLevels(NLog.LogLevel.Trace, NLog.LogLevel.Off);
- }
- }
- break;
- case "rcl":
- break;
- default:
- break;
- }
- }
- }
- internal void Stop()
- {
- //appServer?.Stop();
- StopWsService();
- }
- private void StartWsService()
- {
- websocketService.ValidateHandshake = WebsocketServiceValidateHandshake;
- websocketService.NewSessionConnected += AppServer_NewSessionConnected;
- }
- private void StopWsService()
- {
- websocketService.ValidateHandshake = null;
- websocketService.NewSessionConnected -= AppServer_NewSessionConnected;
- }
- private async Task<bool> WebsocketServiceValidateHandshake(WsClientData session)
- {
- session.ISOCPP20 = session.SecWebSocketProtocol.ToLower().Contains("ocpp2.0");
- int securityProfile = 0;
- string authorizationKey = string.Empty;
- if (string.IsNullOrEmpty(session.Path))
- {
- //logger.Log();
- logger.LogWarning("===========================================");
- logger.LogWarning("session.Path EMPTY");
- logger.LogWarning("===========================================");
- }
- string[] words = session.Path.ToString().Split('/');
- session.ChargeBoxId = words.Last();
- foreach (var denyModel in GlobalConfig.DenyModelNames)
- {
- if (string.IsNullOrEmpty(denyModel))
- {
- continue;
- }
- if (session.ChargeBoxId.StartsWith(denyModel))
- {
- StringBuilder responseBuilder = new StringBuilder();
- responseBuilder.AppendFormatWithCrCf(@"HTTP/{0} {1} {2}", "1.1",
- (int)HttpStatusCode.Unauthorized, @"Unauthorized");
- responseBuilder.AppendWithCrCf();
- string sb = responseBuilder.ToString();
- byte[] data = Encoding.UTF8.GetBytes(sb);
- session.SendRawData(data, 0, data.Length);
- logger.LogTrace(sb);
- return false;
- }
- }
- if (configuration["MaintainMode"] == "1")
- {
- session.ChargeBoxId = session.ChargeBoxId + "_2";
- }
- logger.LogInformation(string.Format("ValidateHandshake: {0}", session.Path));
- bool isExistedSN = false;
- bool authorizated = false;
- var info = mainDbService.GetMachineIdAndCustomerInfo(session.ChargeBoxId).Result;
- //var machine = db.Machine.Where(x => x.ChargeBoxId == session.ChargeBoxId && x.IsDelete == false).Select(x => new { x.CustomerId, x.Id }).AsNoTracking().FirstOrDefault();
- //session.CustomerName = machine == null ? "Unknown" : db.Customer.Where(x => x.Id == machine.CustomerId).Select(x => x.Name).FirstOrDefault();
- //session.CustomerId = machine == null ? Guid.Empty : machine.CustomerId;
- //session.MachineId = machine == null ? String.Empty : machine.Id;
- //isExistedSN = machine == null ? false : true;
- session.CustomerName = info.CustomerName;
- session.CustomerId = info.CustomerId;
- session.MachineId = info.MachineId;
- isExistedSN = !string.IsNullOrEmpty(info.MachineId);// machine == null ? false : true;
- if (!isExistedSN)
- {
- StringBuilder responseBuilder = new StringBuilder();
- responseBuilder.AppendFormatWithCrCf(@"HTTP/{0} {1} {2}", "1.1",
- (int)HttpStatusCode.NotFound, @"Not Found");
- responseBuilder.AppendWithCrCf();
- string sb = responseBuilder.ToString();
- byte[] data = Encoding.UTF8.GetBytes(sb);
- session.SendRawData(data, 0, data.Length);
- logger.LogInformation(sb);
- return false;
- }
- //var configVaule = db.MachineConfigurations.Where(x => x.ChargeBoxId == session.ChargeBoxId && x.ConfigureName == StandardConfiguration.SecurityProfile)
- // .Select(x => x.ConfigureSetting).FirstOrDefault();
- var configVaule = mainDbService.GetMachineSecurityProfile(session.ChargeBoxId).Result;
- int.TryParse(configVaule, out securityProfile);
- if (session.ISOCPP20)
- {
- // 1.6 server only support change server function
- securityProfile = 0;
- }
- if (securityProfile == 3 && session.UriScheme == "ws")
- {
- StringBuilder responseBuilder = new StringBuilder();
- responseBuilder.AppendFormatWithCrCf(@"HTTP/{0} {1} {2}", "1.1",
- (int)HttpStatusCode.Unauthorized, @"Unauthorized");
- responseBuilder.AppendWithCrCf();
- string sb = responseBuilder.ToString();
- byte[] data = Encoding.UTF8.GetBytes(sb);
- session.SendRawData(data, 0, data.Length);
- logger.LogInformation(sb);
- return false;
- }
- if (securityProfile == 1 || securityProfile == 2)
- {
- if (securityProfile == 2 && session.UriScheme == "ws")
- {
- authorizated = false;
- }
- //if (session.Items.ContainsKey("Authorization") || session.Items.ContainsKey("authorization"))
- if (!string.IsNullOrEmpty(session.AuthHeader))
- {
- //authorizationKey = db.MachineConfigurations.Where(x => x.ChargeBoxId == session.ChargeBoxId && x.ConfigureName == StandardConfiguration.AuthorizationKey)
- // .Select(x => x.ConfigureSetting).FirstOrDefault();
- authorizationKey = await mainDbService.GetMachineAuthorizationKey(session.ChargeBoxId);
- if (session.ISOCPP20)
- {
- // 1.6 server only support change server function
- securityProfile = 0;
- }
- logger.LogInformation("***********Authorization ");
- if (!string.IsNullOrEmpty(authorizationKey))
- {
- //string base64Encoded = session.Items.ContainsKey("Authorization") ? session.Items["Authorization"].ToString().Replace("Basic ", "") : session.Items["authorization"].ToString().Replace("Basic ", "");
- string base64Encoded = session.AuthHeader.Replace("Basic ", "");
- byte[] data = Convert.FromBase64String(base64Encoded);
- string[] base64Decoded = Encoding.ASCII.GetString(data).Split(':');
- logger.LogInformation("***********Authorization " + Encoding.ASCII.GetString(data));
- if (base64Decoded.Count() == 2 && base64Decoded[0] == session.ChargeBoxId && base64Decoded[1] == authorizationKey)
- {
- authorizated = true;
- }
- }
- }
- else
- {
- authorizated = true;
- }
- if (!authorizated)
- {
- StringBuilder responseBuilder = new StringBuilder();
- responseBuilder.AppendFormatWithCrCf(@"HTTP/{0} {1} {2}", "1.1",
- (int)HttpStatusCode.Unauthorized, @"Unauthorized");
- responseBuilder.AppendWithCrCf();
- string sb = responseBuilder.ToString();
- byte[] data = Encoding.UTF8.GetBytes(sb);
- session.SendRawData(data, 0, data.Length);
- logger.LogInformation(sb);
- return false;
- }
- }
- logger.LogInformation(string.Format("ValidateHandshake PASS: {0}", session.Path));
- return true;
- }
- private async void AppServer_NewSessionConnected(object sender, WsClientData session)
- {
- logger.LogDebug(string.Format("{0} NewSessionConnected", session.Path));
- try
- {
- bool isNotSupported = session.SecWebSocketProtocol.Contains("ocpp1.6") ? false : session.SecWebSocketProtocol.Contains("ocpp2.0") ? false : true;
- if (isNotSupported)
- {
- //logger.LogDebug(string.Format("ChargeBoxId:{0} SecWebSocketProtocol:{1} NotSupported", session.ChargeBoxId, session.SecWebSocketProtocol));
- WriteMachineLog(session, string.Format("SecWebSocketProtocol:{0} NotSupported", session.SecWebSocketProtocol), "Connection", "");
- return;
- }
- TryRemoveDuplicatedSession(session);
- clientDic[session.ChargeBoxId] = session;
- session.SessionClosed += AppServer_SessionClosed;
- session.m_ReceiveData += ReceivedMessageTimeLimited;
- // logger.LogDebug("------------New " + (session == null ? "Oops" : session.ChargeBoxId));
- WriteMachineLog(session, "NewSessionConnected", "Connection", "");
- await mainDbService.UpdateMachineConnectionType(session.ChargeBoxId, session.Origin.Contains("https") ? 2 : 1);
- }
- catch (Exception ex)
- {
- logger.LogError(string.Format("NewSessionConnected Ex: {0}", ex.ToString()));
- }
- }
- private void AppServer_SessionClosed(object sender, CloseReason closeReason)
- {
- if (sender is not WsClientData session)
- {
- return;
- }
- session.SessionClosed -= AppServer_SessionClosed;
- session.m_ReceiveData -= ReceivedMessageTimeLimited;
- WriteMachineLog(session, string.Format("CloseReason: {0}", closeReason), "Connection", "");
- RemoveClient(session);
- }
- private void TryRemoveDuplicatedSession(WsClientData session)
- {
- if (clientDic.ContainsKey(session.ChargeBoxId))
- {
- var oldSession = clientDic[session.ChargeBoxId];
- WriteMachineLog(oldSession, "Duplicate Logins", "Connection", "");
- RemoveClient(oldSession);
- }
- }
- async private void ReceivedMessageTimeLimited(object sender , string rawdata)
- {
- if (sender is not WsClientData session)
- {
- return;
- }
- CancellationTokenSource tokenSource = new();
- var task = ReceivedMessage(session, rawdata);
- var completedTask = await Task.WhenAny(task, Task.Delay(90_000, tokenSource.Token));
- if (completedTask != task)
- {
- logger.LogCritical("Process timeout: {0} ", rawdata);
- await task;
- return;
- }
- tokenSource.Cancel();
- return;
- }
- async private Task ReceivedMessage(WsClientData session, string rawdata)
- {
- try
- {
- BasicMessageHandler msgAnalyser = new BasicMessageHandler();
- MessageResult analysisResult = msgAnalyser.AnalysisReceiveData(session, rawdata);
- WriteMachineLog(session, rawdata,
- string.Format("{0} {1}", string.IsNullOrEmpty(analysisResult.Action) ? "unknown" : analysisResult.Action, analysisResult.Id == 2 ? "Request" : (analysisResult.Id == 3 ? "Confirmation" : "Error")), analysisResult.Exception == null ? "" : analysisResult.Exception.Message);
- if (session.ResetSecurityProfile)
- {
- logger.LogError(string.Format("[{0}] ChargeBoxId:{1} ResetSecurityProfile", DateTime.UtcNow, session.ChargeBoxId));
- RemoveClient(session);
- return;
- }
- if (!analysisResult.Success)
- {
- //解析RawData就發生錯誤
- if (!string.IsNullOrEmpty(analysisResult.CallErrorMsg))
- {
- Send(session, analysisResult.CallErrorMsg, string.Format("{0} {1}", analysisResult.Action, "Error"));
- }
- else
- {
- if (analysisResult.Message == null)
- {
- string replyMsg = BasicMessageHandler.GenerateCallError(analysisResult.UUID, OCPPErrorCodes.InternalError, OCPPErrorDescription.InternalError);
- string errorMsg = string.Empty;
- if (analysisResult.Exception != null)
- {
- errorMsg = analysisResult.Exception.ToString();
- }
- Send(session, replyMsg, string.Format("{0} {1}", "unknown", "Error"), "EVSE's sent essage has parsed Failed. ");
- }
- else
- {
- BaseMessage _baseMsg = analysisResult.Message as BaseMessage;
- string replyMsg = BasicMessageHandler.GenerateCallError(_baseMsg.Id, OCPPErrorCodes.InternalError, OCPPErrorDescription.InternalError);
- string errorMsg = string.Empty;
- if (analysisResult.Exception != null)
- {
- errorMsg = analysisResult.Exception.ToString();
- }
- Send(session, replyMsg, string.Format("{0} {1}", analysisResult.Action, "Error"), errorMsg);
- }
- }
- }
- else
- {
- switch (analysisResult.Id)
- {
- case BasicMessageHandler.TYPENUMBER_CALL:
- {
- if (!session.ISOCPP20)
- {
- Actions action = Convertor.GetAction(analysisResult.Action);
- try
- {
- await ProcessRequestMessage(analysisResult, session, action);
- }
- catch (Exception e)
- {
- logger.LogError($"Processing {action} exception!");
- throw;
- }
- }
- else
- {
- EVCB_OCPP20.Packet.Features.Actions action = Convertor.GetActionby20(analysisResult.Action);
- MessageResult result = new MessageResult() { Success = true };
- //ocpp20 處理
- switch (action)
- {
- case EVCB_OCPP20.Packet.Features.Actions.BootNotification:
- {
- EVCB_OCPP20.Packet.Messages.BootNotificationRequest _request = (EVCB_OCPP20.Packet.Messages.IRequest)analysisResult.Message as EVCB_OCPP20.Packet.Messages.BootNotificationRequest;
- var confirm = new EVCB_OCPP20.Packet.Messages.BootNotificationResponse() { CurrentTime = DateTime.UtcNow, Interval = 180, Status = EVCB_OCPP20.Packet.DataTypes.EnumTypes.RegistrationStatusEnumType.Pending };
- result.Message = confirm;
- result.Success = true;
- string response = BasicMessageHandler.GenerateConfirmationofOCPP20(analysisResult.UUID, (EVCB_OCPP20.Packet.Messages.IConfirmation)result.Message);
- Send(session, response, string.Format("{0} {1}", analysisResult.Action, "Response"), result.Exception == null ? string.Empty : result.Exception.ToString());
- var request = new EVCB_OCPP20.Packet.Messages.SetNetworkProfileRequest()
- {
- ConfigurationSlot = 1,
- ConnectionData = new EVCB_OCPP20.Packet.DataTypes.NetworkConnectionProfileType()
- {
- OcppVersion = EVCB_OCPP20.Packet.DataTypes.EnumTypes.OCPPVersionEnumType.OCPP20,
- OcppTransport = EVCB_OCPP20.Packet.DataTypes.EnumTypes.OCPPTransportEnumType.JSON,
- MessageTimeout = 30,
- OcppCsmsUrl = session.UriScheme == "ws" ? GlobalConfig.OCPP20_WSUrl : GlobalConfig.OCPP20_WSSUrl,
- OcppInterface = EVCB_OCPP20.Packet.DataTypes.EnumTypes.OCPPInterfaceEnumType.Wired0
- }
- };
- var uuid = session.queue20.store(request);
- string requestText = BasicMessageHandler.GenerateRequestofOCPP20(uuid, "SetNetworkProfile", request);
- Send(session, requestText, "SetNetworkProfile");
- }
- break;
- default:
- {
- logger.LogError(string.Format("We don't implement messagetype:{0} of raw data :{1} by {2}", analysisResult.Id, rawdata, session.ChargeBoxId));
- }
- break;
- }
- }
- }
- break;
- case BasicMessageHandler.TYPENUMBER_CALLRESULT:
- {
- if (!session.ISOCPP20)
- {
- Actions action = Convertor.GetAction(analysisResult.Action);
- ProcessConfirmationMessage(analysisResult, session, action);
- }
- else
- {
- EVCB_OCPP20.Packet.Features.Actions action = Convertor.GetActionby20(analysisResult.Action);
- MessageResult result = new MessageResult() { Success = true };
- //ocpp20 處理
- switch (action)
- {
- case EVCB_OCPP20.Packet.Features.Actions.SetNetworkProfile:
- {
- EVCB_OCPP20.Packet.Messages.SetNetworkProfileResponse response = (EVCB_OCPP20.Packet.Messages.IConfirmation)analysisResult.Message as EVCB_OCPP20.Packet.Messages.SetNetworkProfileResponse;
- if (response.Status == EVCB_OCPP20.Packet.DataTypes.EnumTypes.SetNetworkProfileStatusEnumType.Accepted)
- {
- var request = new EVCB_OCPP20.Packet.Messages.SetVariablesRequest()
- {
- SetVariableData = new List<EVCB_OCPP20.Packet.DataTypes.SetVariableDataType>()
- {
- new EVCB_OCPP20.Packet.DataTypes.SetVariableDataType()
- {
- Component=new EVCB_OCPP20.Packet.DataTypes.ComponentType()
- {
- Name="OCPPCommCtrlr",
- },
- AttributeType= EVCB_OCPP20.Packet.DataTypes.EnumTypes.AttributeEnumType.Actual,
- AttributeValue= JsonConvert.SerializeObject(new List<int>(){ 1 }),
- Variable=new EVCB_OCPP20.Packet.DataTypes.VariableType()
- {
- Name="NetworkConfigurationPriority",
- }
- }
- }
- };
- var uuid = session.queue20.store(request);
- string requestText = BasicMessageHandler.GenerateRequestofOCPP20(uuid, "SetVariables", request);
- Send(session, requestText, "SetVariables");
- }
- }
- break;
- case EVCB_OCPP20.Packet.Features.Actions.SetVariables:
- {
- EVCB_OCPP20.Packet.Messages.SetVariablesResponse response = (EVCB_OCPP20.Packet.Messages.IConfirmation)analysisResult.Message as EVCB_OCPP20.Packet.Messages.SetVariablesResponse;
- if (response.SetVariableResult[0].AttributeStatus == EVCB_OCPP20.Packet.DataTypes.EnumTypes.SetVariableStatusEnumType.RebootRequired)
- {
- var request = new EVCB_OCPP20.Packet.Messages.ResetRequest()
- {
- Type = EVCB_OCPP20.Packet.DataTypes.EnumTypes.ResetEnumType.OnIdle
- };
- var uuid = session.queue20.store(request);
- string requestText = BasicMessageHandler.GenerateRequestofOCPP20(uuid, "Reset", request);
- Send(session, requestText, "Reset");
- }
- }
- break;
- default:
- {
- logger.LogError(string.Format("We don't implement messagetype:{0} of raw data :{1} by {2}", analysisResult.Id, rawdata, session.ChargeBoxId));
- }
- break;
- }
- }
- }
- break;
- case BasicMessageHandler.TYPENUMBER_CALLERROR:
- {
- //只處理 丟出Request 收到Error的訊息
- if (analysisResult.Success && analysisResult.Message != null)
- {
- Actions action = Convertor.GetAction(analysisResult.Action);
- ProcessErrorMessage(analysisResult, session, action);
- }
- }
- break;
- default:
- {
- logger.LogError(string.Format("Can't analyze messagetype:{0} of raw data :{1} by {2}", analysisResult.Id, rawdata, session.ChargeBoxId));
- }
- break;
- }
- }
- await Task.Delay(10);
- }
- catch (Exception ex)
- {
- if (ex.InnerException != null)
- {
- logger.LogError(string.Format("{0} **Inner Exception :{1} ", session.ChargeBoxId + rawdata, ex.ToString()));
- }
- else
- {
- logger.LogError(string.Format("{0} **Exception :{1} ", session.ChargeBoxId, ex.ToString()));
- }
- }
- }
- private async Task ProcessRequestMessage(MessageResult analysisResult, WsClientData session, Actions action)
- {
- Stopwatch outter_stopwatch = Stopwatch.StartNew();
- //BasicMessageHandler msgAnalyser = new BasicMessageHandler();
- if (!session.IsCheckIn && action != Actions.BootNotification)
- {
- string response = BasicMessageHandler.GenerateCallError(analysisResult.UUID, OCPPErrorCodes.GenericError, OCPPErrorDescription.NotChecked);
- Send(session, response, string.Format("{0} {1}", analysisResult.Action, "Error"));
- return;
- }
- var profileName = profiles.Where(x => x.IsExisted(analysisResult.Action)).Select(x => x.Name).FirstOrDefault();
- switch (profileName)
- {
- case "Core":
- {
- var replyResult = await profileHandler.ExecuteCoreRequest(action, session, (IRequest)analysisResult.Message).ConfigureAwait(false);
- var sendTimer = Stopwatch.StartNew();
- if (replyResult.Success)
- {
- string response = BasicMessageHandler.GenerateConfirmation(analysisResult.UUID, (IConfirmation)replyResult.Message);
- Send(session, response, string.Format("{0} {1}", analysisResult.Action, "Confirmation"), replyResult.Exception is null ? string.Empty : replyResult.Exception.ToString());
- if (action == Actions.BootNotification
- && replyResult.Message is BootNotificationConfirmation bootNotificationConfirmation)
- {
- if (bootNotificationConfirmation.status == Packet.Messages.SubTypes.RegistrationStatus.Accepted)
- {
- session.IsCheckIn = true;
- await messageService.SendGetEVSEConfigureRequest(session.ChargeBoxId);
- await messageService.SendChangeConfigurationRequest(
- session.ChargeBoxId, key: "TimeOffset", value: "+08:00");
- }
- else
- {
- bool? isAC = await mainDbService.GetChargeBoxIdIsAc(session.ChargeBoxId);
- if (isAC is not null)
- {
- session.IsAC = isAC.Value;
- }
- await mainDbService.UpdateMachineConnectionType(session.ChargeBoxId, session.Origin.Contains("https") ? 2 : 1);
- await webDbService.SetDefaultFee(session);
- }
- }
- if (action == Actions.Authorize && replyResult.Message is AuthorizeConfirmation)
- {
- var authorizeRequest = (IRequest)analysisResult.Message as AuthorizeRequest;
- if (session.UserDisplayPrices.ContainsKey(authorizeRequest.idTag))
- {
- await messageService.SendDataTransferRequest(
- session.ChargeBoxId,
- messageId: "SetUserPrice",
- vendorId:"Phihong Technology",
- data: JsonConvert.SerializeObject(
- new
- {
- idToken = authorizeRequest.idTag,
- price = session.UserDisplayPrices[authorizeRequest.idTag]
- })
- );
- }
- }
- }
- else
- {
- if (action == Actions.StopTransaction && replyResult.CallErrorMsg == "Reject Response Message")
- {
- //do nothing
- }
- else
- {
- string response = BasicMessageHandler.GenerateCallError(analysisResult.UUID, OCPPErrorCodes.InternalError, OCPPErrorDescription.InternalError);
- string errorMsg = replyResult.Exception != null ? replyResult.Exception.ToString() : string.Empty;
- Send(session, response, string.Format("{0} {1}", analysisResult.Action, "Error"), errorMsg);
- }
- }
- sendTimer.Stop();
- if(sendTimer.ElapsedMilliseconds/1000 > 1)
- {
- logger.LogCritical("ProcessRequestMessage Send Cost {time} sec", sendTimer.ElapsedMilliseconds / 1000);
- }
- if (action == Actions.StartTransaction)
- {
- var stationId = await _loadingBalanceService.GetStationIdByMachineId(session.MachineId);
- var _powerDic = await _loadingBalanceService.GetSettingPower(stationId);
- if (_powerDic != null)
- {
- foreach (var kv in _powerDic)
- {
- try
- {
- if (kv.Value.HasValue)
- {
- profileHandler.SetChargingProfile(kv.Key, kv.Value.Value, Packet.Messages.SubTypes.ChargingRateUnitType.W);
- }
- }
- catch (Exception ex)
- {
- logger.LogError(string.Format("Set Profile Exception: {0}", ex.ToString()));
- }
- }
- }
- }
- if (action == Actions.StopTransaction)
- {
- var stationId = await _loadingBalanceService.GetStationIdByMachineId(session.MachineId);
- var _powerDic = await _loadingBalanceService.GetSettingPower(stationId);
- if (_powerDic != null)
- {
- foreach (var kv in _powerDic)
- {
- try
- {
- if (kv.Value.HasValue)
- {
- profileHandler.SetChargingProfile(kv.Key, kv.Value.Value, Packet.Messages.SubTypes.ChargingRateUnitType.W);
- }
- }
- catch (Exception ex)
- {
- logger.LogError(string.Format("Set Profile Exception: {0}", ex.ToString()));
- }
- }
- }
- }
- }
- break;
- case "FirmwareManagement":
- {
- var replyResult = await profileHandler.ExecuteFirmwareManagementRequest(action, session, (IRequest)analysisResult.Message);
- if (replyResult.Success)
- {
- string response = BasicMessageHandler.GenerateConfirmation(analysisResult.UUID, (IConfirmation)replyResult.Message);
- Send(session, response, string.Format("{0} {1}", analysisResult.Action, "Confirmation", replyResult.Exception == null ? string.Empty : replyResult.Exception.ToString()));
- }
- else
- {
- string response = BasicMessageHandler.GenerateCallError(analysisResult.UUID, OCPPErrorCodes.InternalError, OCPPErrorDescription.InternalError);
- string errorMsg = replyResult.Exception != null ? replyResult.Exception.ToString() : string.Empty;
- Send(session, response, string.Format("{0} {1}", analysisResult.Action, "Error"), errorMsg);
- }
- }
- break;
- case "Security":
- {
- var replyResult = profileHandler.ExecuteSecurityRequest(action, session, (IRequest)analysisResult.Message);
- if (replyResult.Success)
- {
- string response = BasicMessageHandler.GenerateConfirmation(analysisResult.UUID, (IConfirmation)replyResult.Message);
- Send(session, response, string.Format("{0} {1}", analysisResult.Action, "Confirmation", replyResult.Exception == null ? string.Empty : replyResult.Exception.ToString()));
- }
- else
- {
- string response = BasicMessageHandler.GenerateCallError(analysisResult.UUID, OCPPErrorCodes.InternalError, OCPPErrorDescription.InternalError);
- string errorMsg = replyResult.Exception != null ? replyResult.Exception.ToString() : string.Empty;
- Send(session, response, string.Format("{0} {1}", analysisResult.Action, "Error"), errorMsg);
- }
- }
- break;
- default:
- {
- string replyMsg = BasicMessageHandler.GenerateCallError(analysisResult.UUID, OCPPErrorCodes.InternalError, OCPPErrorDescription.InternalError);
- string errorMsg = string.Format("Couldn't find action name: {0} of profile", action);
- Send(session, replyMsg, string.Format("{0} {1}", analysisResult.Action, "Error"), errorMsg);
- }
- break;
- }
-
- outter_stopwatch.Stop();
- if (outter_stopwatch.ElapsedMilliseconds > 1000)
- {
- logger.LogCritical("ProcessRequestMessage {action} too long {time} sec", action.ToString(), outter_stopwatch.ElapsedMilliseconds / 1000);
- }
- }
- async private void ProcessConfirmationMessage(MessageResult analysisResult, WsClientData session, Actions action)
- {
- BasicMessageHandler msgAnalyser = new BasicMessageHandler();
- if (await ReConfirmMessage(analysisResult))
- {
- var profileName = profiles.Where(x => x.IsExisted(analysisResult.Action)).Select(x => x.Name).FirstOrDefault();
- MessageResult confirmResult = null;
- switch (profileName)
- {
- case "Core":
- {
- confirmResult = await profileHandler.ExecuteCoreConfirm(action, session, (IConfirmation)analysisResult.Message, analysisResult.RequestId);
- }
- break;
- case "FirmwareManagement":
- {
- confirmResult = await profileHandler.ExecuteFirmwareManagementConfirm(action, session, (IConfirmation)analysisResult.Message, analysisResult.RequestId);
- }
- break;
- case "RemoteTrigger":
- {
- confirmResult = await profileHandler.ExecuteRemoteTriggerConfirm(action, session, (IConfirmation)analysisResult.Message, analysisResult.RequestId);
- }
- break;
- case "Reservation":
- {
- confirmResult = await profileHandler.ExecuteReservationConfirm(action, session, (IConfirmation)analysisResult.Message, analysisResult.RequestId);
- }
- break;
- case "LocalAuthListManagement":
- {
- confirmResult = await profileHandler.ExecuteLocalAuthListManagementConfirm(action, session, (IConfirmation)analysisResult.Message, analysisResult.RequestId);
- }
- break;
- case "SmartCharging":
- {
- confirmResult = await profileHandler.ExecuteSmartChargingConfirm(action, session, (IConfirmation)analysisResult.Message, analysisResult.RequestId);
- }
- break;
- case "Security":
- {
- confirmResult = profileHandler.ExecuteSecurityConfirm(action, session, (IConfirmation)analysisResult.Message, analysisResult.RequestId);
- }
- break;
- default:
- {
- string replyMsg = BasicMessageHandler.GenerateCallError(analysisResult.UUID, OCPPErrorCodes.InternalError, OCPPErrorDescription.InternalError);
- string errorMsg = string.Format("Couldn't find action name: {0} of profile", action);
- Send(session, replyMsg, string.Format("{0} {1}", analysisResult.Action, "Error"), errorMsg);
- }
- break;
- }
- if (confirmResult == null || !confirmResult.Success)
- {
- logger.LogError(string.Format("Action:{0} MessageId:{1} ExecuteConfirm Error:{2} ",
- analysisResult.Action, analysisResult.UUID, confirmResult.Exception.ToString()));
- }
- }
- else
- {
- string replyMsg = BasicMessageHandler.GenerateCallError(analysisResult.UUID, OCPPErrorCodes.InternalError, OCPPErrorDescription.InternalError);
- string errorMsg = string.Format("Action:{0} MessageId:{1} didn't exist in confirm message", analysisResult.Action, analysisResult.UUID);
- Send(session, replyMsg, string.Format("{0} {1}", analysisResult.Action, "Error"), errorMsg);
- }
- }
- private async void ProcessErrorMessage(MessageResult analysisResult, WsClientData session, Actions action)
- {
- BasicMessageHandler msgAnalyser = new BasicMessageHandler();
- if (await ReConfirmMessage(analysisResult))
- {
- var profileName = profiles.Where(x => x.IsExisted(analysisResult.Action)).Select(x => x.Name).FirstOrDefault();
- switch (profileName)
- {
- case "Core":
- {
- _ = profileHandler.ReceivedCoreError(action, analysisResult.ReceivedErrorCode, session, analysisResult.RequestId);
- }
- break;
- case "FirmwareManagement":
- {
- _ = profileHandler.ReceivedFirmwareManagementError(action, analysisResult.ReceivedErrorCode, session, analysisResult.RequestId);
- }
- break;
- case "RemoteTrigger":
- {
- _ = profileHandler.ReceivedRemoteTriggerError(action, analysisResult.ReceivedErrorCode, session, analysisResult.RequestId);
- }
- break;
- case "Reservation":
- {
- _ = profileHandler.ExecuteReservationError(action, analysisResult.ReceivedErrorCode, session, analysisResult.RequestId);
- }
- break;
- case "LocalAuthListManagement":
- {
- _ = profileHandler.ReceivedLocalAuthListManagementError(action, analysisResult.ReceivedErrorCode, session, analysisResult.RequestId);
- }
- break;
- case "SmartCharging":
- {
- _ = profileHandler.ReceivedSmartChargingError(action, analysisResult.ReceivedErrorCode, session, analysisResult.RequestId);
- }
- break;
- default:
- {
- string replyMsg = BasicMessageHandler.GenerateCallError(analysisResult.UUID, OCPPErrorCodes.InternalError, OCPPErrorDescription.InternalError);
- string errorMsg = string.Format("Couldn't find action name: {0} of profile", action);
- Send(session, replyMsg, string.Format("{0} {1}", analysisResult.Action, "Error"), errorMsg);
- }
- break;
- }
- }
- else
- {
- string replyMsg = BasicMessageHandler.GenerateCallError(analysisResult.UUID, OCPPErrorCodes.InternalError, OCPPErrorDescription.InternalError);
- string errorMsg = string.Format("Action:{0} MessageId:{1} didn't exist in confirm message", analysisResult.Action, analysisResult.UUID);
- Send(session, replyMsg, string.Format("{0} {1}", analysisResult.Action, "Error"), errorMsg);
- }
- }
- private void Send(WsClientData session, string msg, string messageType, string errorMsg = "")
- {
- try
- {
- if (session != null)
- {
- WriteMachineLog(session, msg, messageType, errorMsg, true);
- session.Send(msg);
- }
- }
- catch (Exception ex)
- {
- logger.LogError(string.Format("Send Ex:{0}", ex.ToString()));
- }
- }
- internal void AddConfirmMessage(string chargePointSerialNumber, int table_id, string requestId, string action, string msg_id, string createdBy, string sendMessage)
- {
- NeedConfirmMessage _needConfirmMsg = new NeedConfirmMessage();
- _needConfirmMsg.Id = table_id;
- _needConfirmMsg.SentAction = action;
- _needConfirmMsg.SentOn = DateTime.UtcNow;
- _needConfirmMsg.SentTimes = 4;
- _needConfirmMsg.ChargePointSerialNumber = chargePointSerialNumber;
- _needConfirmMsg.RequestId = requestId;
- _needConfirmMsg.SentUniqueId = msg_id;
- _needConfirmMsg.CreatedBy = createdBy;
- _needConfirmMsg.SentMessage = sendMessage;
- if (needConfirmActions.Contains(action))
- {
- lock (_lockConfirmPacketList)
- {
- needConfirmPacketList.Add(_needConfirmMsg);
- }
- }
- }
- internal void RemoveConfirmMessage()
- {
- var before10Mins = DateTime.UtcNow.AddMinutes(-10);
- lock (_lockConfirmPacketList)
- {
- var removeList = needConfirmPacketList.Where(x => x.SentTimes == 0 || x.SentOn < before10Mins).ToList();
- foreach (var item in removeList)
- {
- needConfirmPacketList.Remove(item);
- }
- }
- }
- private async Task<bool> ReConfirmMessage(MessageResult analysisResult)
- {
- bool confirmed = false;
- if (needConfirmActions.Contains(analysisResult.Action))
- {
- NeedConfirmMessage foundRequest = null;
- lock (_lockConfirmPacketList)
- {
- foundRequest = needConfirmPacketList.Where(x => x.SentUniqueId == analysisResult.UUID).FirstOrDefault();
- }
- if (foundRequest != null && foundRequest.Id > 0)
- {
- foundRequest.SentTimes = 0;
- foundRequest.SentInterval = 0;
- analysisResult.RequestId = foundRequest.RequestId;
- await mainDbService.UpdateServerMessage(foundRequest.Id, inMessage: JsonConvert.SerializeObject(analysisResult.Message, Formatting.None), receivedOn: DateTime.UtcNow);
-
- confirmed = true;
- }
- else if (analysisResult.Action == Actions.TriggerMessage.ToString())
- {
- confirmed = true;
- }
- else
- {
- logger.LogError(string.Format("Received no record Action:{0} MessageId:{1} ", analysisResult.Action, analysisResult.UUID));
- }
- }
- return confirmed;
- }
- internal async void RemoveClient(WsClientData session)
- {
- if (session is null)
- {
- return;
- }
- if (!string.IsNullOrEmpty(session.MachineId))
- logger.LogTrace("RemoveClient[" + session.ChargeBoxId + "]");
- RemoveClientDic(session);
- try
- {
- if (session.State == WebSocketState.Open)
- {
- await session.Close(CloseReason.ServerShutdown);
- }
- //session.m_ReceiveData -= ReceivedMessageTimeLimited;
- // session.Close(CloseReason.ServerShutdown);
- }
- catch (Exception ex)
- {
- //logger.LogWarning("Close client socket error!!");
- logger.LogWarning(string.Format("Close client socket error!! {0} Msg:{1}", session.ChargeBoxId, ex.Message));
- }
- }
- private void RemoveClientDic(WsClientData session)
- {
- if (string.IsNullOrEmpty(session.ChargeBoxId) ||
- !clientDic.ContainsKey(session.ChargeBoxId) ||
- clientDic[session.ChargeBoxId].SessionID != session.SessionID)
- {
- return;
- }
- logger.LogDebug(String.Format("ChargeBoxId:{0} Remove SessionId:{1} Removed SessionId:{2}", session.ChargeBoxId, session.SessionID, clientDic[session.ChargeBoxId].SessionID));
- clientDic.Remove(session.ChargeBoxId, out _);
- logger.LogTrace("RemoveClient ContainsKey " + session.ChargeBoxId);
- }
- private void WarmUpLog()
- {
- connectionLogdbService.WarmUpLog();
- }
- private void WriteMachineLog(WsClientData clientData, string data, string messageType, string errorMsg = "", bool isSent = false)
- {
- try
- {
- if (clientData == null || string.IsNullOrEmpty(data)) return;
- if (clientData.ChargeBoxId == null)
- {
- logger.LogCritical(clientData.Path.ToString() + "]********************session ChargeBoxId null sessionId=" + clientData.SessionID);
- }
- connectionLogdbService.WriteMachineLog(clientData, data, messageType, errorMsg, isSent);
- }
- catch (Exception ex)
- {
- //Console.WriteLine(ex.ToString());
- logger.LogError(ex,ex.Message);
- }
- }
- }
- }
|