> 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 -- To unsubscribe from this list, please send an email to [EMAIL PROTECTED] with "unsubscribe" in the subject, without the quotes.
