Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: Google + SOAP

From: gchiu:compkarori at: 25-Apr-2002 9:30

On Wed, 24 Apr 2002 13:43:20 +0200 Nenad Rakocevic <[dockimbel--free--fr]> wrote:
> google: read soap://api.google.com/GoogleSeach > > google/doGoogleSearch [ key q ... ] > google/doSpellingSuggestion [ .. ] > google/goGetCachedPage [ .. ] > > Well, it's simple and clean, i like it. > I would like to hear from others the pro/cons argument on > this approach. >
Hi Nenad, This could assume that http is the default transport mechanism, and we could supply a refinement for alternatives eg google/goGetCachedPage/smtp [ .. ] and one of the reasons I prefer 'to-soap is that 'read is a native, and already overloaded. And if we use a mezzanine function, we can proceed regardless of what RT do, whereas 'read requires assistance from RT. But, if you really want to use 'read google: to-soap read soap://api.google.com/GoogleSeach.wsdl <G> -- Graham Chiu