2

クライアントの TCP 接続をリッスンする Azure ホスト Linux VM で実行されているサーバー プロセスへのソケットを開く WebMatrix 3 (ASP.NET と同じ) Web ページがあります。Linux VM サーバー プロセスも私のものです。IIS のローカル コピーを使用して自宅の PC からローカルで WebMatrix 3/ASP.NET Web サイトを実行すると、正常に動作します (ローカル パブリッシュ)。Web サイトを Web に公開し、Azure で実行すると、次の例外が発生します。

アクセス許可で禁止されている方法でソケットにアクセスしようとしました

本当に紛らわしいのは、ソケットから読み取るときにエラーが発生することですが、奇妙なことに、ソケットに接続したり、事前に書き込みを行ったりするとエラーが発生しません。これは、例外メッセージが現在の操作で飾られており、次のように設定されているためです。

ChatScript サーバーからの応答を待ってから読み取ります。

この行は、次のコードで確認できます。TCP 接続から Linux VM への読み取りをブロックしている可能性がある Azure 側で、その VM への接続を許可し、さらには送信を許可する何かが起こっていますか? 以下のコードからわかるように、Linux VM プロセスにメッセージを送信してから、その接続から読み取ろうとするため、「送信も行う」と言います。

public static string readChatScriptMessage(NetworkStream myNetworkStream)
{
    if (myNetworkStream == null)
        throw new ArgumentNullException("(readChatScriptMessage) The network stream is unassigned.");

    StringBuilder myCompleteMessage = new StringBuilder();

    // Check to see if this NetworkStream is readable.
    if (myNetworkStream.CanRead)
    {
        byte[] myReadBuffer = new byte[1024];
        int numberOfBytesRead = 0;

        // Incoming message may be larger than the buffer size.
        do
        {
            numberOfBytesRead = myNetworkStream.Read(myReadBuffer, 0, myReadBuffer.Length);

            myCompleteMessage.AppendFormat("{0}", Encoding.ASCII.GetString(myReadBuffer, 0, numberOfBytesRead));

        }
        while (myNetworkStream.DataAvailable);

    }
    else
    {
        if (myNetworkStream == null)
            throw new InvalidOperationException("(readChatScriptMessage) The network stream is unassigned.");
    }

    // Print out the received message to the console.
    return myCompleteMessage.ToString();
} // public static string readChatScriptMessage(NetworkStream myNetworkStream)

    // Lookup the IP address for our chatscript server. (Cache this value
    //  in a later build since GetHostEntry() is reportedly a slow call.)
    ipAddress = Dns.GetHostEntry("myazureapp.cloudapp.net").AddressList[0];

    strCurrentOperation = "Validating URL arguments (parameters).";

    // LoginName, is mandatory.
    strLoginName = checkForValidURLArgument("LoginName", true);

    // BotName, is optional.
    strBotName = checkForValidURLArgument("BotName", false);

    // User message (chat input), is optional.  But remember,
    //  only send a blank message to start a new session
    //  with ChatScript!  After that, send the user's input
    //  each time.
    strMessage = checkForValidURLArgument("Message", false);

    strCurrentOperation = "Connecting to Linux VM TCP server.";

    // OK, we're good to go.  We have the 3 URL arguments we were expecting.

    // Connect to the ChatScript server.
    tcpCli.Connect(ipAddress, 1024);

    strCurrentOperation = "Opening the stream with the server.";

    // Open the stream
    streamChatScript = tcpCli.GetStream();
    StreamReader sr = new StreamReader(streamChatScript);
    BinaryWriter sw = new BinaryWriter(streamChatScript);
    // Create a message to send to the server, using the URL argument values
    //  passed to us.
    ChatMessage cm = new ChatMessage(strLoginName, strBotName, strMessage);

    strCurrentOperation = "Sending the desired chat message to the server.";

    // Send the message to the chat server.
    string strSendChatMsg = cm.ToString();

    // Translate the passed message into ASCII and store it as a Byte array.
    Byte[] data = System.Text.Encoding.ASCII.GetBytes(strSendChatMsg); 

    for (int i = 0; i < strSendChatMsg.Length; i++)
    {
        data[i] = (byte)strSendChatMsg[i];
    }

    // Send the chat message.
    streamChatScript.Write(data, 0, data.Length);

    strCurrentOperation = "Waiting for and then reading the response from the server.";

    strResponseMsg = ChatMessage.readChatScriptMessage(streamChatScript);
4

0 に答える 0