ServiceMetadataPublishingElement.HttpGetEnabled Property
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.
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.