Hola a todos.
Muchas veces necesitamos hacer aplicaciones orientadas a servicios y además que estas se integren con otros sistemas de servicios como soa.
Para estos casos un simple rest no es factible debido a que se montara en Azure. Básicamente lo que se quiere es exponer un servicio wcf que ira por http pero la comunicación interna deberá ser por tcp por aquello de que tcp nos evita como dos capas del modelo osi.
Requerimientos
Microsoft Azure SDK for .NET – 2.8.2
Cuenta de Azure
Creamos un proyecto Azure WorkerRole
Después de creado el proyecto, damos en propiedades del role WcfWorker, vamos a extremos y añadimos los siguientes puntos.
Agregamos las siguientes referencias.
Agregamos una interface IService
Agregamos una interface IWorker
Agregamos una clase Service que implemente las interfaces creadas.
Abrimos la clase WorkerRole.cs, creamos variables ServiceHost y añadimos el método CreateServiceHost para alojar su servicio WCF REST.
[sourcecode language='csharp' padlinenumbers='true'] //Static channel factory for inter-role communication. private static ChannelFactory<IWorker> factory; //Service host varible. private ServiceHost serviceHost; private void CreateServiceHost() { //Url of service. Uri httpUri = new Uri(String.Format("http://{0}/{1}", RoleEnvironment.CurrentRoleInstance.InstanceEndpoints["Rest"].IPEndpoint.ToString(), "Rest")); //Assign url to service host. serviceHost = new ServiceHost(typeof(Service), httpUri); //Adding endpoint for REST service. ServiceEndpoint ep = serviceHost.AddServiceEndpoint(typeof(IService), new WebHttpBinding(), ""); //Adding behavior for REST service. ep.Behaviors.Add(new WebHttpBehavior() { HelpEnabled = true }); //NetTcpBinding with no security. NetTcpBinding binding = new NetTcpBinding(SecurityMode.None); //Define an internal endpoint for inter-role traffic. RoleInstanceEndpoint internalEndPoint = RoleEnvironment.CurrentRoleInstance.InstanceEndpoints["InternalRest"]; //Add internal endpoint. this.serviceHost.AddServiceEndpoint(typeof(IWorker), binding, String.Format("net.tcp://{0}/InternalRest", internalEndPoint.IPEndpoint)); //Create channel factory for inter-role communication. WorkerRole.factory = new ChannelFactory<IWorker>(binding); //Open the service host to start listening for messages. serviceHost.Open(); } [/sourcecode]
Creamos el método NotifiyAllNodes para notificar en las instancias.
[sourcecode language='csharp' ] internal static void NotifyAllNodes(string message) { //Get the role id. string roleId = RoleEnvironment.CurrentRoleInstance.Id; //Gets a RoleInstance object representing the role instance in which this code is currently executing. var current = RoleEnvironment.CurrentRoleInstance; //Get all instances except the current. var endPoints = current.Role.Instances .Where(instance => instance != current) .Select(instance => instance.InstanceEndpoints["InternalRest"]); foreach (var ep in endPoints) { //Internal endpoint address. EndpointAddress address = new EndpointAddress(String.Format("net.tcp://{0}/InternalRest", ep.IPEndpoint)); //Channel for communication. IWorker client = WorkerRole.factory.CreateChannel(address); //Update all the instances. client.UpdateMessage(message, ep.RoleInstance.Id); } } [/sourcecode]
Llamar método CreateServiceHost en método OnStart() .
Procedemos a publicar.
Cuando publicamos tenemos una exception.
HTTP could not register URL http://+:80/Rest/. Your process does not have access rights to this namespace (see http://go.microsoft.com/fwlink/?LinkId=70353 for details).
La solución a este problema es averiguar el puerto que necesita para abrir y dar permiso al rol de trabajo para abrir el puerto apropiado.
Para esto creamos un proyecto de consola.
Vinculamos el ejecutable al proyecto WorkerRole y seleccionamos que se copie siempre.
En el archivo de definición agregamos las siguientes líneas.
[sourcecode language='xml' ] <Startup> <Task commandLine="PortDetect.exe" executionContext="elevated" taskType="simple"> </Task> </Startup [/sourcecode]
Volvemos a publicar, Ahora se puede acceder al servicio rest que se aloja (en el puerto 80) en el WorkerRole y internamente se comunica por tcp.
Realizamos una prueba para ver que todo este bien.
Bueno, espero que sea de utilidad este post.
Sl2
Romny