Re: [Haskell-cafe] Network.Curl and posting XML data

2009-10-07 Thread mf-hcafe-15c311f0c
I stand corrected. The answer was 'cabal install HsOpenSSL'. On Wed, Oct 07, 2009 at 09:37:38PM +1100, Erik de Castro Lopo wrote: > To: haskell-cafe@haskell.org > From: Erik de Castro Lopo > Date: Wed, 7 Oct 2009 21:37:38 +1100 > Subject: Re: [Haskell-cafe] Network.Cur

Re: [Haskell-cafe] Network.Curl and posting XML data

2009-10-07 Thread Magnus Therning
On Wed, Oct 7, 2009 at 11:37 AM, Erik de Castro Lopo wrote: > mf-hcafe-15c311...@etc-network.de wrote: > >> I am not aware of any SSL implementation in haskell either (even > > I really find this rather surprising. Ocaml has a very decent wrapper > around Openssl that works rather well so it can't

Re: [Haskell-cafe] Network.Curl and posting XML data

2009-10-07 Thread Erik de Castro Lopo
mf-hcafe-15c311...@etc-network.de wrote: > I am not aware of any SSL implementation in haskell either (even I really find this rather surprising. Ocaml has a very decent wrapper around Openssl that works rather well so it can't be that hard. > though I think it should go not into HTTP but into

Re: [Haskell-cafe] Network.Curl and posting XML data

2009-10-07 Thread mf-hcafe-15c311f0c
On Wed, Oct 07, 2009 at 02:38:05PM +1100, Erik de Castro Lopo wrote: > To: haskell-cafe@haskell.org > From: Erik de Castro Lopo > Date: Wed, 7 Oct 2009 14:38:05 +1100 > Subject: Re: [Haskell-cafe] Network.Curl and posting XML data > > Dmitry Olshansky wrote: > > > Hi

Re: [Haskell-cafe] Network.Curl and posting XML data

2009-10-06 Thread Erik de Castro Lopo
Dmitry Olshansky wrote: > Hi, Erik, > > Did you try Network.HTTP? Is it not enough? Apparently not. Now I need to do a post to a HTTPS server and Network.HTTP does not seem to support HTTPS. Is that really right? Erik -- -- E

Re: [Haskell-cafe] Network.Curl and posting XML data

2009-08-11 Thread Erik de Castro Lopo
Erik de Castro Lopo wrote: > I thought Network.HTTP was being deprecated and that Network.Curl was > supposed to replace it. Cale on IRC pointed out that Network.Curl does more than just HTTP and that Network.HTTP allows more control than Network.Curl. Erik -- --

Re: [Haskell-cafe] Network.Curl and posting XML data

2009-08-11 Thread Erik de Castro Lopo
Dmitry Olshansky wrote: > Did you try Network.HTTP? Is it not enough? I thought Network.HTTP was being deprecated and that Network.Curl was supposed to replace it. Network.HTTP certainly looks like it can do it. Thanks, Erik -- --

Re: [Haskell-cafe] Network.Curl and posting XML data

2009-08-11 Thread Dmitry Olshansky
Hi, Erik, Did you try Network.HTTP? Is it not enough? 2009/8/12 Erik de Castro Lopo > > Hi all, > > I need to do a HTTP post of XML data (Content-type == "text/xml") to > a HTTP (eventually HTTPS) server and to retrieve both the response > code and some returned XML data. > > I have had an exte