.net - WCF and "Persistent Connections" -
i trying calls wcf services use load balancer (an f5).
the problem when try set 1 of machines in pool "disabled" still send requests through machine.
the documentation f5 says when server disabled "only persistent or active connections allowed".
i wondering if wcf using persistent connection (or similar) bypassing loadbalancer's efforts disable node on server.
(the goal disable server, active connections out, update code on server, re-enable it.)
does wcf use persistant connections default? if so, way turn off?
there no default connections in wcf (you mean - communication channels) depends explicit or implicit (via factories) hosting configurations.
the (true-)'persistent' communication provided duplex nettcpbinding (active connections). durable services allows other (business-)dimension of persistence (via http, connections not open, active). wcf sessions, reliable sessions - same story - fake 'persistence'.
so check wcf's (hosting) configuration.
Comments
Post a Comment