SdlChannelSink Class

Definition

Provides the implementation for a server channel sink that generates Web Services Description Language (WSDL) dynamically on the server.

public ref class SdlChannelSink : System::Runtime::Remoting::Channels::IServerChannelSink
public class SdlChannelSink : System.Runtime.Remoting.Channels.IServerChannelSink
type SdlChannelSink = class
    interface IServerChannelSink
    interface IChannelSinkBase
Public Class SdlChannelSink
Implements IServerChannelSink
Inheritance
SdlChannelSink
Implements

Remarks

The SdlChannelSink is used to create WSDL in situations where the URL ends with the string "?wsdl".

The following table shows the channel configuration properties that can be specified for this channel sink. The first two properties combine to control the WSDL publication of objects published by the application domain. If false is specified for the first property, no WSDL is returned, regardless of the second property. (The default is true.) Otherwise, the second controls whether the global metadata object URI is permitted to respond. (The default is false.)

Property Description
metadataEnabled A Boolean value that specifies whether to honor requests that end in "?wsdl" if this sink is in the channel sink chain. The default setting is true. If false, the sink throws an exception in all cases where metadata is requested for any object in the application domain.

This property is supported only by the .NET Framework version 1.1 on the following platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family.
remoteApplicationMetadataEnabled A Boolean value that specifies whether to honor requests for the object URI "RemoteApplicationMetadata?wsdl", which returns WSDL that describes all objects that are published by the application domain. If false, then any request to "RemoteApplicationMetadata.rem" throws an exception. All other "?wsdl" requests for particular object URIs are honored. If true, the global metadata request is honored. The default setting is false.

This property is supported only by the .NET Framework version 1.1 on the following platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family.

Constructors

SdlChannelSink(IChannelReceiver, IServerChannelSink)

Initializes a new instance of the SdlChannelSink class.

Properties

NextChannelSink

Gets the next IServerChannelSink in the sink chain.

Properties

Gets a IDictionary of properties for the current channel sink.

Methods

AsyncProcessResponse(IServerResponseChannelSinkStack, Object, IMessage, ITransportHeaders, Stream)

Requests processing from the current sink of the response from a method call that was sent asynchronously.

Equals(Object)

Determines whether the specified object is equal to the current object.

(Inherited from Object)
GetHashCode()

Serves as the default hash function.

(Inherited from Object)
GetResponseStream(IServerResponseChannelSinkStack, Object, IMessage, ITransportHeaders)

Returns the Stream onto which the provided response message is to be serialized.

GetType()

Gets the Type of the current instance.

(Inherited from Object)
MemberwiseClone()

Creates a shallow copy of the current Object.

(Inherited from Object)
ProcessMessage(IServerChannelSinkStack, IMessage, ITransportHeaders, Stream, IMessage, ITransportHeaders, Stream)

Requests message processing from the current sink.

ToString()

Returns a string that represents the current object.

(Inherited from Object)

Applies to

See also