Quote from Foz:
Can anyone recommend a book for learning TCP/IP socket programming for Visual Basic in Windows?
I want to be able to send orders to a broker with a raw FIX interface (no API, just a FIX engine with an IP address and port). I'm familiar with VB but not network programming.
Quote from Foz:
Can anyone recommend a book for learning TCP/IP socket programming for Visual Basic in Windows?
I want to be able to send orders to a broker with a raw FIX interface (no API, just a FIX engine with an IP address and port). I'm familiar with VB but not network programming.
I would stay away from WinSock control with VB, specially if you ever need to run it on a server. It's a relic from the past.Quote from nitro:
Foz,
I would be interested in knowing too.
Thanks,
nitro
Quote from Trader.NET:
I would stay away from WinSock control with VB, specially if you ever need to run it on a server. It's a relic from the past.
If you use .NET, you can use TcpClient and TcpServer in the NET namespace. There're some sample codes at msdn.com as well.
You can also copy and paste java sample code from IB TWS, only a few lines of changes will make it work in C#.