From: "NAKAMURA, Hiroshi" Date: 2003-08-15T10:55:44+09:00 Subject: Re: ruby-dev summary 21134-21191 Hi, > From: "Paul Brannan" > Sent: Friday, August 15, 2003 1:38 AM > > NAKAMURA Hiroshi announced that he is ready to import soap4r in the > > ruby's CVS repository. But we still have some problems: > > > > * soap4r depends on devel-logger. > > * soap4r depends on http-access2 > > (http-access2 covers almost same layer with net/http). > > > > Minero Aoki suggested to bundle http-access2 as the internal library > > of soap4r (e.g. soap4r/http). > > What does http-access2 have that net/http does not? Thread safe. At least I hope. And simple implementation that is easy enough for me to maintenance. > Could soap4r be rewritten to use net/http? soap4r now runs with net/http. You can connect to server via HTTP without http-access2. With http-access2, you also get; * Thread safe SOAP client * Persistent connection (faster when multiple connection to the same server) Regards, // NaHi