Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7604619
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T23:57:32+00:00 2026-05-30T23:57:32+00:00

How do you use the Windsor-Castle WCFFacility with the WCF 4.0 REST services ?

  • 0

How do you use the Windsor-Castle WCFFacility with the WCF 4.0 REST services ?

How you you make the link to the factory, when you don’t have the .svc file anymore?

TIA

Søren

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-30T23:57:33+00:00Added an answer on May 30, 2026 at 11:57 pm

    Using Windsor 3.0 this is pretty straightforward (if I have understood your question correctly, my apologies if I am missing something).

    The simplest thing to do to show you is to create a console application and make sure you are referencing:

    • Castle.Core
    • Castle.Windsor
    • Castle.Facilities.WcfIntegration
    • System.ServiceModel
    • System.ServiceModel.Web
    • System.Runtime.Serialization

    Now define a RESTful service like this:

    [DataContract]
    public class Frob
    {
        [DataMember]
        public string Name { get; set; }
    
        [DataMember]
        public string Fribble { get; set; }
    }   
    
    [ServiceContract]
    public interface IFrobService
    {
        [OperationContract]
        [WebGet(UriTemplate = "/")]
        IEnumerable<Frob> GetAllFrobs();
    
        [OperationContract]
        [WebGet(UriTemplate = "/{name}")]
        Frob GetFrobByName(string name);
    }
    
    public class FrobService : IFrobService
    {
        private readonly List<Frob> _frobs
            = new List<Frob>
                  {
                      new Frob {Name = "Foob", Fribble = "Soop"},
                      new Frob {Name = "Hoob", Fribble = "Soop"},
                      new Frob {Name = "Doob", Fribble = "Noop"}
                  };
    
        public IEnumerable<Frob> GetAllFrobs()
        {
            return _frobs;
        }
    
        public Frob GetFrobByName(string name)
        {
            return _frobs
                .FirstOrDefault(f =>
                                f.Name.Equals(name,
                                              StringComparison.OrdinalIgnoreCase));
        }
    }
    

    Now you have that you can hook up that service into the windsor container like so (and since it is a console application, I will just show you the main method):

    public static class Program
    {
        static void Main()
        {            
            var container = new WindsorContainer();
    
            container
                .AddFacility<WcfFacility>(f => f.CloseTimeout = TimeSpan.Zero)
                .Register(Component.For<IFrobService>()
                              .ImplementedBy<FrobService>()
                              .AsWcfService(new RestServiceModel("http://localhost/frobs")));
    
            Console.ReadKey();
        }
    }
    

    And that is a WCF REST service hosted by Castle Windsor.

    Pointing a browser at: “http://localhost/frobs” will get you all the frobs and pointing a browser at, say, “http://localhost/frobs/Doob” will get you the frob called Doob, you get the idea…

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

is it possible to use Castle Windsor with WCF services ? I tried to
I have created an ASP.NET MVC application and am trying to use Castle Windsor
I have a client-server application, which intercommunicate via WCF. They also both use Castle
I use Castle Windsor as my IoC container . I have an application that
I would like to use Castle Windsor 2.0 as the inversion of control container
I'm using Castle Windsor and Binsor to use dependency injection in my application. I'm
I use Castle Windsor in a couple of web apps just fine by putting
I'm trying to use Castle Windsor to create my message handlers because just using
I am trying to use Castle Windsor with MS Test. The test class only
Hi I am attempting to use Castle windsor Nhibernate Facility with fluent Nhibernate and

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.