Socket Library in Clojure

2012-04-27 Thread Murtaza Husain
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 -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clo

Re: Socket Library in Clojure

2012-04-27 Thread Baishampayan Ghose
> 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. Can't you use JVM interop directly? There is an example here - http://nakkaya.com/2010/02/10/a-simple-clojure-irc-client/ Regards, BG -- Baishampayan

Re: Socket Library in Clojure

2012-04-27 Thread Jim - FooBar();
Yes go with Java interop...sockets are pretty straight forward. Jim On 27/04/12 11:15, Baishampayan Ghose wrote: 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. Can't you use JVM interop directly? The

Re: Socket Library in Clojure

2012-04-27 Thread Sun Ning
Take a look at aleph: https://github.com/ztellman/aleph Aleph is a high-level library for event-driven network programming. On 04/27/2012 06:12 PM, Murtaza Husain wrote: Hi, I was looking for socket libraries in clojure. The requirement is to connect via telnet to a mainframe based system and

Re: Socket Library in Clojure

2012-04-27 Thread David Powell
On Fri, Apr 27, 2012 at 11:12 AM, Murtaza Husain 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.

Re: Socket Library in Clojure

2012-04-27 Thread Mark Rathwell
Depending on what you are trying to do, you will probably also want to have a look at pallet [1], clj-ssh [2], and clojure-control [3]. [1] http://palletops.com/ [2] https://github.com/hugoduncan/clj-ssh [3] https://github.com/killme2008/clojure-control On Fri, Apr 27, 2012 at 6:15 AM, Baishampa