1

JavaScriptからC#アプリケーションにメッセージを渡す方法、c#のPHPとtcpListnerでこれを行うことができます(ただし、PHPを使用してホストするにはサーバーが必要です)、ローカルホストがブラウザと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リクエストとして送信されるパラメータを取得するには、上記のコードを変更する必要があります。TcpListenerの代わりにHttpListenerを使用することをお勧めします

リスニング部分の処理が完了すると、残りの部分はリクエストから取得したパラメーターを処理するだけです。

于 2012-04-24T14:13:39.787 に答える
1

クラスを使用するHttpListenerか、自己ホスト型のASP.NetWebAPIプロジェクトを作成する必要があります。

于 2012-04-24T13:56:36.463 に答える
0

コメットのようなものが必要だと思います。コメットを使用してこの例を確認してください

于 2012-04-24T13:58:16.673 に答える