Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion SCIStorePlugin/SCIStorePlugin.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@
<ItemGroup>
<PackageReference Include="Equ" Version="2.3.0" />
<PackageReference Include="Microsoft.XmlSerializer.Generator" Version="8.0.0" />
<PackageReference Include="System.ServiceModel.Http" Version="6.2.0" />
<PackageReference Include="System.ServiceModel.Http" Version="8.0.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\RDMP\Rdmp.Core\Rdmp.Core.csproj" />
Expand Down
9 changes: 6 additions & 3 deletions SCIStorePlugin/SciStoreApplication.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
using System.ServiceModel;
using System.ServiceModel.Description;

namespace SciStoreApplication.Properties
{
internal sealed class Settings : System.Configuration.ApplicationSettingsBase
Expand Down Expand Up @@ -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)
{
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@
// </auto-generated>
//------------------------------------------------------------------------------

using System.ServiceModel;
using System.ServiceModel.Description;

namespace SCIStore.SciStoreServices81 {


Expand Down Expand Up @@ -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) :
Expand Down