tags:

views:

62

answers:

2

In addition to jakarta commons http client, what are some other generic http clients? Can you point to what were your learnings experiences with it?

+2  A: 

LWP is the standard HTTP library for Perl. I haven't used it very much, but I do use its companion command-line utilities (GET, POST, etc.) a bit, and they have a useful set of functionality.

Chris Jester-Young
+2  A: 

cURL (a.k.a. libcurl). libcurl has bindings for about 40 different programming languages.

TimB