W
Wilson Bilkovich
Has anyone done anything with the 3270 protocol in Ruby?
I write a lot of code that needs connectivity to IBM mainframe hosts
via TN3270E. At the moment, I do that by 'wiring up' a terminal
emulator and telling it to do things for me.
However, this means that I only get one instance per terminal session,
and because these things are graphical, I can't run it headless inside
a cron job, etc, etc.
I now need something more industrial-strength that I can run many
concurrent copies of, etc, etc. I'd like to build a Ruby framework
for the kinds of things I do with 3270, and slap it on top of a
library.
For fellow mainframe geeks, imagine (totally contrived example,
probably not what it would look like):
host.screen do |s|
s.put :text =3D> "Hello World" :field =3D> 'fieldname'
s.transmit if scr.ready?
end
Unfortunately, I can't find anything that implements 3270 other than
terminal emulators and other application-level stuff. It would be
nice if there were some C library that could be wrapped as a Ruby
extension.
Has anyone done anything like this, and just kept it around for
personal use? I'd like to avoid reinventing the wheel, but if I'm the
only one with this need, I'll go ahead and start working on a library.
Thanks,
--Wilson.
I write a lot of code that needs connectivity to IBM mainframe hosts
via TN3270E. At the moment, I do that by 'wiring up' a terminal
emulator and telling it to do things for me.
However, this means that I only get one instance per terminal session,
and because these things are graphical, I can't run it headless inside
a cron job, etc, etc.
I now need something more industrial-strength that I can run many
concurrent copies of, etc, etc. I'd like to build a Ruby framework
for the kinds of things I do with 3270, and slap it on top of a
library.
For fellow mainframe geeks, imagine (totally contrived example,
probably not what it would look like):
host.screen do |s|
s.put :text =3D> "Hello World" :field =3D> 'fieldname'
s.transmit if scr.ready?
end
Unfortunately, I can't find anything that implements 3270 other than
terminal emulators and other application-level stuff. It would be
nice if there were some C library that could be wrapped as a Ruby
extension.
Has anyone done anything like this, and just kept it around for
personal use? I'd like to avoid reinventing the wheel, but if I'm the
only one with this need, I'll go ahead and start working on a library.
Thanks,
--Wilson.