WCF ChannelFactory class - used to create and manage Channel-s which are used to send and receive Message-s to WCF service endpoints
0
votes
1answer
26 views
WSTrustChannelFactory as a singleton. Is it the best practice?
I'm working with an application that uses WSTrustChannelFactory to create trust channels, I noticed that the code is creating a new WSTrustChannelFactory everytime a new channel is needed.
I've never ...
0
votes
0answers
32 views
Is ChannelFactory with async methods in .NET 4.5 supported?
I'm in the process of converting our WCF services to use async programming. As expected the interface looks like this:
public interface IFoo
{
Task<string> DoSomething(string request);
}
...
0
votes
0answers
52 views
Calling an external service method channel factory client
How would I call a service method using ChannelFactory. Here's my code to create the ChannelFactory:
var b=new CustomBinding();
var ...
0
votes
2answers
32 views
WCF DuplexChannel - Connection Without Callback
I have a WCF Interface which has defined a Callback. This is working very well.
Now I have another Client which don't need the callback. I wanted to know if there is a way to connect to the service ...
5
votes
1answer
131 views
ChannelFactory bug with dynamic arguments
This question is related to Bug in the dynamic language runtime in combination with IIS 7.5
ChannelFactory hangs if I provide it with a correctly typed dynamic object.
dynamic src = "MSFT";
var ...
0
votes
2answers
268 views
Dispose Channel created by WCF ChannelFactory
I'm looking for a clean way to have the ChannelFactory create channels for me with the ability to dispose them after use.
This is what I got:
public class ClientFactory : IClientFactory
{
private ...
6
votes
3answers
130 views
Confusion about WCF Channels
I am confused about the Proxy and Channels. According to my reading, WCF client is using a proxy which pass the message through a chain of channels. Every Channel is responsible of certain task, for ...
0
votes
1answer
138 views
Unit Test WCF using ChannelFactory
I am working on some WCF services and they will be deployed to Azure, so I would like to try to accomplish as many unit tests as I can locally, in order to avoid useless roundtrips to the staging area ...
2
votes
0answers
344 views
WCF ChannelFactory and channels - caching, reusing, closing and recovery
I have the following planned architecture for my WCF client library:
using ChannelFactory instead of svcutil generated proxies because
I need more control and also I want to keep the client in a ...
0
votes
0answers
59 views
How to manually create a ChannelFactory<T> and open it asynchronously
I have a WCF client application that talks to numerous WCF services.
The ChannelFactory(string endpointConfigurationName) constructor takes a lot of time to complete.
Doing so with many services is ...
0
votes
0answers
82 views
Can a ChannelFactory become Faulted?
Let's say i'm caching a ChannelFactory<T> and using it to create channels. These channels are used to make WCF calls to other services, and are then being (safely) disposed.
Do I need to worry ...
1
vote
2answers
1k views
How to apply Task Async Pattern and WCF's ChannelFactory<TChannel>?
We have a robust WCF client built in 2008 on .NET 3.5 (now recompiled under .NET 4.0) that talks to our own WCF service over the net.tcp binding. The robust client uses ...
1
vote
3answers
301 views
Error handling in ChannelFactory vs auto-generated proxies
I have recently started to write my own ChannelFactory wrapper to call my WCF service instead of relying on the auto generated code from visual studio
Previously, with the auto generated proxies, I ...
2
votes
1answer
189 views
WCF ChannelFactory IDuplexSessionChannel
I am using a ChannelFactory to communicate with external services by sending raw soap requests. I have a NetTcp endpoint that uses the IDuplexSessionChannel. I tried creating a ...
2
votes
1answer
130 views
Netty - using the same channelFactory cause only 3 responses to be handled
I was assigned to create an HTTP client based on Netty, but I'm having some difficulties and I hoped there an answer for me.
Well, to use NIO to its full advantage I wanted to use the same ...
0
votes
1answer
145 views
how to close a channel factory correctly?
I would like to know how to close a channelFactory correctly. Actually, I'm using:
try
{
factory.Close(TimeSpan.FromSeconds(0.25))
}
catch
{
factory.Abort();
}
But to the ServiceHost side, ...
0
votes
1answer
40 views
WCF is there a way to retrieve the factory associate to a created channel
I'm using WCF to create a connection beween a server app and client app.
Because I'm using NetTcpBinding, I want to keep alive the channel created by:
T proxy = ...
0
votes
0answers
255 views
WCF channel retrying 5 times when I throw a FaultException
I am creating a WCF client channel using DuplexChannelFactory rather than a generated proxy.
For a particular method, I am throwing a known FaultException<MyFault> on the server side. I have ...
5
votes
2answers
350 views
How does a WCF proxy implement ICommunicationObject if it's methods aren't visible?
How does a WCF channel (created via ChannelFactory) implement ICommunicationObject, but doesn't expose the Close() method, for example, unless you cast the proxy to ICommunicationObject? Does that ...
0
votes
1answer
265 views
Extending WCF-channel to automatically recreate(/reconnect) itself on failure
I'm having hard time with NetTcpBinding and timeouts. I know this could be solved by writing Try-Catch-block around every service call and on failure create a new channel with ChannelFactory and make ...
0
votes
0answers
100 views
WCF p2p: duplexchannel works but normal channel does not
I'm facing a problem where my simple p2p channel does not work but if I simply change it to duplex channel it works.
My original code:
[ServiceContract]
public interface IWorker
{
...
1
vote
1answer
715 views
java.lang.NoClassDefFoundError: org/jboss/netty/channel/ChannelFactory
I'm making an app with Netty and ant. When I compile it, there is no error. But when I try to run the jar file, it gets these message:
Exception in thread "main" java.lang.NoClassDefFoundError: ...
1
vote
1answer
354 views
WCF ChannelFactory and OperationBehavior
I have a service contract as follow
[ServiceContract]
public interface IService
{
[MyCustomBehavior]
[OperationContract]
void MyOperation();
}
The question is whether a call to
new ...
1
vote
2answers
203 views
How can I implement ChannelFactory and WCF assembly sharing with Silverlight?
The preferred WCF implementation is with assembly sharing and ChannelFactory - a single instance of the contract means any service changes only need be made in one place, there's no proxy to update or ...
1
vote
1answer
292 views
WCF Client Proxies, Client/Channel Caching in ASP.Net - Code Review
long time ASP.Net interface developer being asked to learn WCF, looking for some education on more architecture related fronts - as its not my strong suit but I'm having to deal.
In our current ...
2
votes
2answers
754 views
Azure Servicebus relay performance
I'm using the service bus with nettcprelaybinding. One one side is OnPremise server that has a constant connection to the service bus. On the other end is a Azure web role that responds to incoming ...
0
votes
1answer
448 views
ChannelFactory with WebHttpBinding always POSTs while executing a ServiceContract OperationContract
I have a service that is hosted via WebServiceHost and I need to delegate some of the calls to other REST services on the web.
I built a ClientBase concrete class to handle this. The flow looks like ...
0
votes
1answer
646 views
WCF ChannelFactory not accurately reporting Faulted state?
I'm using the ChannelFactory to open/manage WCF channels (vs. the client proxy). However, when an exception occurs, the factory state doesn't report that the channel is faulted...
...
4
votes
1answer
891 views
Performance of ChannelFactory<T> versus pre-generated proxy using Svcutil
Do Svcutil generated proxies give better performance over ChannelFactory used at runtime? Does ChannelFactory cache proxy by default?
I am using .NET 4 with a service which has more than 100 ...
0
votes
0answers
317 views
Setting the MaxStringContentLength on ChannelFactory
I am settings MaxStringContentLength to int.MaxValue but I still get the following error.
The formatter threw an exception while trying to deserialize the message: Error in deserializing body of ...
1
vote
3answers
279 views
What to create/close in relation to individual request: ChannelFactory or created Channel?
I am refactoring a large programm which does inter-process communication via wcf. Since the client has direct access to the service-interface a channelfactory is used to create channels, so that no ...
0
votes
1answer
175 views
Any WCF Client Proxy Generator for channels manage?
Which best ChannelFactrory wrapper would you recommand?
I`m searching for a simple one that will handle the channel creation process and reopen in when needed.
0
votes
1answer
290 views
Endpoint is null?
I get the following error:
The Address property on ChannelFactory.Endpoint was null. The ChannelFactory's Endpoint must have a valid Address specified
But I have an adress for the client ...
0
votes
1answer
507 views
How do I call ChannelFactory<TChannel> dynamically?
I have to call ChannelFactory<TChannel> class. But the code below is for ChannelFactory Class. I don't have any idea, how to call ChannelFactory<TChannel>. Please suggest how I might call ...
5
votes
1answer
479 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 ...
0
votes
2answers
315 views
What's the opposite to ChannelFactory<TChannel>.CreateChannel?
I just followed this tutorial and played a little bit with the code. I'm almost sure I read somewhere that there is a timeout for the channel, so it might get automatically closed eventually. So I ...
4
votes
1answer
2k views
Best Practice with WCF ChannelFactory and connection timeout
I am working on an winform application that will access a WCF service self-hosted as a windows service. I am using the ChannelFactory instead of the service reference. I have been successful in ...
0
votes
0answers
330 views
An implementation of WCF Router
I am confused with a WCF Router Implementation. Here is the original codes. WCF Router example
The following is a common usage of ChannelFactory to call a wcf service method from the client.
...
0
votes
2answers
321 views
Unity can't resolve type, when resolving in a different module
I'm currently working on a PRISM app with the unity container and a WCF service.
In the module(with the WCF proxy) I register a ChannelFactory for the WCF client as follows:
InstanceContext ...
7
votes
3answers
4k 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 ...
0
votes
1answer
251 views
How is a WCF Service and IIS integrated, what is the architecture and flow for incoming requests
I have been technically testing a WCF service recently and have got to the point where, my lack of understanding is not allowing me to progress forward and find a solution to a timeout problem we see.
...
2
votes
2answers
632 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 ...
0
votes
2answers
773 views
Catch Fault Exception in Silverlight with Channel Factory
I am trying to call a WCF service from a Silverlight client using channel factory as per this link. Working with channel factory is something new for me so please bear with me!
Everything mentioned ...
0
votes
1answer
176 views
WCF : Why Creating a ChannelFactory is more consuming that actualy create the channels
I understand that the ChannelFactory creates the network connections and that the channel indeed act as a lock for one connection during one call. Can someone confirm, give some details ?
0
votes
1answer
510 views
Calling WCF web services from an ASP.NET web application using impersonation and channel factory
I have various bits of functionality implemented in WCF web services which are currently consumed by an Excel client via a local COM-visible library. I wish to implement some of the front-end ...
0
votes
1answer
322 views
Unable to get WCF config to work with https
I have looked at many different questions and responses regarding this issue but still cannot find the right solution. I have a web service that I am connecting to via code. The webservice is up and ...
0
votes
1answer
1k views
WCF + Gzip Performance Issues
Ive got a WCF service that returns content-type 'application/x-gzip' which essentially appears to be XML/Json that is compressed using Gzip. I implemented a GzipMessageEncoder and CustomBinding as ...
2
votes
1answer
689 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 ...
3
votes
3answers
983 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 ...
0
votes
1answer
394 views
Configure WCF without using config file and instantiating proxy client with default constructor
I am not sure this is even possible to be honest,
I am wondering if there is a way of removing the use of the config file without having to override the creation of the client proxy. Let me give an ...

