Zouplaz
#1
Hello, I’m goind crazy with this piece of code
response = @http.get(url, headers)
raise “url #{url} unreachable on host #{@host}:#{@port} - code
#{response.code}” if response.code != 200
The exception is raised even when response.code contains 200 !!
What’s wrong ?
Thanks
Zouplaz
#2
le 05/09/2006 11:18, Zouplaz nous a dit:
Hello, I’m goind crazy with this piece of code
response = @http.get(url, headers)
raise “url #{url} unreachable on host #{@host}:#{@port} - code
#{response.code}” if response.code != 200
‘200’ !!!
Zouplaz
#3
Zouplaz wrote:
Hello, I’m goind crazy with this piece of code
response = @http.get(url, headers)
raise “url #{url} unreachable on host #{@host}:#{@port} - code
#{response.code}” if response.code != 200
The exception is raised even when response.code contains 200 !!
What’s wrong ?
The response code isn’t a number, it’s a string. Try:
… if response.code != “200”
Zouplaz
#4
On Tuesday, September 05, 2006, at 6:29 PM, Alex Y. wrote:
What’s wrong ?
The response code isn’t a number, it’s a string. Try:
… if response.code != “200”
–
Alex
might as well do this while you are at it…
raise “url #{url} unreachable on host #{@host}:#{@port} - code
#{response.code}” unless response.code == ‘200’
_Kevin
www.sciwerks.com