ServiceMetadataPublishingElement.HttpGetEnabled Property

Definition

Gets or sets a value that specifies whether to publish service metadata for retrieval using an HTTP/Get request.

public:
 property bool HttpGetEnabled { bool get(); void set(bool value); };
[System.Configuration.ConfigurationProperty("httpGetEnabled", DefaultValue=false)]
public bool HttpGetEnabled { get; set; }
[<System.Configuration.ConfigurationProperty("httpGetEnabled", DefaultValue=false)>]
member this.HttpGetEnabled : bool with get, set
Public Property HttpGetEnabled As Boolean

Property Value

true if the service metadata is published for retrieval using an HTTP/Get request; otherwise, false. The default is false.

Attributes

Remarks

If the HttpGetUrl property is not specified, the address at which the metadata is published is the service address plus a "?wsdl". For example, if the service address is http://localhost:8080/CalculatorService, the HTTP/Get metadata address is http://localhost:8080/CalculatorService?wsdl.

If this property is false, or the address of the service is not based on HTTP or HTTPS, "?wsdl" is ignored.

Applies to