[Pharo-project] curl?
hi guys, how can I use curl from the image? where is the code I should install? sebastian o/
p := PipeableOSProcess command: 'curl "http://google.com"'. p output. -- View this message in context: http://forum.world.st/curl-tp3972448p3972641.html Sent from the Pharo Smalltalk mailing list archive at Nabble.com.
On 02.11.2011 12:31, Sean P. DeNigris wrote:
p := PipeableOSProcess command: 'curl "http://google.com"'. p output.
-- View this message in context: http://forum.world.st/curl-tp3972448p3972641.html Sent from the Pharo Smalltalk mailing list archive at Nabble.com.
There is also a plugin in (some?) vm's calling curl directly, whose image-side glue is part of the package found at: http://www.squeaksource.com/CurlPlugin.html (Class Curl afaict) Cheers, Henry
Sebastian, On 01 Nov 2011, at 20:50, Sebastian Sastre wrote:
how can I use curl from the image? where is the code I should install?
Why do you need curl ? (Not that curl isn't a great tool, mind you). Unless you need some feature that is not supported by any of the HTTP clients I would always use a pure Smalltalk solution: it is less hassle and you can read/manipulate the implementation. Note that there are already some people who successfully used the Zinc+Zodiac combination to do HTTPS. Regards, Sven
participants (4)
-
Henrik Sperre Johansen -
Sean P. DeNigris -
Sebastian Sastre -
Sven Van Caekenberghe