0

EDIT1:我已经在win7x86 中尝试过它并且它有效。听起来肯定是 x64 问题...如何在 windows x64 机器中发送 TCP 套接字“x86”样式?

EDIT2:附上 *.pcap 文件而不是 @RemyLebeau 好心问的屏幕截图。

我有这个要发送到打印机的文本字符串,它不需要换行/CRLF/等来理解代码,这意味着,在每个单词到达另一端后它会打印。

打印机是 RS232,但我使用 Advantech ADAM4577 Ethernet-RS232 网关来转换信号。我要做的就是打开一个到网关的 TCP 连接并吐出字符串,就是这个:

  ^XA~TA000~JSN^LT0^MMT^MNW^MTT^PON^PMN^LH0,0^JMA^PR3,3^MD10^JUS^LRN^CI0^XZ
  ^XA^LL0168
  ^PW272
  ^FT61,34^A0N,28,28^FH\^FD2053200863^FS
  ^BY2,3,91^FT47,138^BCN,,Y,N
  ^FD>;9678130580^FS
  ^PQ1,0,1,Y^XZ

我正在使用 Delphi,所以我尝试了 TClientSocket:

unit Unit2;

interface

uses
  Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
  Vcl.Controls, Vcl.Forms, Vcl.Dialogs, System.Win.ScktComp, Vcl.StdCtrls;

type
  TForm2 = class(TForm)
    Button1: TButton;
    ClientSocket1: TClientSocket;
    Button2: TButton;
    procedure Button1Click(Sender: TObject);
    procedure ClientSocket1Error(Sender: TObject; Socket: TCustomWinSocket;
      ErrorEvent: TErrorEvent; var ErrorCode: Integer);
    procedure Button2Click(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  Form2: TForm2;

implementation

{$R *.dfm}

procedure TForm2.Button1Click(Sender: TObject);
begin
  if not ClientSocket1.Active then
  begin
    ClientSocket1.Port := 9100;
    ClientSocket1.Host := '10.6.2.140';
    ClientSocket1.Address := '10.6.2.140';
    ClientSocket1.ClientType := ctNonBlocking;
    ClientSocket1.Open;
  end;

end;

procedure TForm2.Button2Click(Sender: TObject);
var
  zcode : string;
begin
 zcode :=  '^XA~TA000~JSN^LT0^MMT^MNW^MTT^PON^PMN^LH0,0^JMA^PR3,3^MD10^JUS^LRN^CI0^XZ' +
            '^XA^LL0168' +
            '^PW272' +
            '^FT61,34^A0N,28,28^FH\^FD2053200863^FS' +
            '^BY2,3,91^FT47,138^BCN,,Y,N' +
            '^FD>;9678130580^FS' +
            '^PQ1,0,1,Y^XZ';

  ClientSocket1.Socket.SendText(zcode);
end;

procedure TForm2.ClientSocket1Error(Sender: TObject; Socket: TCustomWinSocket;
  ErrorEvent: TErrorEvent; var ErrorCode: Integer);
begin
      ShowMessage(IntToStr(ErrorCode));
      ErrorCode := 0;
end;

end.

一段时间后,我得到:

Socket Error 10053 (WSAECONNABORTED)

这是 x64 机器中过滤后的 pcap 文件: link

完全相同的程序,x86: 链接

与 TIdClientSocket 相同的文本:(UsaNagle 默认为 true,IpVersion 为 IPv4

unit Unit2;

interface

uses
  Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
  Vcl.Controls, Vcl.Forms, Vcl.Dialogs, IdBaseComponent, IdComponent,
  IdTCPConnection, IdTCPClient, Vcl.StdCtrls;

type
  TForm2 = class(TForm)
    Button1: TButton;
    Button2: TButton;
    IdTCPClient1: TIdTCPClient;
    procedure Button1Click(Sender: TObject);
    procedure Button2Click(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  Form2: TForm2;

implementation

{$R *.dfm}

procedure TForm2.Button1Click(Sender: TObject);
begin
  if not IdTCPClient1.Connected then
  begin
    IdTCPClient1.Host := '10.6.2.140';
    IdTCPClient1.Port := 9100;
    idTCPClient1.Connect;
  end;


end;

procedure TForm2.Button2Click(Sender: TObject);
var
  zcode : string;
begin
 zcode :=  '^XA~TA000~JSN^LT0^MMT^MNW^MTT^PON^PMN^LH0,0^JMA^PR3,3^MD10^JUS^LRN^CI0^XZ' +
            '^XA^LL0168' +
            '^PW272' +
            '^FT61,34^A0N,28,28^FH\^FD2053200863^FS' +
            '^BY2,3,91^FT47,138^BCN,,Y,N' +
            '^FD>;9678130580^FS' +
            '^PQ1,0,1,Y^XZ';

  IdTCPClient1.IOHandler.WriteLn(zcode);
end;

end.

pcap 文件,x64: 链接

完全相同的程序,x86: 链接

4

1 回答 1

1

根据 .pcap 文件:

WinXPx86 系统正在执行以下操作:

发送:

^

这是 ACK'ed,然后发送:

XA~TA000~JSN^LT0^MMT^MNW^MTT^PON^PMN^LH0,0^JM

哪个被确认,然后发送:

A^PR3,3^MD10^JUS^LRN^CI0^XZ^XA^LL0168^PW272^FT61,34^A0N,28,28^FH\^FD2053200863^FS^BY2,3,91^FT47,138^BCN,,Y,N^FD>;9678130580^FS^PQ1,0,1,Y^XZ

已确认,然后断开连接。

另一方面,Win7x64 系统正在做以下事情:

发送:

^

哪个被确认,然后发送:

XA~TA000~JSN^LT0^MMT^MNW^MTT^PON^PMN^LH0,0^JMA^PR3,3^MD10^JUS^LRN^CI0^XZ^XA^LL

但在它被确认之前断开连接。

直到^LL部分,他们正在发送确切的数据数据。但是,这项活动向我表明:

  1. 您的 x86 和 x64 代码可能使用或不使用相同的代码逻辑,因为它们发送具有不同帧的相同 TCP 数据(尽管这可能与套接字内部使用的 Nagle 算法有关)。

  2. 在 Win7x64 上,套接字过早断开连接,这可能是一个编码问题,例如,如果您过早地关闭了TClientSocket对代码遇到的某些错误的反应。

如果没有看到您的实际代码,则无法进一步解决此问题。否则,您应该在代码中添加一些日志记录,以便您知道它在每个步骤中实际执行的操作(例如关闭套接字的时间和原因)。

于 2013-09-13T19:51:17.220 回答