Ian Ringrose
Ian Ringrose

Reputation: 51897

How do I pass values to the constructor on my wcf service?

I would like to pass values into the constructor on the class that implements my service.

However ServiceHost only lets me pass in the name of the type to create, not what arguments to pass to its contrstructor.

I would like to be able to pass in a factory that creates my service object.

What I have found so far:

Upvotes: 107

Views: 61430

Answers (10)

Jac Goudsmit
Jac Goudsmit

Reputation: 111

Another option: Store the data in the ServiceHost instead.

I tried various solutions suggested here, but I realized that if the data that you need to pass to your service instance is the same for all instances (as it is in the examples above), you might as well store that data in a subclass of ServiceHost instead of in your service class, and access the data via OperationContext.Current.Host.

Here's an example that implements a generic custom service host class that takes a single item at construction time.

public class CustomServiceHost<CustomDataType> : ServiceHost
{
    public readonly CustomDataType CustomData;

    public CustomServiceHost(
        CustomDataType customData,
        Type serviceType,
        params Uri[] baseAddresses)
    : base(serviceType, baseAddresses)
    {
        CustomData = customData;
    }

    /// <summary>
    /// Get the host data from the host that belongs to the current session.
    /// </summary>
    /// <remarks>
    /// Notice that the "as" operator will return null if the
    /// actual type of the host custom data doesn't match
    /// and the attempt at accessing the custom data will
    /// cause a null reference exception. Dealing with this
    /// is left as an exercise for the reader. :-)
    /// <remarks>
    public static CustomDataType MyHostData()
        => (OperationContext.Current.Host as CustomServiceHost<CustomDataType>).CustomData;
}

Partial example of a service using the above custom service host:

[ServiceContract(SessionMode = SessionMode.Required)]
public interface IMyService
{
    // ...
}

[ServiceBehavior(InstanceContextMode = InstanceContextMode.PerSession)]
public class MyService : IMyService
{
    /// <summary>
    /// Parameter-less constructor required by WCF
    /// <summary>
    public MyService()
    {
        // Retrieve the custom data passed to the host constructor
        // Note: The generic type (in this case string) must match
        // the actual type that was used to create this service's
        // host, otherwise a null reference exception will occur
        var hostData = CustomServiceHost<string>.GetMyHostData();

        Console.WriteLn($"{hostData}}");
    }
}

public MyApplication
{
    private readonly Binding _binding; // Initialization omitted

    private readonly Uri _bindAddress; // Initialization omitted

    public ServiceEndpoint SetupEndpoint<CustomDataType>(
        CustomDataType customData,
        Type serviceType,
        Type implementedContract,
        string address)
    {
        ServiceEndpoint result;
        
        var serviceHost = new CustomServiceHost<CustomDataType>(
            customData, serviceType, _bindAddress);

        result = serviceHost.AddServiceEndpoint(
            implementedContract, _binding, address);
    
        serviceHost.Open();

        return result;
    }

    public static int Main(string[] args)
    {
        // ...

        // Clients that connect to the endpoint with URI ending in
        // "myservice1" will get a service instance that sees
        // "Hello from endpoint 1" as custom data in its host.
        // Note that the C# container automatically infers
        // string as the generic type of the first parameter.
        var stringEndpoint1 = SetupEndpoint(
            "Hello from endpoint 1", typeof(MyService), typeof(IMyService), "myservice1");

        // Clients that connect to the endpoint with URI ending in
        // "myservice2" will get a service instance that sees
        // "Hello from endpoint 2" as custom data in its host.
        var stringEndpoint2 = SetupEndpoint(
            "Hello from endpoint 2", typeof(MyService), typeof(IMyService), "myservice2");

        // ...
    }
}

Upvotes: 1

codeMonkey
codeMonkey

Reputation: 4805

Create your instanced service with its dependencies (let's call it myService), then open up your ServiceHost like so:

var myService = new Service(argumentOne, argumentTwo, . . . etc.);
var host = new WebServiceHost(myService, new Uri("http://localhost:80"));
var behavior = host.Description.Behaviors.Find<ServiceBehaviorAttribute>();
behavior.InstanceContextMode = InstanceContextMode.Single;
host.Open();

Upvotes: 0

Ronnie Overby
Ronnie Overby

Reputation: 46460

Screw it… I blended the dependency injection and service locator patterns (but mostly it's still dependency injection and it even takes place in the constructor which means you can have read-only state).

public class MyService : IMyService
{
    private readonly Dependencies _dependencies;

    // set this before creating service host. this can use your IOC container or whatever.
    // if you don't like the mutability shown here (IoC containers are usually immutable after being configured)
    // you can use some sort of write-once object
    // or more advanced approach like authenticated access
    public static Func<Dependencies> GetDependencies { get; set; }     
    public class Dependencies
    {
        // whatever your service needs here.
        public Thing1 Thing1 {get;}
        public Thing2 Thing2 {get;}

        public Dependencies(Thing1 thing1, Thing2 thing2)
        {
            Thing1 = thing1;
            Thing2 = thing2;
        }
    }

    public MyService ()
    {
        _dependencies = GetDependencies(); // this will blow up at run time in the exact same way your IoC container will if it hasn't been properly configured up front. NO DIFFERENCE
    }
}

The dependencies of the service are clearly specified in the contract of it's nested Dependencies class. If you are using an IoC container (one that doesn't already fix the WCF mess for you), you can configure it to create the Dependencies instance instead of the service. This way you get the warm fuzzy feeling that your container gives you while also not having to jump through too many hoops imposed by WCF.

I'm not going to lose any sleep over this approach. Neither should anyone else. After all, you're IoC container is a big, fat, static collection of delegates that creates stuff for you. What's adding one more?

Upvotes: 4

Mark Seemann
Mark Seemann

Reputation: 233125

You'll need to implement a combination of custom ServiceHostFactory, ServiceHost and IInstanceProvider.

Given a service with this constructor signature:

public MyService(IDependency dep)

Here's an example that can spin up MyService:

public class MyServiceHostFactory : ServiceHostFactory
{
    private readonly IDependency dep;

    public MyServiceHostFactory()
    {
        this.dep = new MyClass();
    }

    protected override ServiceHost CreateServiceHost(Type serviceType,
        Uri[] baseAddresses)
    {
        return new MyServiceHost(this.dep, serviceType, baseAddresses);
    }
}

public class MyServiceHost : ServiceHost
{
    public MyServiceHost(IDependency dep, Type serviceType, params Uri[] baseAddresses)
        : base(serviceType, baseAddresses)
    {
        if (dep == null)
        {
            throw new ArgumentNullException("dep");
        }

        foreach (var cd in this.ImplementedContracts.Values)
        {
            cd.Behaviors.Add(new MyInstanceProvider(dep));
        }
    }
}

public class MyInstanceProvider : IInstanceProvider, IContractBehavior
{
    private readonly IDependency dep;

    public MyInstanceProvider(IDependency dep)
    {
        if (dep == null)
        {
            throw new ArgumentNullException("dep");
        }

        this.dep = dep;
    }

    #region IInstanceProvider Members

    public object GetInstance(InstanceContext instanceContext, Message message)
    {
        return this.GetInstance(instanceContext);
    }

    public object GetInstance(InstanceContext instanceContext)
    {
        return new MyService(this.dep);
    }

    public void ReleaseInstance(InstanceContext instanceContext, object instance)
    {
        var disposable = instance as IDisposable;
        if (disposable != null)
        {
            disposable.Dispose();
        }
    }

    #endregion

    #region IContractBehavior Members

    public void AddBindingParameters(ContractDescription contractDescription, ServiceEndpoint endpoint, BindingParameterCollection bindingParameters)
    {
    }

    public void ApplyClientBehavior(ContractDescription contractDescription, ServiceEndpoint endpoint, ClientRuntime clientRuntime)
    {
    }

    public void ApplyDispatchBehavior(ContractDescription contractDescription, ServiceEndpoint endpoint, DispatchRuntime dispatchRuntime)
    {
        dispatchRuntime.InstanceProvider = this;
    }

    public void Validate(ContractDescription contractDescription, ServiceEndpoint endpoint)
    {
    }

    #endregion
}

Register MyServiceHostFactory in your MyService.svc file, or use MyServiceHost directly in code for self-hosting scenarios.

You can easily generalize this approach, and in fact some DI Containers have already done this for you (cue: Windsor's WCF Facility).

Upvotes: 127

Eric Dieckman
Eric Dieckman

Reputation: 191

This was a very helpful solution - especially for someone who is a novice WCF coder. I did want to post a little tip for any users who might be using this for an IIS-hosted service. MyServiceHost needs to inherit WebServiceHost, not just ServiceHost.

public class MyServiceHost : WebServiceHost
{
    public MyServiceHost(MyService instance, Type serviceType, params Uri[] baseAddresses)
        : base(instance, baseAddresses)
    {
    }
}

This will create all the necessary bindings, etc for your endpoints in IIS.

Upvotes: 2

kerim
kerim

Reputation: 225

You can simply create and instance of your Service and pass that instance to the ServiceHost object. The only thing you have to do is to add a [ServiceBehaviour] attribute for your service and mark all returned objects with [DataContract] attribute.

Here is a mock up:

namespace Service
{
    [ServiceContract]
    [ServiceBehavior(InstanceContextMode = InstanceContextMode.Single)]
    public class MyService
    {
        private readonly IDependency _dep;

        public MyService(IDependency dep)
        {
            _dep = dep;
        }

        public MyDataObject GetData()
        {
            return _dep.GetData();
        }
    }

    [DataContract]
    public class MyDataObject
    {
        public MyDataObject(string name)
        {
            Name = name;
        }

        public string Name { get; private set; }
    }

    public interface IDependency
    {
        MyDataObject GetData();
    }
}

and the usage:

var dep = new Dependecy();
var myService = new MyService(dep);
var host = new ServiceHost(myService);

host.Open();

I hope this will make life easier for someone.

Upvotes: 15

Ron Deijkers
Ron Deijkers

Reputation: 3091

We were facing this same problem and have solved it in the following manner. It is a simple solution.

In Visual Studio just create a normal WCF service application and remove it's interface. Leave the .cs file in place (just rename it) and open that cs file and replace the name of the interface with your original class name which implements the service logic (this way the service class uses inheritance and replaces your actual implementation). Add a default constructor that calls the base class's constructors, like this:

public class Service1 : MyLogicNamespace.MyService
{
    public Service1() : base(new MyDependency1(), new MyDependency2()) {}
}

The MyService base class is the actual implementation of the service. This base class should not have a parameterless constructor, but only constructors with parameters that accept the dependencies.

The service should use this class instead of the original MyService.

It's a simple solution and works like a charm :-D

Upvotes: 0

Boris
Boris

Reputation: 13

I use static variables of my type. Not sure if this is the best way, but it works for me:

public class MyServer
{   
    public static string CustomerDisplayName;
    ...
}

When I instantiate service host I do the following:

protected override void OnStart(string[] args)
{
    MyServer.CustomerDisplayName = "Test customer";

    ...

    selfHost = new ServiceHost(typeof(MyServer), baseAddress);

    ....
}

Upvotes: -2

McGarnagle
McGarnagle

Reputation: 102723

I worked from Mark's answer, but (for my scenario at least), it was needlessly complex. One of the ServiceHost constructors accepts an instance of the service, which you can pass in directly from the ServiceHostFactory implementation.

To piggyback off Mark's example, it would look like this:

public class MyServiceHostFactory : ServiceHostFactory
{
    private readonly IDependency _dep;

    public MyServiceHostFactory()
    {
        _dep = new MyClass();
    }

    protected override ServiceHost CreateServiceHost(Type serviceType,
        Uri[] baseAddresses)
    {
        var instance = new MyService(_dep);
        return new MyServiceHost(instance, serviceType, baseAddresses);
    }
}

public class MyServiceHost : ServiceHost
{
    public MyServiceHost(MyService instance, Type serviceType, params Uri[] baseAddresses)
        : base(instance, baseAddresses)
    {
    }
}

Upvotes: 5

dalo
dalo

Reputation: 458

Mark's answer with the IInstanceProvider is correct.

Instead of using the custom ServiceHostFactory you could also use a custom attribute (say MyInstanceProviderBehaviorAttribute). Derive it from Attribute, make it implement IServiceBehavior and implement the IServiceBehavior.ApplyDispatchBehavior method like

// YourInstanceProvider implements IInstanceProvider
var instanceProvider = new YourInstanceProvider(<yourargs>);

foreach (ChannelDispatcher dispatcher in serviceHostBase.ChannelDispatchers)
{
    foreach (var epDispatcher in dispatcher.Endpoints)
    {
        // this registers your custom IInstanceProvider
        epDispatcher.DispatchRuntime.InstanceProvider = instanceProvider;
    }
}

Then, apply the attribute to your service implementation class

[ServiceBehavior]
[MyInstanceProviderBehavior(<params as you want>)]
public class MyService : IMyContract

The third option: you can also apply a service behavior using the configuration file.

Upvotes: 11

Related Questions