[REBOL] Re: Google + SOAP
From: gchiu:compkarori at: 24-Apr-2002 11:44
> Here's how web services could be supported by REBOL :
>
> * code example :
>
> service: open soap://api-ab.google.com/search/beta2/GoogleSearchService
> res: insert service [ doGoogleSearch [
> key: #00000000000000000000000000000000
> q: "shrdlu winograd maclisp teletype"
> start: 0
> maxResults: 10
> filter: true
> restrict: none
> safeSearch: false
> lr: none
> ie: 'latin1
> oe: 'latin1
> ]]
> close service
>
How about, as an alternative, ...
google: to-soap http://api.google.com/GoogleSearch.wsdl
google/doGoogleSearch [ key q ... ]
google/doSpellingSuggestion [ .. ]
google/goGetCachedPage [ .. ]
?
--
Graham Chiu