i used the software flex builder2 to create a page that can use
google's search webservice,and i think i had wrote the script
correctly,but can't get any result,the flex codes
are below:
<mx:WebService id="ws" wsdl="
http://api.google.com/GoogleSearch.wsdl"
result="{ti.text='yes'}" fault="{ti.text='no'}">
<mx:operation name="doGoogleSearch">
<mx:request>
<key></key> //and i also had got my key written correctly!!
<start>0</start>
<maxResults>10</maxResults>
<filter>true</filter>
<safeSearch>true</safeSearch>
<q>{searchTerm}</q>
</mx:request>
</mx:operation>
</mx:WebService>
and i use a button to do "ws.doGoogleSearch.send()",and i'd bind the
result to a datagrid component,"ti" is a textinput component,and
everytime i click this send button,all i got is the fault feedback(a
"no" in the textinput) which means didn't receive any search result
from google soap research api...can't any flexcoder help me to solve
this problem?thanks a lot!!