Does TCL provides a functionality to listen to external servers?
I want to create a socket with TCL-based client-side, which gonna listen to not TCL-based server-side. In the common case I’m gonna send XML (SOAP) message and I’m gonna wait for some response, which gonna be some kind of mask.
If TCL does support such functionality, please help me with some hyper-links to already existing API’s or some other posts!
Any help is useful! Thanks in advance!
Tcl does support sockets. You can either write your own WS client implementation using the
socketcommand, you can use the Tcl http package, or the TclSoap library as @Johannes13 suggested.