Running new job on XCOM for Windows Azure server it is failing with:
XCOMN0298E Unable to allocate remote transaction program: Txpi 211: Socket connect error return value = 10060
XCOM™ Data Transport® for Windows
The first part of the message ("XCOMN0298E Unable to allocate remote transaction program") indicates that XCOM running in a Windows box has failed to initialize the XCOM connection to its partner. The reason is in the second part of the message ("Txpi 211: Socket connect error return value = 10060") which provides the return value passed by the TCP/IP stack. In this case it is 10060 which per Windows Sockets Error Codes means WSAETIMEDOUT ("Connection timed out").
So the remote XCOM port has not responded to the connection request and the request has timed out. There are a number of possible causes for this symptom:
C:\Users\user>netstat -an | find "804"
TCP 0.0.0.0:8044 0.0.0.0:0 LISTENING
TCP 0.0.0.0:8045 0.0.0.0:0 LISTENING
TCP 2.3.4.5:60951 1.2.3.4:8044 SYN_SENT
2022/04/13 10:39:24 TID=000001 PRG=xcomtcp PID=43271 IP=2.3.4.5 PORT=8044
XCOMU0785I Starting TCP/IP Connection.
it can still mean that a firewall allows traffic 2.3.4.5 > 1.2.3.4 but not backwards 1.2.3.4 > 2.3.4.5
XCOM support under cloud platforms Microsoft Azure, Amazon AWS, Google GCP
To enable telnet client on Windows go to "Control Panel" > "Programs & Features" > "Turn Windows features on or off" > "Telnet Client"
(On Windows Server "Turn Windows features on or off" will redirect to "Server Manager" where the "Features" option will show "Telnet Client")