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

[REBOL] Re: Google + SOAP

From: dockimbel:free at: 24-Apr-2002 13:43

Hi Graham, Graham Chiu wrote:
> How about, as an alternative, ... > > google: to-soap http://api.google.com/GoogleSearch.wsdl > > google/doGoogleSearch [ key q ... ] > google/doSpellingSuggestion [ .. ] > google/goGetCachedPage [ .. ]
Soap is a protocol, so i prefer write it like this : 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. -DocKimbel