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

[REBOL] Re: Google + SOAP

From: jason:cunliffe:verizon at: 20-Apr-2002 11:24

> Do-Google-Search [ > key: #00000000000000000000000000000000 > q: "shrdlu winograd maclisp teletype" > start: 0 > maxResults: 10 > filter: true > restrict: none > safeSearch: false > lr: none > ie: 'latin1 > oe: 'latin1 > ]
Nice! .. but one might need an option to include schema spec xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/1999/XMLSchema-instance" xmlns:xsd="http://www.w3.org/1999/XMLSchema"> ..and how about
>> Do-Google-Search/soap ;current >> Do-Google-Search/beep
; Assuming google may end up with various protocols to access its API, perhaps built with beep http://www.beepcore.org/beepcore/home.jsp http://www.beepcore.org/beepcore/about_qanda.jsp
>> Do-Google-Search/wsdl >> Do-Google-Search/soap/sendxml
;Prepares SOAP xml Google query for use by other. This refinemetn returns the correct xml-formatted request
>> Do-Google-Search/xmlreply
;Returns search as XML formatted
>> Do-google-Search/rebol
; The default - returns results as REBOL object block ./Jason