I'm trying to get the response code (200,404 etc) from i THINK a Response type in the HTTP class with simpleHTTP Thus far:
--how to get the http response Int from response
getStatusCode response = print 0
--this works...
--- othercode ---
rsp <- simpleHTTP (defaultGETRequest_ clean_uri)
file_buffer <- getResponseBody(rsp)
--this fails
response = (getStatusCode rsp)
