.NET アプリケーションから Asterisk サーバーに接続しようとしていますが、接続が確立されません。次のコードを使用してアスタリスクに接続しています。
Socket clientSocket = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
IPEndPoint serverEndPoint = new IPEndPoint(IPAddress.Parse("192.168.0.35"), 5038);
clientSocket.Connect(serverEndPoint);
次のエラーが表示されます。
A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond 192.168.0.35:5038
誰かが私が間違っていること、またはこれに対する解決策を教えてもらえますか?
よろしく、タマシュ