On Fri, Apr 27, 2012 at 11:12 AM, Murtaza Husain <[email protected]> wrote: > Hi, > > I was looking for socket libraries in clojure. The requirement is to connect > via telnet to a mainframe based system and run commands on it. > > Thanks, > Murtaza
Note that there is more to telnet protocol than just a bare socket. Telnet is a protocol, and servers might send various protocol negotiation options etc. You might want to look at Apache Commons.Net, which has a TelnetClient class: http://commons.apache.org/net/api-3.1/org/apache/commons/net/telnet/TelnetClient.html -- Dave -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to [email protected] Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/clojure?hl=en
