1

如何从 JavaScript 向 C# 应用程序传递消息,我可以在 c# 中使用 PHP 和 tcpListner 来做到这一点(但使用 PHP 需要服务器托管),我需要 localhost 与浏览器通信 c# 应用程序(使用 javaScript 或任何其他可能的方式) , 浏览器需要将消息传递给运行在同一个 matchine 上的应用程序

你能用样品建议合适的方法吗

4

3 回答 3

3

您可以通过以下方式执行此操作。

第 1 步:您必须创建一个侦听器。.net 中的TcpListener类或HttpListener 可用于开发监听器。此代码显示如何实现 TCP 侦听器。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Net.Sockets;
using System.Net;
using System.Threading;

//Author : Kanishka 
namespace ServerSocketApp
{
class Server
{
 private TcpListener tcpListn = null;
 private Thread listenThread = null;
 private bool isServerListening = false;

 public Server()
 {
  tcpListn = new TcpListener(IPAddress.Any,8090);
  listenThread = new Thread(new ThreadStart(listeningToclients));
  this.isServerListening = true;
  listenThread.Start();
 }

 //listener
 private void listeningToclients()
 {
  tcpListn.Start();
  Console.WriteLine("Server started!");
  Console.WriteLine("Waiting for clients...");
  while (this.isServerListening)
  {
   TcpClient tcpClient = tcpListn.AcceptTcpClient();
   Thread clientThread = new Thread(new ParameterizedThreadStart(handleClient));
   clientThread.Start(tcpClient);
  }

 }

 //client handler
 private void handleClient(object clientObj)
 {
  TcpClient client = (TcpClient)clientObj;
  Console.WriteLine("Client connected!");

  NetworkStream stream = client.GetStream();
  ASCIIEncoding asciiEnco = new ASCIIEncoding();

  //read data from client
  byte[] byteBuffIn = new byte[client.ReceiveBufferSize];
  int length = stream.Read(byteBuffIn, 0, client.ReceiveBufferSize);
  StringBuilder clientMessage = new StringBuilder("");
  clientMessage.Append(asciiEnco.GetString(byteBuffIn));

  //write data to client
  //byte[] byteBuffOut = asciiEnco.GetBytes("Hello client! \n"+"You said : " + clientMessage.ToString() +"\n Your ID  : " + new Random().Next());
  //stream.Write(byteBuffOut, 0, byteBuffOut.Length);
  //writing data to the client is not required in this case

  stream.Flush();
  stream.Close();
  client.Close(); //close the client
 }

 public void stopServer()
 {
  this.isServerListening = false;
  Console.WriteLine("Server stoped!");
 }

}
}

第 2 步:您可以将参数作为 GET 请求传递给创建的服务器。您可以使用 JavaScript 或 HTML 表单来传递参数。像 jQuery 和 Dojo 这样的 JavaScript 库将使 ajax 请求更容易。

http://localhost:8090?id=1133

您必须修改上述代码以检索作为 GET 请求发送的参数。我建议使用HttpListener而不是TcpListener

一旦你完成了监听部分,剩下的部分只是处理从请求中检索到的参数。

于 2012-04-24T14:13:39.787 回答
1

您应该使用HttpListener该类,或者创建一个自托管的 ASP.Net Web API 项目。

于 2012-04-24T13:56:36.463 回答
0

我认为您需要像 Comet 这样的东西,请使用 Comet 检查此示例

于 2012-04-24T13:58:16.673 回答