套接字通信故障

本文关键字:通信故障 套接字 | 更新日期: 2023-09-27 18:36:01

>我有一个客户端,它给了我一个非ssl url:port来发送信息(包含xml数据的字符串)到他们的服务器。我曾经使用Putty(在telnet模式下)成功与服务器通信,并收到回复,但是当我使用以下代码时没有进行通信

outputmsg = string.Empty;
                var m_socListener = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.IP);
                IPHostEntry ipAddress = Dns.GetHostEntry("testurlhere");
                var ip = new IPEndPoint(ipAddress.AddressList[0], 10121);
                m_socListener.Connect(ip);
                byte[] tosend = GetBytes(inputmsg);
                byte[] buffer = new byte[1024];
                m_socListener.Send(tosend); // doesnt sends data and returns immediately
                m_socListener.Receive(buffer); // waits forever
                m_socListener.Close();

 static byte[] GetBytes(string str)
        {
            byte[] bytes = new byte[str.Length * sizeof(char)];
            System.Buffer.BlockCopy(str.ToCharArray(), 0, bytes, 0, bytes.Length);
            return bytes;
        }
    static string GetString(byte[] bytes)
    {
        char[] chars = new char[bytes.Length / sizeof(char)];
        System.Buffer.BlockCopy(bytes, 0, chars, 0, bytes.Length);
        return new string(chars);
    }

套接字通信故障

我认为这里的解决方案可能是SetSockOpt NoDelay:

http://msdn.microsoft.com/en-us/library/e160993d.aspx

我也支持m0s最优秀的建议,尝试WireShark。 如果您还不熟悉它 - 保证满意!

但听起来NoDelay(禁用Nagle)可能会解决问题。 此链接可能有助于澄清:

http://en.wikipedia.org/wiki/Nagle%27s_algorithm

在我的情况下,解决方案是使用正确的编码,它是 ASCII 并将 ' 附加到消息中,如 paulsm4 所说。