Bad file descriptor error using Net::HTTP

B

brian.wil.greene

I am trying to access a .net page via my ruby app and pass it a couple
parameters. Every thing I have tried has resulted in this Bad file
descriptor, I am wondering if it is something wrong with my
configuration, not the code. Here is the code that is causing
problems:

Net::HTTP.version_1_2
Net::HTTP.start('www.url.com', 80) {
|http|
response =
http.post('/DoSomething.aspx',
'id=#{params[:id]}&path=#{params[:imagerecord]}',
{ 'Content-Type' => 'application/x-www-form-
urlencoded' })
puts response.body()
}

Here is the error I get:

Errno::EBADF (Bad file descriptor - connect(2)):
c:/ruby/lib/ruby/1.8/net/http.rb:560:in `initialize'
c:/ruby/lib/ruby/1.8/net/http.rb:560:in `connect'
c:/ruby/lib/ruby/1.8/timeout.rb:48:in `timeout'
c:/ruby/lib/ruby/1.8/timeout.rb:76:in `timeout'
c:/ruby/lib/ruby/1.8/net/http.rb:560:in `connect'
c:/ruby/lib/ruby/1.8/net/http.rb:553:in `do_start'
c:/ruby/lib/ruby/1.8/net/http.rb:542:in `start'
c:/ruby/lib/ruby/1.8/net/http.rb:440:in `start'

I am on Windows 2003 serer with Ruby 1.8.4 and Mongrel. Any help would
be greatly appreciated.
 
D

Daniel Berger

I am trying to access a .net page via my ruby app and pass it a couple
parameters. Every thing I have tried has resulted in this Bad file
descriptor, I am wondering if it is something wrong with my
configuration, not the code. Here is the code that is causing
problems:

Net::HTTP.version_1_2
Net::HTTP.start('www.url.com', 80) {
|http|
response =
http.post('/DoSomething.aspx',
'id=#{params[:id]}&path=#{params[:imagerecord]}',
{ 'Content-Type' => 'application/x-www-form-
urlencoded' })
puts response.body()
}

Here is the error I get:

Errno::EBADF (Bad file descriptor - connect(2)):
c:/ruby/lib/ruby/1.8/net/http.rb:560:in `initialize'
c:/ruby/lib/ruby/1.8/net/http.rb:560:in `connect'
c:/ruby/lib/ruby/1.8/timeout.rb:48:in `timeout'
c:/ruby/lib/ruby/1.8/timeout.rb:76:in `timeout'
c:/ruby/lib/ruby/1.8/net/http.rb:560:in `connect'
c:/ruby/lib/ruby/1.8/net/http.rb:553:in `do_start'
c:/ruby/lib/ruby/1.8/net/http.rb:542:in `start'
c:/ruby/lib/ruby/1.8/net/http.rb:440:in `start'

I am on Windows 2003 serer with Ruby 1.8.4 and Mongrel. Any help would
be greatly appreciated.

Line 560 of net/http.rb is this:

s = timeout(@open_timeout) { TCPSocket.open(conn_address(),
conn_port()) }

What happens when you run this standalone snippet?

require 'socket'
require 'timeout'

s = Timeout.timeout(5){
TCPSocket.open(url, 80)
}

p s

s.close

Regards,

Dan
 
B

brian.wil.greene

I am trying to access a .net page via my ruby app and pass it a couple
parameters. Every thing I have tried has resulted in this Bad file
descriptor, I am wondering if it is something wrong with my
configuration, not the code. Here is the code that is causing
problems:
Net::HTTP.version_1_2
Net::HTTP.start('www.url.com', 80) {
|http|
response =
http.post('/DoSomething.aspx',
'id=#{params[:id]}&path=#{params[:imagerecord]}',
{ 'Content-Type' => 'application/x-www-form-
urlencoded' })
puts response.body()
}
Here is the error I get:
Errno::EBADF (Bad file descriptor - connect(2)):
c:/ruby/lib/ruby/1.8/net/http.rb:560:in `initialize'
c:/ruby/lib/ruby/1.8/net/http.rb:560:in `connect'
c:/ruby/lib/ruby/1.8/timeout.rb:48:in `timeout'
c:/ruby/lib/ruby/1.8/timeout.rb:76:in `timeout'
c:/ruby/lib/ruby/1.8/net/http.rb:560:in `connect'
c:/ruby/lib/ruby/1.8/net/http.rb:553:in `do_start'
c:/ruby/lib/ruby/1.8/net/http.rb:542:in `start'
c:/ruby/lib/ruby/1.8/net/http.rb:440:in `start'
I am on Windows 2003 serer with Ruby 1.8.4 and Mongrel. Any help would
be greatly appreciated.

Line 560 of net/http.rb is this:

s = timeout(@open_timeout) { TCPSocket.open(conn_address(),
conn_port()) }

What happens when you run this standalone snippet?

require 'socket'
require 'timeout'

s = Timeout.timeout(5){
TCPSocket.open(url, 80)

}

p s

s.close

Regards,

Dan


Dan,

Thanks. Here is the error I get when executing the above code:

Timeout::Error (execution expired):
c:/ruby/lib/ruby/1.8/timeout.rb:54:in `open'
c:/ruby/lib/ruby/1.8/timeout.rb:56:in `timeout'

I know it's a valid URL. The page I am trying to access is sitting on
the same box as my rails app.
 
D

Daniel Berger

Dan,

Thanks. Here is the error I get when executing the above code:

Timeout::Error (execution expired):
c:/ruby/lib/ruby/1.8/timeout.rb:54:in `open'
c:/ruby/lib/ruby/1.8/timeout.rb:56:in `timeout'

I know it's a valid URL. The page I am trying to access is sitting on
the same box as my rails app.

That's peculiar. Firewall or proxy issue perhaps? Maybe you need
rubysspi?

http://rubyforge.org/projects/rubysspi/

Otherwise, I'm at a loss.

Regards,

Dan
 

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

No members online now.

Forum statistics

Threads
473,773
Messages
2,569,594
Members
45,114
Latest member
GlucoPremiumReview
Top