简体   繁体   中英

How to host a WCF Service in a reference DLL via an MVC Website?

I hope that title is clear enough.

I have 2 projects, MyProject.Website (ASP.NET MVC3 Front End) and MyProject.WcfService. When i host the website, i'd rather not have to host two websites inside of IIS, i'd like to be able to host just MyProject.Website and inside of that reference MyProject.WcfService.

I know i can do this via ServiceHost, which should work, but is there a better way?

Check this post where i demostrated how you can host wcf service dll

Create, Host(Self Hosting, IIS hosting) and Consume WCF servcie

IIS hosting

  1. To host same WCF library in your application create WCF Web application project using WCF web application.
  2. Delete the files created in the IService.cs and Service.cs file from App_Code folder
  3. Include WCF library *.dll file which we created.
  4. Open Service.svc file and modify the single line in it

    -- <%@ ServiceHost Language="C#" Debug="true" Service="WcfServiceLibrary.Service1" %>

  5. Change the web service WEB.Config file to to expose service to client. ie you need to create Same element as listed above in in the app.config file of service library.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM