Hi,

I'm using GHC 6.12.1 on Windows 7. I've built the latest Network package using Haskell's MinGW and installed HTTP package on top of this.

The code below builds fine, but on execution it just sits there grabbing ever increasing amounts of memory.

It's a simplified call that I've got working fine in Linux.

Is this a known issue?  Anyone else had success using HTTP from Windows?


Thanks,

Phil.


import qualified Network.HTTP as HTTP

main :: IO ()
main
  = do
x <- HTTP.simpleHTTP(HTTP.getRequest "http://maps.google.com/maps/api/geocode/json?address=London&sensor=false";)
    print x
_______________________________________________
Haskell-Cafe mailing list
Haskell-Cafe@haskell.org
http://www.haskell.org/mailman/listinfo/haskell-cafe

Reply via email to