Tagged Questions
The channelfactory tag has no wiki summary.
22
votes
5answers
8k views
WCF ChannelFactory vs generating proxy
Just wondering under what circumstances would you prefer to generate a proxy from a WCF service when you can just invoke calls using the ChannelFactory?
This way you wont have to generate a proxy and ...
8
votes
3answers
4k views
creating WCF ChannelFactory<T>
I'm trying to convert an existing .NET Remoting application to WCF. Both server and client share common interface and all objects are server-activated objects. In WCF world, this would be similar to ...
8
votes
3answers
3k views
Creating a singleton ChannelFactory<T> and reusing for client connections
In our SharePoint/ASP.NET environment we have a series of data retriever classes that all derive from a common interface. I was assigned the task of creating a data retriever that could communicate ...
8
votes
3answers
5k views
ChannelFactory.Close VS IClientChannel.Close
Consider the following code which is typcial of many ChannelFactory examples:
WSHttpBinding myBinding = new WSHttpBinding();
EndpointAddress myEndpoint = new EndpointAddress(
...
5
votes
1answer
59 views
ChannelFactory Maximum Connection Pool
I am creating a testing tool to stress load a server. I create many different threads that send seperate requests to the server. It appears to be limited by the ChannelFactory. It bottlenecks on ...
5
votes
2answers
621 views
WCF ChannelFactory State Property
What does it mean for a ChannelFactory to have a State property? I understand that a created channel can have connection based states. But am confused as to why the ChannelFactory also has such ...
5
votes
1answer
4k views
WCF, ChannelFactory, “Could not find endpoint element…”
I'm trying to call a WCF service from within another service, in part using an example I found here on StackOverflow which implements ChannelFactory.
I've created a separate console app project ...
4
votes
1answer
256 views
How to fire an event (client side) when I call a WCF service
I'd like to fire an event every time I call a WCF service.
I've tried the following:
var factory = new ChannelFactory<TService>(binding, endPointAdress);
factory.Credentials.UserName.UserName ...
4
votes
1answer
416 views
Mocking generic WCF ClientChannelWrapper async calls
I recently developed a Silverlight application which uses Mark J Millers ClientChannelWrapper to communicate with the WCF service layer (effectively killing the service reference and wrapping ...
4
votes
5answers
2k views
Getting error detail from WCF REST
I have a REST service consumed by a .Net WCF client.
When an error is encountered the REST service returns an HTTP 400 Bad Request with the response body containing JSON serialised details.
If I ...
4
votes
2answers
1k views
WCF: Direct Channel usage vs using a Proxy?
As the title implies I am trying to get an understanding of why in WCF sometimes people choose to "generate proxies" vs using a ChannelFactory to manually create new channel instances. I have seen ...
3
votes
3answers
195 views
C# WCF closing channels and using functions Func<T>
This is the point, I have a WCF service, it is working now. So I begin to work on the client side. And when the application was running, then an exception showed up: timeout. So I began to read, there ...
3
votes
3answers
157 views
WCF Serialization and Caching
I have a WCF service hosted in a console application. and I have a ChannelFactory to call WCF's operation Contracts.
Problem: whenever I call an operation that returns values, it seems that the ...
3
votes
1answer
179 views
Alternative to service reference
I am trying to assist one project team to streamline their work by fixing some of the pain points.
One of the pain points they have in their code is that, they are using WCF service via service ...
3
votes
2answers
308 views
WCF - How to hold on to the Channel/Proxy between Begin and End call
I'm attempting to use the ChannelFactory to call an asynchronous service.
The bit I'm unsure of is how to best hold on to the reference to the channel - between the call to BeginSave and then EndSave ...
3
votes
1answer
467 views
How to consume WCF services without svcutil.exe?
I have found 2 ways of consuming a WCF service without the help from svcutil.exe:
ClientBase<IService>
ChannelFactory<IService>
I know that ClientBase probably uses ChannelFactory. But ...
3
votes
1answer
466 views
WCF/WPF best practice - WCF ChannelFactory and PRISM
I'm new to the PRISM framework so my question may be a bit off topic.
I've established a WCF service composed of two projects.
The WCF .svc and Web.config project just contains the service ...
3
votes
4answers
310 views
WCF: How to diagnose faulted channels?
I'm working on shipping in a change for my lab that will hopefully help diagnose some weird channel-faulting weirdness we're seeing. There's a test application that uses DuplexChannelFactory to ...
3
votes
1answer
518 views
WCF: Comparisons between not closing ChannelFactory vs. constantly recreating the ChannelFactory and closing it
I have a WCF service that I consume in my code and generated as a ChannelFactory class. I know that the proper way to consume the WCF is to create the ChannelFactory (let's call this AwesomeClient), ...
3
votes
4answers
500 views
WCF ChannelFactory against SOA principles?
Is sharing a project containing the wcf interface and datacontracts and using these via ChannelFactory to consume the service against SOA principles?
My architect is advising that generating a proxy ...
3
votes
1answer
2k views
WCF ChannelFactory caching
I've just read this great article on WCF ChannelFactory caching by Wenlong Dong.
My question is simply how can you actually prove that the ChannelFactory is in fact being cached between calls? I've ...
3
votes
4answers
6k views
WCF Error : Manual addressing is enabled on this factory, so all messages sent must be pre-addressed
First off, I'd like to thank those who have helped me out with this WCF connectivity, as it's fairly new to me.
I've got a hosted WCF service that I created a custom factory for, so that this would ...
3
votes
2answers
6k views
The Address property on ChannelFactory.Endpoint was null. The ChannelFactory's Endpoint must have a valid Address specified
I am getting the following error and I am not sure what I am doing wrong. Does anybody see anything obvious? Below are my project's Web.config and my WCF class library's App.config
The Address ...
2
votes
1answer
288 views
Calling a SOAP service via a ChannelFactory without using the WSDL
I am calling a SOAP service via a ChannelFactory without using the WSDL. I will be consuming multiple versions of this service and i'm trying to avoid having multiple versions of the WSDL in my ...
2
votes
0answers
991 views
close vs abort ChannelFactory WCF
Two common problems in WCF that many people face is the impossibility of loading the client configuration from different configuration files and Close vs Abort issue.
1.)
This is a common scenario ...
2
votes
2answers
2k views
ChannelFactory Credentials + object is read only
Greetings, what is the problem that when I try to set credentials for my factory as follows:
ChannelFactory<IWCFSeekService> factory = Factory;
if (factory != null)
{
...
2
votes
1answer
570 views
Caching WCF Proxy?
I am trying to use Channel Factory and caching it in my asp.net mvc.
I am using PerSession Instance mode as I need to know the state.
Because of this I cannot close the proxy immediately. And I dont ...
2
votes
2answers
4k views
WCF ChannelFactory and Channel caching in ASP.NET client application
I´m building a series of WCF Services that are going to be used by more than one application. Because of that I´m trying to define a common library to access WCF services.
Knowing that each service ...
2
votes
2answers
8k views
WCF Consumer Website returning The Address property on ChannelFactory.Endpoint was null. The ChannelFactory's Endpoint must have a valid Address specified
I've got a simple WCF service that works great on localhost - consumed by another local website and is returning data.
Now I upload my service to our host, changing the appropriate addresses in the ...
2
votes
1answer
5k views
WCF: The request for security token could not be satisfied because authentication failed
I have two WCF services on the same machine. One is the publisher and one is the listener.
The Publisher is dynamically creating proxies based upon and endpoint. I am configuring the proxy in code ...
2
votes
1answer
1k views
ChannelFactory Reuse Strategies
I've been reading that ChannelFactory creation is expensive and that unless there is a technical reason not to, one should reuse ChannelFactories when possible either by caching them someway, or by ...
2
votes
2answers
1k views
WCF Exceptions thrown by ChannelFactory
I'm connecting to a service and using a Channel created by ChannelFactory. I would like to know what exceptions can be thrown while invoking service interface's methods (for example if there is a ...
1
vote
2answers
252 views
WCF Channel and ChannelFactory Caching
So I've decided to up the performance a bit in my WCF application, and attempt to cache Channels and the ChannelFactory. There's two questions I have about all of this that I need to clear up before I ...
1
vote
2answers
116 views
Using ChannelFactory<T> To Create Channels with Different Credentials
I am using the ChannelFactory<T> type to create channels into a WsHttpBinding WCF web service, and the service uses a username/password combination to authenticate. While I have the ...
1
vote
2answers
194 views
Create custom channefactory for dynamically calling workflows
I need to create a custome channel factory for calling WCF Wrokflow services hosted in the IIS. At runtime only i will be able to know which workflow should be called and which method need to be ...
1
vote
2answers
432 views
Create new ChannelFactory<T> when Faulted
What would be the most reliable way of recreating a ChannelFactory<T> in a thread safe manner when it enters a faulted state? This scenario has expected concurrency (let's say 50 concurrent ...
1
vote
2answers
189 views
WCF F# - Handling Service Shutdown Gracefully on Client
I have some experimental code basically just trying to make a simple scenario work. I have one client that is streaming data to multiple services. The problem I have is that if one of the services ...
1
vote
1answer
1k views
Error message: The request for security token could not be satisfied because authentication failed
I am trying to access a WCF service (MS CRM 2011) and getting the above error. If I run my sample program from the VS2010 debugger with either Cassini or IIS Express it works great. No ...
1
vote
1answer
204 views
Exposing Service References Dynamically Between WCF & Silverlight
For days i have been banging my head against a brick wall, trying to work out a problem that i am having with WCF Services and Silverlight.
My problem is that i have 5 Silverlight Project modules ...
1
vote
1answer
182 views
WCF - factories and channel objects - how to create for better performance
I just want to make sure I'm following the right approach. In my application for particular service I have one static ChannelFactory (as it's instance thread safe), and every time I need to comunicate ...
1
vote
0answers
435 views
MonoTouch WCF REST Error Creating Channel
I'm trying to access WCF REST services via MonoTouch. I am unable to use a ChannelFactory, as dynamic code generation is not possible in MonoTouch, and because I'm accessing RESTful services, I'm also ...
1
vote
1answer
309 views
Does generated WCF service client in Silverlight re-use the ChannelFactory?
Should one use the generated WCF service client (e.g. MyServiceClient) when invoking a WCF service from silverlight, or instead use the ChannelFactory (e.g. ChannelFactory.Create())?
Other questions ...
1
vote
1answer
401 views
Manual WCF and ChannelFactory
I am just getting started with WCF and am using an older article posted by Miguel A. Castro called WCF the Manual Way. In the article he mentions using the ChannelFactory to create a service proxy. ...
1
vote
1answer
498 views
how to add a certificate to WCF ChannelFactory?
I need a simple WCF sample code or tutorial or a link that shows the steps on how to add a certificate to ChannelFactory?
1
vote
2answers
418 views
Retry mechanism on WCF operation call when channel in fautled state
I'm trying to find an elegant way to retry an operation when a WCF channel is in faulted state. I've tried using the Policy Injection AB to reconnect and retry the operation when a faulted state ...
1
vote
1answer
184 views
Changing client credentials after WCF channel creation
The system we've built allows for a user to change their password after a WCF channel has been created - is there a way to change the credentials being sent through to the server without having to ...
1
vote
1answer
496 views
Sending Cookies over WCF using the ChannelFactory
I use an IOC container which provides me with IService.
In the case where IService is a WCF service it is provided by a channel factory
When IService lives on the same machine it is able to access the ...
1
vote
1answer
256 views
Communicate with a REST service inside a REST service
i use the following code to communicate with a REST service:
[ServiceContract()]
interface ISomeService
{
[OperationContract()]
[WebGet()]
bool DoSomething();
}
WebHttpBinding binding = ...
1
vote
1answer
703 views
Channel Factory in WCF
Hi all i am new to WCF i wanted to know if i use channel factory and if i make any changes in service contract whether the changes will be updated automatically in the client system or not???If the ...
1
vote
0answers
87 views
When should I open and close a website's cached WCF proxy?
I've browsed around the other articles on StackOverflow that relate to caching WCF proxies for reuse, and I've read this article explaining why I should explicitly open the proxy before calling ...