From b9a2709fd54e3d22343f676598abcb00f70234b1 Mon Sep 17 00:00:00 2001 From: James Kolpack Date: Sat, 11 Oct 2025 09:44:08 -0400 Subject: [PATCH] Configuration branch --- Endpoint/Endpoint.csproj | 58 +- Endpoint/HtmlEndpoint.cs | 72 ++- Endpoint/HtmlEndpointConfiguration.cs | 114 ++++ Endpoint/HttpEndpoint.cs | 114 ++-- Endpoint/HttpEndpointConfiguration.cs | 128 +++++ Endpoint/IHttpEndpointConfiguration.cs | 18 + Endpoint/IServiceEndpoint.cs | 31 ++ Endpoint/IServiceEndpointConfiguration.cs | 11 + Endpoint/OracleEndpoint.cs | 60 +++ Endpoint/OracleEndpointConfiguration.cs | 155 ++++++ Endpoint/ServiceEndpointFactory.cs | 31 ++ Endpoint/SoapEndpoint.cs | 75 +-- Endpoint/SoapEndpointConfiguration.cs | 134 +++++ Endpoint/Status.cs | 8 +- EndpointTest/EndpointTest.csproj | 50 +- EndpointTest/HtmlEndpointTest.cs | 48 +- EndpointTest/HttpEndpointTest.cs | 54 +- ServiceDashBored.sln | 15 +- ServiceDashBored/EndpointStatus.cs | 132 ++--- ServiceDashBored/Main.Designer.cs | 211 ++++---- ServiceDashBored/Main.cs | 506 ++++++------------ ServiceDashBored/Main.resx | 22 +- ServiceDashBored/Program.cs | 29 +- .../Properties/Resources.Designer.cs | 23 +- ServiceDashBored/Properties/Resources.resx | 4 +- .../Properties/Settings.Designer.cs | 37 ++ ServiceDashBored/Properties/Settings.settings | 9 + ServiceDashBored/Resources/help.ico | Bin 0 -> 68790 bytes ServiceDashBored/ServiceDashBored.csproj | 67 +-- ServiceDashBored/Settings.cs | 28 + ServiceDashBored/app.config | 180 +------ 31 files changed, 1367 insertions(+), 1057 deletions(-) create mode 100644 Endpoint/HtmlEndpointConfiguration.cs create mode 100644 Endpoint/HttpEndpointConfiguration.cs create mode 100644 Endpoint/IHttpEndpointConfiguration.cs create mode 100644 Endpoint/IServiceEndpoint.cs create mode 100644 Endpoint/IServiceEndpointConfiguration.cs create mode 100644 Endpoint/OracleEndpoint.cs create mode 100644 Endpoint/OracleEndpointConfiguration.cs create mode 100644 Endpoint/ServiceEndpointFactory.cs create mode 100644 Endpoint/SoapEndpointConfiguration.cs create mode 100644 ServiceDashBored/Properties/Settings.Designer.cs create mode 100644 ServiceDashBored/Properties/Settings.settings create mode 100644 ServiceDashBored/Resources/help.ico create mode 100644 ServiceDashBored/Settings.cs diff --git a/Endpoint/Endpoint.csproj b/Endpoint/Endpoint.csproj index a86a8cb..a4524de 100644 --- a/Endpoint/Endpoint.csproj +++ b/Endpoint/Endpoint.csproj @@ -1,5 +1,5 @@  - + Debug AnyCPU @@ -14,23 +14,9 @@ 512 + + 3.5 - - publish\ - true - Disk - false - Foreground - 7 - Days - false - false - true - 0 - 1.0.0.%2a - false - false - true true @@ -40,7 +26,6 @@ DEBUG;TRACE prompt 4 - AllRules.ruleset pdbonly @@ -49,51 +34,40 @@ TRACE prompt 4 - AllRules.ruleset False References\HtmlAgilityPack.dll + + False + References\Oracle.DataAccess.dll + - - - + + + + + + + + + - - - - - - False - .NET Framework 3.5 SP1 Client Profile - false - - - False - .NET Framework 3.5 SP1 - true - - - False - Windows Installer 3.1 - true - - + + + + + + + + + + + + \ No newline at end of file