Home > Backend Development > PHP Tutorial > 通达OA 使用C#的Socket编程替代PHP中的Socket操作

通达OA 使用C#的Socket编程替代PHP中的Socket操作

WBOY
Release: 2016-06-23 13:40:57
Original
953 people have browsed it

通达OA中采用了PHP的语言来进行编程,同样对于IM的有些操作则采用了Socket的方式进行通讯。最近做的一个程序需要采用C#来做,里面涉及到这块,采用C#进行了重写,具体还需要进一步进行测试效果。


using System;using System.Collections.Generic;using System.Net;using System.Net.Sockets;using System.Text;using System.Threading;namespace monitorFlowworkAndSubmit.DAL{    class SendSocket    {        string MYOA_TDIM_ADDR = "127.0.0.1";        int MYOA_TDIM_PORT = xxxx;        public string Send()        {            string rst = "";            //设定服务器IP地址            IPAddress ip = IPAddress.Parse(MYOA_TDIM_ADDR);            Socket clientSocket = new Socket(AddressFamily.InterNetwork, SocketType.Dgram, ProtocolType.Udp);            try            {                clientSocket.Connect(new IPEndPoint(ip, MYOA_TDIM_PORT)); //配置服务器IP与端口                Console.WriteLine("连接服务器成功");            }            catch (Exception ex)            {                rst = "连接服务器失败,请按回车键退出!";                return ex.ToString();            }            try            {                 string sendMessage = "x^a^admin";                 clientSocket.Send(Encoding.ASCII.GetBytes(sendMessage));                 Console.WriteLine("向服务器发送消息:{0}" + sendMessage);            }            catch            {                 clientSocket.Shutdown(SocketShutdown.Both);                 clientSocket.Close();                 return "sed err";            }            return "OK";        }    }}
Copy after login


source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template