.Net中Remoting通信的应用,有发送和返回信息

两个界面如图:

代码:

服务端

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Runtime.Remoting;//添加引用
using System.Runtime.Remoting.Channels;
using System.Runtime.Remoting.Channels.Tcp;
using System.Runtime.Remoting.Channels.Http;
using System.IO;
namespace Server
{
    /// <summary>
    /// 服务端接收、处理并返回客户端面、显示信息到界面
    /// </summary>
    public partial class Form1 : Form
    {
        string FilePath="";
        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender, EventArgs e)
        {
           
            FilePath = AppDomain.CurrentDomain.BaseDirectory + "\\msg.txt";
            if (FilePath != "" && File.Exists(FilePath))
            {
                dothings.MsgContentLast+=File.ReadAllText(FilePath);
            }
            //注册通道
            IChannel channel = null;
            //channel = new TcpServerChannel("TalkChannel", 8090); //端口随便取
             channel = new HttpServerChannel(8091);
            ChannelServices.RegisterChannel(channel, false);//对于Http通道必须设置为false,否则将抛出:无法保证信道 http server 的安全。请考虑使用实现 ISecurableChannel 的信道 的异常

            //注册远程对象
            RemotingConfiguration.RegisterWellKnownServiceType(
                typeof(dothings),
                "dothings",
                WellKnownObjectMode.SingleCall);
        }

        private void timetick_Tick(object sender, EventArgs e)
        {
            if (dothings.MsgContentLast.ToString() != dothings.MsgContent.ToString())//有新信息才更新和滚动到最后
            {
                txtReceive.Text = dothings.MsgContentLast.ToString();//txtReceive为RichTextBox控件
                dothings.MsgContent = dothings.MsgContentLast;
                this.txtReceive.Select(this.txtReceive.TextLength, 0);//光标移到最后
                this.txtReceive.ScrollToCaret();//滚动到光标处
            }
        }
    }
    public class dothings : MarshalByRefObject
    {
        private static string _MsgContentLast ="";
        public static string MsgContentLast//新信息
        {
            get { return _MsgContentLast; }
            set { _MsgContentLast = value; }
        }
       
        private static string _MsgContent="";
        public static string MsgContent//旧信息
        {
            get { return _MsgContent; }
            set { _MsgContent = value; }
        }
       
       
        private string FilePath = AppDomain.CurrentDomain.BaseDirectory + "\\msg.txt";
        public string dothing(string msg)
        {
            File.AppendAllText(FilePath, msg + "\r\n");
            MsgContentLast+=("\r\n" + msg);
            return "发送成功,返回:" + msg;
        }
    }
}

客户端

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Runtime.Remoting.Channels;
using System.Runtime.Remoting.Channels.Tcp;
using System.Runtime.Remoting.Channels.Http;
using Server;

namespace Client
{
    /// <summary>
    /// 客户端发送、接收、显示返回的信息
    /// </summary>
    public partial class Form1 : Form
    {
        private dothings _dothings = null;
        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender, EventArgs e)
        {
            try
            {
                //注册通道
                IChannel channel=null;
               // channel = new TcpClientChannel();
                channel = new HttpClientChannel();
                ChannelServices.RegisterChannel(channel, true);
                //获取远程对象
                //_dothings = (dothings)Activator.GetObject(typeof(dothings), "TCP://localhost:8090/dothings");
                _dothings = (dothings)Activator.GetObject(typeof(dothings), "http://localhost:8091/dothings");
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message);
            }
        }
        string ReceiveMsg = "";
        private void btn_send_Click(object sender, EventArgs e)
        {
            try
            {
                //操作远程对象
                ReceiveMsg=_dothings.dothing(txtTosend.Text.Trim());//返回来的消息
                txtSended.Text += "\r\n" + ReceiveMsg;//txtSended为TextBox控件
                txtTosend.Text = "";
                txtTosend.Focus();
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message);
            }
        }

        private void txtTosend_KeyDown(object sender, KeyEventArgs e)
        {
            if (e.Control && e.KeyValue == 13)//按Ctrl+Enter键就点击发送按钮
            {
                e.Handled = true;
                this.btn_send_Click(this, null);
            }
        }
    }
}
 

时间: 2024-12-20 20:37:51

.Net中Remoting通信的应用,有发送和返回信息的相关文章

Android中Webview打开网页的同时发送HTTP头信息方法_Android

众所周知,当你点击一个超链接进行跳转时,WebView会自动将当前地址作为Referer(引荐)发给服务器,因此很多服务器端程序通过是否包含referer来控制盗链,所以有些时候,直接输入一个网络地址,可能有问题,那么怎么解决盗链控制问题呢,其实在webview加载时加入一个referer就可以了,如何添加呢? 从Android 2.2 (也就是API 8)开始,WebView新增加了一个接口方法,就是为了便于我们加载网页时又想发送其他的HTTP头信息的. 复制代码 代码如下: public v

Android中Webview打开网页的同时发送HTTP头信息方法

众所周知,当你点击一个超链接进行跳转时,WebView会自动将当前地址作为Referer(引荐)发给服务器,因此很多服务器端程序通过是否包含referer来控制盗链,所以有些时候,直接输入一个网络地址,可能有问题,那么怎么解决盗链控制问题呢,其实在webview加载时加入一个referer就可以了,如何添加呢? 从Android 2.2 (也就是API 8)开始,WebView新增加了一个接口方法,就是为了便于我们加载网页时又想发送其他的HTTP头信息的. 复制代码 代码如下: public v

数据发送-C#中串口通信发送20字节的数据

问题描述 C#中串口通信发送20字节的数据 20字节数据是指160位二进制数吗?转换成整型怎么定义,最大也只有64位?还是指一个一个的数据,总共有20个? 解决方案 用byte[]发送.当然也可以用int[],一共需要5个int或者20个byte serialPort1.Write(字节数组)

c#-C#中串口通信发送数据问题

问题描述 C#中串口通信发送数据问题 串口通信数据发送,除了可用字节数组byte[],还可以用其他的什么吗? 解决方案 串口硬件就是一个字节一个字节发的. 你可以通过c#的convert和ASCII转一下格式, 把其它的数据转成字节数组. 解决方案二: C#下调用JustinIO的串口通信问题C#串口通信 解决方案三: 不清楚.我做过几个串口通信的例子,不过使用byte[]都能达到要求,不知道你的需求是什么

c#tcp协议通信问题,消息第一次发送无反应

问题描述 c#tcp协议通信问题,消息第一次发送无反应 先上代码 try { FileStream file = new FileStream(str0 + "init1.txt", FileMode.Open); for (int i = 0; (i * 18) < file.Length; i++) { file.Seek(i * 18, SeekOrigin.Begin); file.Read(byData, 0, 18); Decoder d = Encoding.Def

android 中socket通信

问题描述 android 中socket通信 private Button send; private TextView rec; private static Socket client; private boolean result=false; private int a=0; private PrintWriter write; private static BufferedReader read; public static int ac=0; private InputStream

Android中Socket通信的实现方法概述_java

本文实例简述了Android中Socket通信的实现方法,具体内容如下: 一.socket通信概述 通俗的来说套接字(socket)是通信的基石,是支持TCP/IP协议的网络通信的基本操作单元.它是网络通信过程中端点的抽象表示,包含进行网络通信必须的五种信息:连接使用的协议,本地主机的IP地址,本地进程的协议端口,远地主机的IP地址,远地进程的协议端口. 应用层通过传输层进行数据通信时,TCP会遇到同时为多个应用程序进程提供并发服务的问题.多个TCP连接或多个应用程序进程可能需要通过同一个TCP

珠中江通信一体化昨启动5元包月通信同城待遇

本报珠海讯 (记者 陈治家) 只要5元包月费,珠海.中山.江门三市固话和手机均可享受同城待遇. 昨日,珠中江通信一体化启动仪式在珠海举行,电信.移动.联通.铁通四家通信运营商同时推出以5元包月为主的资费套餐,办理后珠中江三地间通话资费标准基本等同于本地通话. 广东省政府副秘书长李春洪表示,珠中江三市在珠江三角洲率先实现区域通信一体化,标志着珠中江经济圈一体化建设迈出了坚实一步. 市民通信费减2.87亿元 昨日正式启动的珠中江通信一体化方案以"资费叠加包".取消长途费和漫游费为主要内容,

Socket中服务器向客服端发送信息的问题

问题描述 Socket中服务器向客服端发送信息的问题 20C 先上代码:public class ServerThread implements Runnable{ //定义当前线程所处理的Socket Socket s=null; BufferedReader bReader=null; OutputStream os=null; public ServerThread(Socket s) throws IOException{ this.s=s; bReader=new BufferedRe