Displaying 3 results from an estimated 3 matches for "rsocket".
Did you mean:
socket
2006 Aug 16
1
ActionMailer cannot use SMTP for email delivery...
...the SocketError (again on the Linux box):
Permission denied - socket(2)
/usr/lib/ruby/1.8/net/protocol.rb:206:in `initialize''
...
Which is very strange, because if I run the following snippets on the
same Linux box, I don''t get any errors whatsoever:
ruby -rsocket -e ''p Socket.getaddrinfo("NAME_OF_SMTP", "smtp")''
ruby -rsocket -e ''p Socket.getaddrinfo("IP_OF_SMTP", "smtp")''
So it doesn''t appear to be a firewall, proxy or other configuration
issue on the box that'...
2006 May 04
2
WEBrick initialisation problem
...then
reinstalling but with no success. Obviously something has changed in the
environment that it is running in but I cannot recall anything that has
been done that would be of significance. I submitted this to the Ruby
mailing list and Eric Hodel suggest I try the following:
U:\ruby>ruby -rsocket -e "TCPServer.new ''localhost'', 3000"
which proved there''s nothing already running on port 3000. Any
suggestions would be gratfuly received.
--
Posted via http://www.ruby-forum.com/.
2006 Feb 14
25
Rails and background tasks/threads
I am just getting into web servers/web applications and rails as well
so bear with me. I am trying to write a web app that, based on a
users input from the browser, will perform some task, and update the
browser (ala ajax style) as needed and/or provide a way for the user to
control the background task.
Now, I have more experience with java servlets, which makes this easy
enough for a beginner.