Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
#if NETFX
using System;
using System.ServiceModel;
using System.ServiceModel.Channels;
using ServiceStack.Text;
namespace ServiceStack
{
public class Soap12ServiceClient : WcfServiceClient
{
public Soap12ServiceClient(string uri)
{
this.Uri = uri.WithTrailingSlash() + "Soap12";
this.StoreCookies = true;
}
private WSHttpBinding binding;
private Binding WsHttpBinding
{
get
{
if (this.binding == null)
{
this.binding = new WSHttpBinding
{
MaxReceivedMessageSize = int.MaxValue,
HostNameComparisonMode = HostNameComparisonMode.StrongWildcard,
MaxBufferPoolSize = 524288,
Security = { Mode = SecurityMode.None },
};
// CCB Custom
// Yes, you need this to manage cookies yourself. Seems counterintutive, but set to true,
// it only means that the framework will manage cookie propagation for the same call, which is
// not what we want.
if (StoreCookies)
this.binding.AllowCookies = false;
}
return this.binding;
}
}
protected override Binding Binding => this.WsHttpBinding;
protected override MessageVersion MessageVersion => MessageVersion.Default;
public override void SetProxy(Uri proxyAddress)
{
var wsHttpBinding = (WSHttpBinding)Binding;
wsHttpBinding.ProxyAddress = proxyAddress;
wsHttpBinding.UseDefaultWebProxy = false;
wsHttpBinding.BypassProxyOnLocal = false;
return;
}
}
}
#endif