TCM
TCM

Reputation: 16900

pollingDuplexHttpBinding problem

I am using pollingDuplexHttpBinding and it is working fine as long as i copy paste the web.config from msdn article :- MSDN article

However when i try to manually configure my service using WCF configuration editor, it doesn't work. The option pollingDuplexHttpBinding doesn't show up under endpoints in Binding drop down box. How do i solve this problem? I already have a reference to the required assembly of pollingduplexhttpbinding.

Thanks in advance:)

Upvotes: 0

Views: 223

Answers (1)

Eugene Osovetsky
Eugene Osovetsky

Reputation: 6541

Just because it doesn't show up in config intellisense, doesn't mean that the binding won't work when you run your application. Make sure that you have the latest version of Silverlight Tools for Visual Studio installed; Even then, it may still not show up (config intellisense unfortunately always seems to be an afterthought at Microsoft, especially for server-side config for Silverlight scenarios).

Upvotes: 1

Related Questions