Tagged Questions
The faulted tag has no wiki summary.
4
votes
2answers
2k views
What is System.ServiceModel.Diagnostics.CallbackException and why can't I handle it?
In my WCF client class I'm handling the Faulted() event so that if the remote service throws an exception and faults the channel I can still at least shut it down gracefully. Here's my code:
...
3
votes
2answers
1k views
Handle persistent WCF client entering faulted state
We've got a WCF service that we're consuming from a web app. The client we're using was generated using the Visual Studio "Add Service Reference" option. Since it's a web app, and since the nature ...
2
votes
1answer
205 views
WCF Communication Host/Client. No reaction on connection-faults
i used this example for my wcf-service:
http://www.codeproject.com/KB/IP/WCFWPFChatRoot.aspx?msg=3713905#xx3713905xx
But if the server stops, the clients dont get it...
The example handled it with:
...
2
votes
1answer
390 views
WCF Callback Faulted - what happens to the session?
Just trying to get my head around what can happen when things go wrong with WCF. I have an implementation of my service contract declared with an InstanceContextMode of PerSession...
...
2
votes
3answers
1k views
How to heal faulted WCF channels?
When a single ClientBase<T> instance is used for multiple WCF service calls, it can get a channel into a faulted state (ie. when the service is down).
I would like to heal the channel ...
1
vote
1answer
256 views
WCF Reliable session without transport security will not faulted event on time
I have encountered a very interesting behavior of reliable session. I am using netTcp binding + duplex channel + reliable session.
When I am trying to listen on channel.faulted , if there is security ...
0
votes
1answer
102 views
WCF service running as WindowsService and somehow goes into FaultedState
WCF Service hosted as windows service
Using netmsmq binding
MSMQ is transactional
Windows 2003 server to host
MSMQ 3.0
Due to some reason exceptions are raised and so it puts the message back in ...