| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- //
- // TcpChannelFactory.cs
- //
- // Author:
- // Marcos Cobena ([email protected])
- //
- // Copyright 2007 Marcos Cobena (http://www.youcannoteatbits.org/)
- //
- using System;
- using System.Collections.Generic;
- using System.Net;
- using System.Net.Security;
- using System.ServiceModel;
- using System.ServiceModel.Description;
- using System.ServiceModel.Security;
- using System.Text;
- namespace System.ServiceModel.Channels
- {
- internal class TcpChannelInfo
- {
- public TcpChannelInfo (TcpTransportBindingElement element, MessageEncoder encoder)
- {
- this.element = element;
- this.encoder = encoder;
- }
- TcpTransportBindingElement element;
- MessageEncoder encoder;
- public TcpTransportBindingElement BindingElement {
- get { return element; }
- }
- public MessageEncoder MessageEncoder {
- get { return encoder; }
- }
- }
- internal class TcpChannelFactory<TChannel> : ChannelFactoryBase<TChannel>
- {
- TcpChannelInfo info;
- [MonoTODO]
- public TcpChannelFactory (TcpTransportBindingElement source, BindingContext ctx)
- {
- MessageEncoder encoder = null;
- foreach (BindingElement be in ctx.RemainingBindingElements) {
- MessageEncodingBindingElement mbe = be as MessageEncodingBindingElement;
- if (mbe != null) {
- encoder = mbe.CreateMessageEncoderFactory ().Encoder;
- break;
- }
- }
- if (encoder == null)
- encoder = new BinaryMessageEncoder ();
- info = new TcpChannelInfo (source, encoder);
- }
- [MonoTODO]
- protected override TChannel OnCreateChannel (
- EndpointAddress address, Uri via)
- {
- ThrowIfDisposedOrNotOpen ();
- if (info.BindingElement.Scheme != address.Uri.Scheme)
- throw new ArgumentException (String.Format ("Argument EndpointAddress has unsupported URI scheme: {0}", address.Uri.Scheme));
- Type t = typeof (TChannel);
-
- if (t == typeof (IDuplexSessionChannel))
- return (TChannel) (object) new TcpDuplexSessionChannel (this, info, address, via);
-
- throw new InvalidOperationException (String.Format ("Channel type {0} is not supported.", typeof (TChannel).Name));
- }
- [MonoTODO]
- protected override IAsyncResult OnBeginOpen (TimeSpan timeout,
- AsyncCallback callback, object state)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- protected override void OnEndOpen (IAsyncResult result)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- protected override void OnOpen (TimeSpan timeout)
- {
- }
- }
- }
|