JavaScriptからC#アプリケーションにメッセージを渡す方法、c#のPHPとtcpListnerでこれを行うことができます(ただし、PHPを使用してホストするにはサーバーが必要です)、ローカルホストがブラウザとc#アプリケーションを通信する必要があります(javaScriptまたは他の可能な方法を使用) 、ブラウザは同じmatchineで実行されているアプリケーションにメッセージを渡す必要があります
サンプルでこれに適切な方法を提案できますか
JavaScriptからC#アプリケーションにメッセージを渡す方法、c#のPHPとtcpListnerでこれを行うことができます(ただし、PHPを使用してホストするにはサーバーが必要です)、ローカルホストがブラウザとc#アプリケーションを通信する必要があります(javaScriptまたは他の可能な方法を使用) 、ブラウザは同じmatchineで実行されているアプリケーションにメッセージを渡す必要があります
サンプルでこれに適切な方法を提案できますか
これは次の方法で実行できます。
ステップ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を使用することをお勧めします
リスニング部分の処理が完了すると、残りの部分はリクエストから取得したパラメーターを処理するだけです。
クラスを使用するHttpListener
か、自己ホスト型のASP.NetWebAPIプロジェクトを作成する必要があります。
コメットのようなものが必要だと思います。コメットを使用してこの例を確認してください