Bonjour,
je suis en train de développer un service WCF pour l'accès à mes données via une couche NHibernate. Pour ce faire j'utilise une factory pour la création de mes services. Jusque la rien de spéciale, or après un réaménagement des services, je n'arrive plus à appelé une seul méthode de mon service depuis mon application de test.

J'arrive à attendre mon service et à l'inscrire mais toute invocation de méthode revoie l'exception :

Une exception a été levée par l'initialisateur de type pour 'MyApp.Utilitaires.Services.ServiceProviderSupervisor'.

Server stack trace:
à System.ServiceModel.Channels.ServiceChannel.ThrowIfFaultUnderstood(Message reply, MessageFault fault, String action, MessageVersion version, FaultConverter faultConverter)
à System.ServiceModel.Channels.ServiceChannel.HandleReply(ProxyOperationRuntime operation, ProxyRpc& rpc)
à System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs, TimeSpan timeout)
à System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs)
à System.ServiceModel.Channels.ServiceChannelProxy.InvokeService(IMethodCallMessage methodCall, ProxyOperationRuntime operation)
à System.ServiceModel.Channels.ServiceChannelProxy.Invoke(IMessage message)

Exception rethrown at [0]:
à System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg)
à System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type)
à ITest.ExecuteSQL(String sql)
à TestClient.ExecuteSQL(String sql)
Quelqu'un a t il une idée sur l'origine et ou la solution du problème ?