我正在尝试从asp web应用程序连接到tcp服务器。我使用C#中的应用程序完成了这项工作,现在我想看看它是否可以在网络浏览器中运行。
我的代码是:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Net;
using System.Net.Sockets;
namespace TcpWebClient
{
public partial class _Default : System.Web.UI.Page
{
private byte[] data = new byte[1024];
IPEndPoint ipep = new IPEndPoint(
IPAddress.Parse("192.168.1.20"), 12000);
Socket server = new Socket(AddressFamily.InterNetwork,
SocketType.Stream, ProtocolType.Tcp);
protected void Page_Load(object sender, EventArgs e)
{
}
protected void Button1_Click(object sender, EventArgs e)
{
try
{
server.Connect(ipep);
}
catch (SocketException)
{
}
}
protected void Button2_Click(object sender, EventArgs e)
{
NetworkStream ns = new NetworkStream(server);
if (ns.CanWrite)
{
ns.Write(Encoding.ASCII.GetBytes("DI"), 0, 2);
ns.Flush();
}
else
{
}
TextBox1.Text = null;
TextBox1.Text = Encoding.ASCII.GetString(data, 0, ns.Read(data, 0, data.Length));
}
}
}
什么工作?:我连接到tcp服务器。但是,当我想发送和接收一些数据时,我会收到错误:
IOException was unhandled by user code and something like this: Operation is not supported on connected sockets (don't know if my translation to english is ok).
我做错了什么?
System.dll
中出现'System.IO.IOException'类型的第一次机会异常修改
这样的东西正在工作..但是我需要重新连接到服务器的每个计时器滴答..是否可以有一个连接,然后定时器的每个滴答读取/发送数据而不重新连接?
protected void Timer1_Tick(object sender, EventArgs e)
{
server.Connect(ipep);
NetworkStream stream = new NetworkStream(server);
Byte[] data = System.Text.Encoding.ASCII.GetBytes("data");
stream.Write(data, 0, data.Length);
data = new Byte[256];
Int32 bytes = stream.Read(data, 0, 8);
responseData = System.Text.Encoding.ASCII.GetString(data, 0, bytes);
TextBox1.Text = responseData;
server.Close();
}
答案 0 :(得分:0)
你实际上已经回答了自己:你的第二个事件处理程序(Button2_click)中没有打开连接,因为你在button1点击时打开了它,并且它的生命周期结束了页面,每个请求创建一个实例。
你可以将打开的连接保存在一个静态变量中(如果你不介意连接应用程序是为所有用户共享的),但我真的不确定你是否真的只是使用你在编辑中发布的代码。
如果您希望connectoin是availibale应用程序范围,请将其变量定义为静态变量(但请确保在第一次尝试使用之前初始化/连接),您可以使用.net 4中提供的Lazy<T>
帮助程序类确保连接初始化一次,仅在第一次需要时才初始化。
如果你需要在其他类中也可以访问连接,你可以创建一个seaparate单例类来包装它(并以相同的方式在那里初始化)