Cómo configurar canales
En el siguiente ejemplo, se muestra cómo generar un HttpChannel con un nombre distinto de "http" y utilizarlo para una aplicación de servidor.
Ejemplo
<configuration>
<system.runtime.remoting>
<application>
<service>
<wellknown
type="Type,Assembly"
mode="Singleton"
objectUri="endpoint"
/>
</service>
<channels>
<channel ref="OtherChannel"/>
</channel>
</application>
<channels>
<channel
id="OtherChannel"
type="CompleteTypeInformation including versiong and strong-name information"
/>
</channels>
</system.runtime.remoting>
</configuration>
Consulte también
Referencia
System.Runtime.Remoting.RemotingConfiguration Class
Conceptos
Configuración de aplicaciones remotas
Canales
Registro de canales
Registro en el servidor
Registro en el cliente
Registro de canales
Otros recursos
Registro de objetos remotos mediante archivos de configuración
.Información general de comunicación remota de .NET Framework
Copyright © 2007 Microsoft Corporation. Reservados todos los derechos.