Help with socket method in rails controller

M

max.murphy

I'm trying to write a method in a controller to write to a socket, I'm
kinda stumped right now.
Here's my code:
def socketwriter
require "socket"
s=TCPSocket.new("ip","port")
s.write ("arguments|I|want|to|send|")
end

so if I just write this as a ruby script and code in the ip, port,
arguments, etc. it works great. I'm trying to figure out how to post to

this method in rails. I have a database that contains all the
information I need for the socket parameters and the commands to send,
I just need a little help on how to post them to the controller.

Thanks for any help.
 
T

Timothy Goddard

Post parameters in Rails are stored in the params hash (accessible from
the controller). Create an action, get your data from the params hash
then use the socket in the normal way.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
474,208
Messages
2,571,082
Members
47,683
Latest member
AustinFairchild

Latest Threads

Top