SecurityBindingElement.CreateSspiNegotiationOverTransportBindingElement Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Creates a security binding element that is configured for client authentication based on SOAP SSPI negotiation using the Negotiate authentication package. The binding element requires the transport to provide server authentication and message protection (for example, HTTPS).
Overloads
CreateSspiNegotiationOverTransportBindingElement() |
Creates a security binding element that is configured for client authentication based on SOAP SSPI negotiation using the Negotiate authentication package. The binding element requires the transport to provide server authentication and message protection (for example, HTTPS). |
CreateSspiNegotiationOverTransportBindingElement(Boolean) |
Creates a security binding element that is configured for client authentication based on SOAP SSPI negotiation using the Negotiate authentication package. The binding element requires the transport to provide server authentication and message protection (for example, HTTPS). |
CreateSspiNegotiationOverTransportBindingElement()
Creates a security binding element that is configured for client authentication based on SOAP SSPI negotiation using the Negotiate authentication package. The binding element requires the transport to provide server authentication and message protection (for example, HTTPS).
public:
static System::ServiceModel::Channels::TransportSecurityBindingElement ^ CreateSspiNegotiationOverTransportBindingElement();
public static System.ServiceModel.Channels.TransportSecurityBindingElement CreateSspiNegotiationOverTransportBindingElement ();
static member CreateSspiNegotiationOverTransportBindingElement : unit -> System.ServiceModel.Channels.TransportSecurityBindingElement
Public Shared Function CreateSspiNegotiationOverTransportBindingElement () As TransportSecurityBindingElement
Returns
A TransportSecurityBindingElement object.
Remarks
The security context token issued at the end of SSPI negotiation is cookie based.
The created binding has IncludeTimestamp set to true
. The LocalClientSecuritySettings object returned from LocalClientSettings has its DetectReplays property set to false
.
The LocalServiceSecuritySettings object returned from LocalServiceSettings has its DetectReplays property set to false
.
Applies to
CreateSspiNegotiationOverTransportBindingElement(Boolean)
Creates a security binding element that is configured for client authentication based on SOAP SSPI negotiation using the Negotiate authentication package. The binding element requires the transport to provide server authentication and message protection (for example, HTTPS).
public:
static System::ServiceModel::Channels::TransportSecurityBindingElement ^ CreateSspiNegotiationOverTransportBindingElement(bool requireCancellation);
public static System.ServiceModel.Channels.TransportSecurityBindingElement CreateSspiNegotiationOverTransportBindingElement (bool requireCancellation);
static member CreateSspiNegotiationOverTransportBindingElement : bool -> System.ServiceModel.Channels.TransportSecurityBindingElement
Public Shared Function CreateSspiNegotiationOverTransportBindingElement (requireCancellation As Boolean) As TransportSecurityBindingElement
Parameters
- requireCancellation
- Boolean
Specifies whether cancellation is required. Setting it to false
enables a security context token that is useful in Web farm scenarios, because in this mode the session state is encoded inside the established security context token instead of being kept in the server memory.
Returns
A TransportSecurityBindingElement object.
Remarks
If requireCancellation
is false
, cookie-based security context tokens are issued; otherwise, session-based security context tokens are issued.
The created binding has IncludeTimestamp set to true
. The LocalClientSecuritySettings object returned from LocalClientSettings has its DetectReplays property set to false
.
The LocalServiceSecuritySettings object returned from LocalServiceSettings has its DetectReplays property set to false
.