Chuyển đến nội dung chính

Sử dụng Autofac trong WCF service Application

Trong bài viết này, mình sẽ hướng dẫn các bạn tích hợp Autofac vào WCF service Application.
Đầu tiên, bạn tạo 1 project WCF Service Application, giả sử tên là DependencyInjectionInWcfApplication

Cài đặt Autofac:
Install-Package Autofac.Wcf -Version 4.0.0
Sau đó, bạn thêm class ServiceHostFactory. Đây là service dùng để tích hợp phần đăng ký Autofac vào mỗi WCF Service.
public class ServiceHostFactory : AutofacHostFactory
{
 public override ServiceHostBase CreateServiceHost(string constructorString, Uri[] baseAddresses)
 {
  var builder = new ContainerBuilder();
  builder.RegisterType<MessageService>().As<IMessageService>();
  builder.RegisterType<Service1>();
  Container = builder.Build();

  return base.CreateServiceHost(constructorString, baseAddresses);
 }

 protected override ServiceHost CreateSingletonServiceHost(object singletonInstance, Uri[] baseAddresses)
 {
  if (singletonInstance == null)
  {
   throw new ArgumentNullException("singletonInstance");
  }
  if (baseAddresses == null)
  {
   throw new ArgumentNullException("baseAddresses");
  }
  return new ServiceHost(singletonInstance, baseAddresses);
 }
}
Note: Bạn thêm reference: System.ServiceModel.Activation
Trong đoạn code trên, mình đăng ký thêm service IMessageService, đại diện cho service logic
public class MessageService: IMessageService
{
 public MessageService()
 {
  
 }

 public string GetHelloWorld()
 {
  return "Hello World";
 }
}

public interface IMessageService
{
 string GetHelloWorld();
}
Để sử dụng Autofac, bạn cần khai báo trong file Service1.svc
<%@ ServiceHost Language="C#" Debug="true" Service="DependencyInjectionInWcfApplication.Service1, DependencyInjectionInWcfApplication" 
    Factory="DependencyInjectionInWcfApplication.ServiceHostFactory, DependencyInjectionInWcfApplication" CodeBehind="Service1.svc.cs" %>
Lưu ý:
Bạn cần sử dụng đường dẫn chính xác tới file service trong file .svc  vd: "Service="Namespace.ServiceType, AssemblyName".

Trường hợp bạn đặt file ServiceHostFactory vào trong thư mục con, ví dụ như Startup, thì bạn phải khai báo:
<%@ ServiceHost Language="C#" Debug="true" Service="DependencyInjectionInWcfApplication.Service1, DependencyInjectionInWcfApplication" 
    Factory="DependencyInjectionInWcfApplication.Startup.ServiceHostFactory, DependencyInjectionInWcfApplication" CodeBehind="Service1.svc.cs" %>
Sau khi đăng ký Dependency Injection xong, bạn có thể sử dụng trong Service1.cs

public class Service1 : IService1
{
 private readonly IMessageService _messageService;
 public Service1(IMessageService messageService)
 {
  _messageService = messageService;
 }

 public string GetData(int value)
 {
  return string.Format("You entered: {0}", value);
 }

 public CompositeType GetDataUsingDataContract(CompositeType composite)
 {
  if (composite == null)
  {
   throw new ArgumentNullException("composite");
  }
  if (composite.BoolValue)
  {
   composite.StringValue += "Suffix";
  }
  return composite;
 }

 public string GetMessage()
 {
  return _messageService.GetHelloWorld();
 }
}

// NOTE: You can use the "Rename" command on the "Refactor" menu to change the interface name "IService1" in both code and config file together.
[ServiceContract]
public interface IService1
{

 [OperationContract]
 string GetData(int value);

 [OperationContract]
 CompositeType GetDataUsingDataContract(CompositeType composite);

 [OperationContract]
 string GetMessage();
}
Source code: Github

Tham khảo

http://eskurikhin.blogspot.com/2012/08/integrating-autofac-to-iis-hosted-wcf.html
http://jmonkee.net/2011/09/05/autofac-wcfintegration-service-not-registered-with-the-autofac-container/
Chúc các bạn thành công!
 Nhatkyhoctap's blog

Nhận xét

Bài đăng phổ biến từ blog này

[ASP.NET MVC] Authentication và Authorize

Một trong những vấn đề bảo mật cơ bản nhất là đảm bảo những người dùng hợp lệ truy cập vào hệ thống. ASP.NET đưa ra 2 khái niệm: Authentication và Authorize Authentication xác nhận bạn là ai. Ví dụ: Bạn có thể đăng nhập vào hệ thống bằng username và password hoặc bằng ssh. Authorization xác nhận những gì bạn có thể làm. Ví dụ: Bạn được phép truy cập vào website, đăng thông tin lên diễn đàn nhưng bạn không được phép truy cập vào trang mod và admin.

ASP.NET MVC: Cơ bản về Validation

Validation (chứng thực) là một tính năng quan trọng trong ASP.NET MVC và được phát triển trong một thời gian dài. Validation vắng mặt trong phiên bản đầu tiên của asp.net mvc và thật khó để tích hợp 1 framework validation của một bên thứ 3 vì không có khả năng mở rộng. ASP.NET MVC2 đã hỗ trợ framework validation do Microsoft phát triển, tên là Data Annotations. Và trong phiên bản 3, framework validation đã hỗ trợ tốt hơn việc xác thực phía máy khách, và đây là một xu hướng của việc phát triển ứng dụng web ngày nay.

Tổng hợp một số kiến thức lập trình về Amibroker

Giới thiệu về Amibroker Amibroker theo developer Tomasz Janeczko được xây dựng dựa trên ngôn ngữ C. Vì vậy bộ code Amibroker Formula Language sử dụng có syntax khá tương đồng với C, ví dụ như câu lệnh #include để import hay cách gói các object, hàm trong các block {} và kết thúc câu lệnh bằng dấu “;”. AFL trong Amibroker là ngôn ngữ xử lý mảng (an array processing language). Nó hoạt động dựa trên các mảng (các dòng/vector) số liệu, khá giống với cách hoạt động của spreadsheet trên excel.