2010-03-22 69 views
0

Heyy Java客戶端程序的關鍵字我有搜索從WSDL

我生成使用http://api.search.live.net/search.wsdl一個客戶端程序,通過從Eclipse的Web項目的幫助下尋找.. 我生成客戶端密鑰的話這個服務有問題這項服務。 我已經完成了對這項服務(live.net)的搜索,但我無法在控制檯上顯示。我怎麼能做到這一點?

公共靜態無效的主要(字串[] args)拋出的RemoteException {

LiveSearchPortTypeProxy bb=new LiveSearchPortTypeProxy(); 

SearchRequest request=new SearchRequest(); 

SearchRequestType1 bbs=new SearchRequestType1(); 

aas.setParameters(request); 

sorgu.setAppId("*****************************************"); //you can take this ID from live service for using this service 

sorgu.setSources(new SourceType[]{SourceType.Web}); 

sorgu.setQuery("keyword"); 

SearchResponseType0 cevap= bb.search(bbs); 





} 

回答

0

看一看的cevap變量,並在調試器的公共get方法,看看你有什麼。

您很可能最終會得到一個org.w3c.Node實例,它代表解析響應的根。這可以像其他任何DOM樹一樣對待。