// // TcpChannelFactory.cs // // Author: // Marcos Cobena (marcoscobena@gmail.com) // // 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; using System.Xml; namespace System.ServiceModel.Channels { internal class TcpChannelInfo { public TcpChannelInfo (TransportBindingElement element, MessageEncoder encoder, XmlDictionaryReaderQuotas readerQuotas) { this.BindingElement = element; this.MessageEncoder = encoder; this.ReaderQuotas = readerQuotas ?? new XmlDictionaryReaderQuotas (); } public TransportBindingElement BindingElement { get; private set; } public MessageEncoder MessageEncoder { get; private set; } public XmlDictionaryReaderQuotas ReaderQuotas { get; private set; } } internal class TcpChannelFactory : ChannelFactoryBase { TcpChannelInfo info; [MonoTODO] public TcpChannelFactory (TcpTransportBindingElement source, BindingContext ctx) { MessageEncoder encoder = null; XmlDictionaryReaderQuotas quotas = null; foreach (BindingElement be in ctx.RemainingBindingElements) { MessageEncodingBindingElement mbe = be as MessageEncodingBindingElement; if (mbe != null) { encoder = CreateEncoder (mbe); quotas = mbe.GetProperty (ctx); break; } } if (encoder == null) encoder = new BinaryMessageEncoder (); info = new TcpChannelInfo (source, encoder, quotas); } [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); if (t == typeof (IRequestChannel)) return (TChannel) (object) new TcpRequestChannel (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) { } } }