开发者

WCF interacting (callback) with .Net 2.0 app

开发者 https://www.devze.com 2023-01-17 03:08 出处:网络
At first I had to make 2.0 work with WCF service. I accomplish开发者_高级运维ed that using BasicHttpBinding . Since BasicHttpBinding doesn\'t support Duplex callback, I can\'t make the server ping the

At first I had to make 2.0 work with WCF service. I accomplish开发者_高级运维ed that using BasicHttpBinding . Since BasicHttpBinding doesn't support Duplex callback, I can't make the server ping the client. Any ideas???? Thanks


If you want WCF to do this, it's not possible over the BasicHttpBinding. You need wsDualHttpBinding or NetTcpBinding if you wish to establish a callback channel out-of-the-box with WCF. You can also try to write a CustomBinding, but utilizing .NET 2.0 for the client is going to limit what you can do.

0

精彩评论

暂无评论...
验证码 换一张
取 消