Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
4answers
308 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
549 views

WCF - Closing a duplex ServiceHost blocks for CloseTimeout duration if closed when client(s) connected

I have a Windows Service that hosts three different duplex WCF channels. Clients can connect to have updates sent to them via their callback contract. Essentially there are three pub-sub channels. ...
2
votes
1answer
52 views

How can I extend WCF in the Callback direction?

I can attach an IParameterInspector using behaviors to each operation in the ClientRuntime and also to each operation in the DispatchRuntime on the service side. But it seems this only works from ...
2
votes
1answer
138 views

Https and streaming? IDuplexSessionChannel via http - client port open by default?

I have some small questions of which I think they're quite easy to answer for a WCF expert, but which I don't exactly know. I'm hoping they're not to obvious: Does transport security (http with ssl) ...
1
vote
2answers
551 views

wsDualHttpBinding not working outside network with WPF Client

I was trying to implement a DuplexCommunication between WPF and WCF, the communication is working good when test internally, with in the network, when we tried to access this outside network after ...
1
vote
1answer
271 views

serverPollTimeout configuration for HttpPollingDuplex

I am writing card game using Silverlight and HttpPollingDuplex. I have 4 seperate http duplex services, which can be called from my game (silverlight client) 1. ChatService 2. AuthService 3. ...
1
vote
3answers
2k views

WCF Duplex Channel: Check if callback channel is still available

I have the following problem. I'm writing chat software. The client/server mechanism is based on DualHttpBinding of WCF. This means that if a user sends a message, all clients that are in the room ...
0
votes
2answers
24 views

WCF cross-domain duplex: your Thawtes

(Ha! see what I did there?) I have a system whereby a server pushes information from a central DB out to many client DBs (cross-domain via internet), and periodically they call services on the ...
0
votes
2answers
84 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 ...
0
votes
0answers
41 views

'this' type cannot be an interface itself while using WCF duplex channel

I'm trying to create a DuplexChannel in a client using the ConfigurationDuplexCahnnel factory, and I get this error: 'this' type cannot be an interface itself Here is the erroneous code line: ...
0
votes
1answer
107 views

Duplex channel WCF from DMZ to Intranet

We are running an dual channel service inside the domain. We have a TCP binding on port 20120 and a HTTP binding on port 20121. In the DMZ (web), we want to access this WCF service. Firewall seems to ...
0
votes
1answer
40 views

How can I change message in DuplexSessionChannel (tcpTransport) in WCF custom channel?

I implement IDuplexSessionChannel on my Custom Channel because I use tcpTransport. In that custom channel, I cache service call response(client side caching). But it has errors. In IRequestChannel it ...
0
votes
0answers
50 views

WCF service authentication with duplex chunnel

I have some strange problem with my WCF service authentication. No matter how I configure my service, user can connect from another computer to it. The only reason that I can think of is that the ...
0
votes
1answer
38 views

WCF service interface exchange

Hi I want to avoid the duplex Chanel in WCF and create callback service on client, pass the client address to server so the server can call the client any time. (maybe different binding etc.) How ...