[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

Help with socket method in rails controller

max.murphy

7/11/2006 7:14:00 PM

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.

1 Answer

Timothy Goddard

7/12/2006 6:06:00 AM

0

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.

max.murphy@gmail.com wrote:
> 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.