应无所住,而生其心
排名
1
文章
860
粉丝
112
评论
163
net core webapi post传递参数
庸人 : 确实坑哈,我也是下班好了好几次,发现后台传递对象是可以的,但...
百度编辑器自定义模板
庸人 : 我建议换个编辑器,因为现在百度富文本已经停止维护了,用tinymec...
ICP备案 :渝ICP备18016597号-1
网站信息:2018-2025TNBLOG.NET
技术交流:群号656732739
联系我们:contact@tnblog.net
公网安备:50010702506256
欢迎加群交流技术

wcf DuplexHttpBinding双向通信

4315人阅读 2019/8/4 11:20 总访问:5185396 评论:0 收藏:0 手机
分类: WCF


一:建立接口 CallbackContract = typeof(ICallback)指定需要回调通信的接口,该接口方法由前端实现

  1. [ServiceContract(CallbackContract = typeof(ICallback))]
  2.     public interface IUserCallBack
  3.     {
  4.         [OperationContract]
  5.         ReturnData<stringLogin(string username, string password);
  6.     }
  7.     public interface ICallback
  8.     {
  9.         [OperationContract(IsOneWay = true)]//单向调用,不需要返回值
  10.         void LoginCallBack(string hello);
  11.     }

二:实现接口

  1. public class UserCallBack : IUserCallBack
  2.     {
  3.            UserDao ud = new UserDao();
  4.            public ReturnData<stringLogin(string username, string password)
  5.            {
  6.                     ICallback callbackt = OperationContext.Current.GetCallbackChannel<ICallback>();
  7.                     callback.LoginCallBack("successful");//可以进行直接回调当前客服端的实现的LoginCallBack方法
  8.                    //如何需要回调特定的客服端就把callbackt 与用户标识放到键值对里,在更具特定的情况回调客服端方法
  9.            }
  10.     }

三:进行wcf配置

  1. <!--这里是添加的开始-->
  2.     <services>
  3.       <service name="JSDService.Users.UserCallBack" >
  4.         <endpoint address="" binding="pollingDuplexHttpBinding" contract="JSDService.Users.IUserCallBack" />
  5.         <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange"/>
  6.       </service>
  7.       
  8.     </services>
  9.     <extensions>
  10.       <bindingExtensions>
  11.         <add name="pollingDuplexHttpBinding" type="System.ServiceModel.Configuration.PollingDuplexHttpBindingCollectionElement,System.ServiceModel.PollingDuplex"/>
  12.       </bindingExtensions>
  13.     </extensions>
  14.     <!--这里是添加的结束-->

四:siverlight前端 直接放一个按钮进行测试

页面:

  1. <Grid x:Name="LayoutRoot" Background="White">
  2.             <TextBox Height="23" HorizontalAlignment="Left" Margin="12,12,0,0" Name="textBox1" VerticalAlignment="Top" Width="120" />
  3.             <Button Content="Button" Height="23" HorizontalAlignment="Left" Margin="12,41,0,0" Name="button1" VerticalAlignment="Top" Width="75" Click="button1_Click" />
  4.         <TextBlock Height="23" HorizontalAlignment="Left" Margin="12,70,0,0" Name="textBlock1" Text="TextBlock" VerticalAlignment="Top" Width="120" />
  5.     </Grid>

后端:

  1. ServiceReferenceTest.UserCallBackClient client;
  2.         public MainPage()
  3.         {
  4.             InitializeComponent();
  5.             //扩展的轮询机制的双向通讯
  6.             PollingDuplexHttpBinding binding = new PollingDuplexHttpBinding()
  7.             {
  8.                 //每次轮询建立的有效时间为20分钟
  9.                 InactivityTimeout = TimeSpan.FromMinutes(20)
  10.             };
  11.             //基础的http请求方式
  12.             //Binding binding =new BasicHttpBinding();
  13.             //svc服务地址
  14.             EndpointAddress endPoint = new EndpointAddress("http://localhost:8087/Users/UserCallBack.svc");
  15.              client = new ServiceReferenceTest.UserCallBackClient(binding, endPoint);
  16.             //异步调用SayHellow方法
  17.             //client.SayHellowAsync(this.textBox1.Text);
  18.             //调用完成后ShowHello回调事件
  19.              client.LoginCallBackReceived += client_LoginCallBackReceived;
  20.             client.LoginCompleted += client_LoginCompleted;
  21.         }
  22.         void client_LoginCallBackReceived(object sender, ServiceReferenceTest.LoginCallBackReceivedEventArgs e)
  23.         {
  24.             MessageBox.Show(e.hello);
  25.         }
  26.         void client_LoginCompleted(object sender, ServiceReferenceTest.LoginCompletedEventArgs e)
  27.         {
  28.             MessageBox.Show(e.Result.Value);
  29.         }
  30.         private void button1_Click(object sender, RoutedEventArgs e)
  31.         {
  32.              client.LoginAsync("aj","aj");
  33.         }






欢迎加群讨论技术,1群:677373950(满了,可以加,但通过不了),2群:656732739。有需要软件开发,或者学习软件技术的朋友可以和我联系~(Q:815170684)

评价