From 609b3ce61688c844913a9e9e9d7f75435f43047c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 11 Oct 2024 01:46:56 +0000 Subject: [PATCH 1/4] Bump System.ServiceModel.Http from 6.2.0 to 8.0.0 Bumps [System.ServiceModel.Http](https://github.com/dotnet/wcf) from 6.2.0 to 8.0.0. - [Release notes](https://github.com/dotnet/wcf/releases) - [Commits](https://github.com/dotnet/wcf/commits) --- updated-dependencies: - dependency-name: System.ServiceModel.Http dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- SCIStorePlugin/SCIStorePlugin.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SCIStorePlugin/SCIStorePlugin.csproj b/SCIStorePlugin/SCIStorePlugin.csproj index 7073794..b4d05a1 100644 --- a/SCIStorePlugin/SCIStorePlugin.csproj +++ b/SCIStorePlugin/SCIStorePlugin.csproj @@ -128,7 +128,7 @@ - + From 018793919c67df1345dfccbf18a178813190ef13 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 22 Oct 2024 19:46:11 +0000 Subject: [PATCH 2/4] Bump System.ServiceModel.Http from 6.2.0 to 8.0.0 Bumps [System.ServiceModel.Http](https://github.com/dotnet/wcf) from 6.2.0 to 8.0.0. - [Release notes](https://github.com/dotnet/wcf/releases) - [Commits](https://github.com/dotnet/wcf/commits) --- updated-dependencies: - dependency-name: System.ServiceModel.Http dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- SCIStorePlugin/SCIStorePlugin.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SCIStorePlugin/SCIStorePlugin.csproj b/SCIStorePlugin/SCIStorePlugin.csproj index 7073794..b4d05a1 100644 --- a/SCIStorePlugin/SCIStorePlugin.csproj +++ b/SCIStorePlugin/SCIStorePlugin.csproj @@ -128,7 +128,7 @@ - + From 40b533e33d3f6a1693144c9446b698bc72d64ae6 Mon Sep 17 00:00:00 2001 From: James A Sutherland Date: Tue, 22 Oct 2024 15:24:34 -0500 Subject: [PATCH 3/4] Update Reference.cs Update API for v8 --- .../Service References/SciStoreServices81/Reference.cs | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/SCIStorePlugin/Service References/SciStoreServices81/Reference.cs b/SCIStorePlugin/Service References/SciStoreServices81/Reference.cs index 1692c46..76f9112 100644 --- a/SCIStorePlugin/Service References/SciStoreServices81/Reference.cs +++ b/SCIStorePlugin/Service References/SciStoreServices81/Reference.cs @@ -8,6 +8,9 @@ // //------------------------------------------------------------------------------ +using System.ServiceModel; +using System.ServiceModel.Description; + namespace SCIStore.SciStoreServices81 { @@ -23615,15 +23618,16 @@ public SCIStoreServicesClient() { } public SCIStoreServicesClient(string endpointConfigurationName) : - base(endpointConfigurationName) { + base(new ServiceEndpoint(new ContractDescription(endpointConfigurationName))) { } public SCIStoreServicesClient(string endpointConfigurationName, string remoteAddress) : - base(endpointConfigurationName, remoteAddress) { + this(endpointConfigurationName, new EndpointAddress(remoteAddress)) + { } public SCIStoreServicesClient(string endpointConfigurationName, System.ServiceModel.EndpointAddress remoteAddress) : - base(endpointConfigurationName, remoteAddress) { + this(new ServiceEndpoint(new ContractDescription(endpointConfigurationName)).Binding, remoteAddress) { } public SCIStoreServicesClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) : From a07e3d7b42b4e248a6523a2ee6c25920d8b465de Mon Sep 17 00:00:00 2001 From: James A Sutherland Date: Tue, 22 Oct 2024 15:34:47 -0500 Subject: [PATCH 4/4] Update SciStoreApplication.cs API update --- SCIStorePlugin/SciStoreApplication.cs | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/SCIStorePlugin/SciStoreApplication.cs b/SCIStorePlugin/SciStoreApplication.cs index 92a571a..43f3af7 100644 --- a/SCIStorePlugin/SciStoreApplication.cs +++ b/SCIStorePlugin/SciStoreApplication.cs @@ -1,3 +1,6 @@ +using System.ServiceModel; +using System.ServiceModel.Description; + namespace SciStoreApplication.Properties { internal sealed class Settings : System.Configuration.ApplicationSettingsBase @@ -22139,17 +22142,17 @@ public SCIStoreServicesClient() } public SCIStoreServicesClient(string endpointConfigurationName) : - base(endpointConfigurationName) + base(new ServiceEndpoint(new ContractDescription(endpointConfigurationName))) { } public SCIStoreServicesClient(string endpointConfigurationName, string remoteAddress) : - base(endpointConfigurationName, remoteAddress) + this(endpointConfigurationName, new EndpointAddress(remoteAddress)) { } public SCIStoreServicesClient(string endpointConfigurationName, System.ServiceModel.EndpointAddress remoteAddress) : - base(endpointConfigurationName, remoteAddress) + this(new ServiceEndpoint(new ContractDescription(endpointConfigurationName)).Binding, remoteAddress) { }