The WCF Facility allows for the use of the Windsor container for WCF Services.
0
votes
1answer
18 views
IWcfPolicy - add message headers on the fly
Is it somehow possible to add header info (or querystrings) to a wcf request on the fly?
I've been messing around a bit with the IWcfPolicy like this:
var xmlObjectSerializer = new ...
0
votes
1answer
107 views
Castle Windsor WCF Facility doesn't work in release mode when code optimizations or full-pdb are disabled
I develop a project that uses Castle Windsor WCF Integration Facility as DDD architecture. There are a single container project, single domain project, several implementation projects and an ...
1
vote
2answers
92 views
how to resolve a proxy class in Castle Windsor
I have a WCF service that I'm trying to resolve using Castle Windsor. The registration used to look like this:
container.Register(Component.For<IBatchDataService>()
.AsWcfClient(WCFEndpoint
...
0
votes
1answer
91 views
Error resolving service using Windsor (3.2.0.0) WcfFacility in ASP.NET MVC3
Still finding my way with Castle.Windsor and the WcfFacility, but this ones got my head scratching. I'm want Windsor to inject the WCF client where it sees that dependency in my repository.
I've ...
0
votes
1answer
64 views
Providing both WS/Rest endpoints for hosted services using WCFFacility
We are using WCFFacility to setup services from hosted (IIS 7.5) environment.
What we need is to provide two endpoints for each service, WSHttp for .NET clients and WebHttp for everyone else. Is this ...
0
votes
1answer
26 views
Using the IChannelActionPolicy to build a ChannelReconnectOnTimeoutPolicy
I'm trying to recreate the sample provided on the castle windsor wiki about channel action policies (found here: http://docs.castleproject.org/Windsor.WCF-Facility-Channel-Action-Policy.ashx ) but i ...
0
votes
0answers
65 views
WCF proxy injected using Castle Windsor
I have tried to use Castle Windsor to simply inject an instance of a proxy into my MVC 3 controller but coming to a few things I don't understand. My questions are...
When I use the proxy I need to ...
0
votes
1answer
108 views
Lazy load and Session Closed with NHibernate while using Windsor WCF Facility
i running into this situation. I see many developers here are facing similar scenarios but there are still a couple of details i would like to point out.
I have the typical situation where i have a ...
0
votes
0answers
46 views
Unable to detect unresolved dependencies using Castle Windsor's WCF Facility
I'm building a Windows Service that hosts a few WCF services. I'm using Castle Windsor + the WCF facility as DI container in order to resolve the dependencies that are required by these services.
If ...
1
vote
1answer
115 views
NHibernate and WCF Facility working together. Rhino Common Nhrepository outdated?
I have been looking for a good example of WCF and NHibernate facilities working together, (one session per web request, etc) but all the tutorials i find are dated 2009 and older. I am afraid i may ...
0
votes
1answer
81 views
Castle Windsor WcfFacility error. forgot to register component?
I am trying to get Castle Windsor to create my WCF using WcfFacility. I followed this tutorial. http://www.codeproject.com/Articles/426770/Dependency-Injection-in-WCF-using-Castle-Windsor but it ...
3
votes
2answers
143 views
Castle WCF Facility, Use of generic interface for non generic contract
I tried to minimize writing of code for WCF CRUD part of big project with use of generics and castle WCF facility.
I have WCF service contract:
[ServiceContract]
public interface IResourceService : ...
1
vote
0answers
99 views
Hosting service using castle windsor wcffacility
I have a basic Contracts project:
[ServiceContract]
public interface IEchoService
{
[OperationContract]
string GetUpper(string text);
[OperationContract]
string GetLower(string text);
...
0
votes
1answer
126 views
How to get WcfFacility and Wcf global exception handling working?
I have deployed my service and attached visual studio to the process to debug in one viusal studio instance, and in another I have a client console test application that I run in debug mode, I can see ...
0
votes
1answer
141 views
WcfFacility and Sequence contains no elements error?
I have wcf library with service contracts and implementations.
[ServiceContract]
public interface IServiceProtoType
{
[OperationContract]
Response GetMessage(Request ...
0
votes
0answers
193 views
Where to register AsWcfService with Castle WcfFacility and a windows service?
I have my service interfaces and implementations in a single WCF library.
I than have a windows service project that references my WCF library.
I am confused whether to register in Program.Main or ...
1
vote
1answer
370 views
Castle WCF Integration Facility
I’m trying to use Castle WCF integration facility in my project. I followed instructions from the castle official site http://docs.castleproject.org/Windsor.WCF-Facility-Registration.ashx
But I ...
1
vote
1answer
470 views
Using the Windsor NHibernateFacility in a Wcf Service with a custom service behavior for creating transactions instead of the Transaction attribute
I am trying to use the Windsor NHibernate Facility for the first time in a Wcf service and replace the current manual registration of NHibernate so that there can be a consistent approach across all ...
0
votes
0answers
162 views
How to use Windsor WCF facility client in different classes?
I have some questions around using the Wcf facility functionality that Windsor offers me. Most of the posts and sample solutions either uses a default constructor injection where the web service ...
0
votes
1answer
98 views
Windsor WCF facility and typed factories
My question has to do with the WCF and typed factory facilities that is provided by Windsor. I am quite new to the IoC container concepts and especially facilities but started looking into it after ...
1
vote
1answer
586 views
Using PerWcfSession lifestyle with Castle WCF Integration Facility
The following code uses the Castle Windsor 3.0's WCF Integration Facility to register a WCF self-hosted service:
using System;
using System.Collections.Generic;
using System.Linq;
using ...
6
votes
1answer
204 views
Release policy for WcfService proxy dependency in object having PerWebRequest lifestyle
If I have a PerWebRequest object that has a wcf proxy dependency with a PerThread lifestyle, will the container
a) use the same proxy instance after the container auto-releases the
parent object?
b) ...
0
votes
1answer
451 views
Castle WCF Facility | Windows Service Hosting
I’m trying to use Castle WCF integration facility in my WCF project, but got lost in the way. Can you please help me out?
So, here is the situation:
I have a WCF Service Library, which is hosted ...
0
votes
1answer
173 views
WCF Attribute injection using an IOC Container
Using ASP.NET MVC I am able to replace the FilterProvider as so
var oldProvider = FilterProviders.Providers.Single(f => f is FilterAttributeFilterProvider);
...
1
vote
0answers
200 views
Adding Operation Behaviors with WCF Facility
I'm using the WCF Facility for the first time to host a couple
services, both in a console app (for easy debugging) and IIS (for
production). The services use a net.msmq endpoint.
This is how I'm ...
0
votes
1answer
496 views
registring a wcf service with Castle Windsor
I have a very simple service which works fine when not using Castle (which shows that the other codes are correct).
I changed my svc file to the following:
<%@ ServiceHost ...
3
votes
1answer
2k views
Using Castle Windsor WcfFacility to create client endpoints
I have created three assemblies. A web site, a WCF service and a contracts assembly that holds the interfaces that the services implement. I would like to use Castle Windsor to create the services for ...
1
vote
2answers
535 views
Can I use WcfFacility with WCF Test Client?
I have a WCF Service Library containing a custom ServiceHostFactory derived from DefaultServiceHostFactory. I can't get the test client to use this factory. I just get the "no parameterless ...
2
votes
1answer
718 views
How to host multiple services using one WcfFacility
I'm trying to host multiple services using one WcfFacility and IIS, and I'm seeing some confusing results.
Here is my configuration:
var baseUri = new ...
2
votes
1answer
270 views
Is it Possible to turn on IncludeExceptionDetailInFaults with castle windsor fluent api?
I am getting this exception.
The server was unable to process the request due to an internal error.
For more information about the error, either turn on
IncludeExceptionDetailInFaults (either ...
3
votes
1answer
501 views
How can I register all my services with castle windsor wcf facility
Basicly I can register one service like this.
Container.Register(Component.For<IMyService>()
.AsWcfClient(new DefaultClientModel() {
Endpoint ...
0
votes
2answers
792 views
WcfFacility Sequence contains no elements
I keep getting a Sequence contains no elements error when trying to install my wcf services.
here is the code in my global.asax:
_container = new WindsorContainer();
...
1
vote
1answer
251 views
error resolving WCF service using WCF facility
I keep getting the following error:
Method not found: 'Void Castle.MicroKernel.ComponentActivator.ComponentActivatorException..ctor
this is from the following initialization code in global.asax:
...
0
votes
1answer
121 views
Where I could get Castle WCF facility version for Castle Windsor 2.5.2?
I have researched, but cannot find it anywhere. Nuget package and latest source on GitHub are updated to work with Windsor 3.0.0.
4
votes
1answer
327 views
Do I need svc file to setup Castle Wcf Facility for non-HTTP services
I am confused about the castle wcf facility registration.
I read some blog posts for BasicHttpBinding.
But could not find a clear easy sample to setup a net.tcp setup.
I want to host the service ...
2
votes
0answers
169 views
Castle configuration for Service with callback
Here is my castle config in win forms client
<components>
<component id="TestServiceClient"
type="TcpService.ITestService, TcpService"
...
0
votes
1answer
140 views
Proper error messages on registering wcf client components in Castle Windsor
I'm trying to get an error message when I try to register a component in Castle Windsor that points to WCF Service that has errors in the configuration. For registering the component I'm using:
...
4
votes
2answers
964 views
Best way to host WCF services for SOA web application
I'm developing a website which attempts to utilise the SOA pattern. The servcices service both the main web app as well as an HTML5 mobile app and native iPhone and Android apps through the use of a ...
1
vote
1answer
195 views
WCFFacility and WVF 4.0 REST
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
0
votes
1answer
253 views
How do I avoid version conflicts using NServiceBus with Castle Windsor WcfFacility?
It appears the NServiceBus is built against Castle Windsor 2.0.0.0, whilst the WcfFacility needs to be built against 2.5.2.
Is there any way I can run both NServiceBus and the WcfFacility in the same ...
0
votes
1answer
127 views
Windsor Facility Error
Everytime I try to add a facility to my Windsor container instance, I see the following exception:
Derived method 'Dispose' in type 'Castle.Facilities.WcfIntegration.WcfFacility' from assembly ...
0
votes
2answers
402 views
Wcf Service PerCall WcfFacility
how can i get the WcfFacility to make my service Per call, I have tried
Component.For<IService1>().ImplementedBy<Service1>().AsWcfService(new ...
0
votes
2answers
1k views
Wcf Castle Windsor
I am using the Wcf Facility, (windsor 2.5.2) latest version from github repo as of last week.
how ever it is not working throwing the following error (when the service starts up)
Could not find ...
5
votes
2answers
684 views
ravendb, castle IoC ,Wcf facility - doc session liefstyle
What's the recommended lifestyle for raven doc session and store under a windsor ioc, wcf facility setup hosted in IIS?
I keep seeing this error:
Error TempPathInUse (JET_errTempPathInUse, Temp path ...
3
votes
2answers
886 views
Using Windsor Castle and WcfFacility to create WCF proxies with Message Security and username credentials
OK we are using message security with username credentials (and X509 certificate encryption) to communicate with our WCF service. I am not happy with this approach but that is not the point of ...
8
votes
1answer
448 views
Occasional error on production server: Method <name> is not supported on this proxy
One of 4 production servers once in a while generates tons of error claiming:
Method RunRules is not supported on this proxy, this can happen if the method is not marked with ...

