It might be related to the spec that is failing: library\net\http\http\post_form_spec.rb critical:Net::HTTP.post_form when passed URI POSTs the passed form data to the given uri
I've filed a bug: http://ironruby.codeplex.com/WorkItem/View.aspx?WorkItemId=1529 Tomas -----Original Message----- From: [email protected] [mailto:[email protected]] On Behalf Of Shay Friedman Sent: Saturday, June 06, 2009 1:34 AM To: [email protected] Subject: [Ironruby-core] Net/http post_form problem Hi, I'm trying to execute the next code: require 'net/http' require 'uri' puts "starting..." url = URI.parse('http://localhost/test3/demo.aspx') puts "retrieving..." res = Net::HTTP.post_form(url, {"FullName" => "Shay Friedman"}) puts "writing" File.open("test.txt","w") { |file| file.print res.body } It uses the net/http library to send a post request to the given web site. The problem is that it gets a timeout every single time on the post_form method. I have tried to put a breakpoint on the Page_Load event of the demo.aspx code and the breakpoint is never hit! I tried this code sample using MRI and it worked great... Is it a bug? Thanks, Shay ------------- http://www.ironshay.com The error I receive after waiting for quite a long time: -- Posted via http://www.ruby-forum.com/. _______________________________________________ Ironruby-core mailing list [email protected] http://rubyforge.org/mailman/listinfo/ironruby-core _______________________________________________ Ironruby-core mailing list [email protected] http://rubyforge.org/mailman/listinfo/ironruby-core
