java調用webservice 天氣預報

public static void WeatherTest(){
  
  try {
   
   String endpoint = "http://www.webxml.com.cn/WebServices/WeatherWebService.asmx?wsdl";
   Service service = new Service();
   Call call = (Call)service.createCall();// 通過service創建call對象

   // 設置service所在URL

   call.setTargetEndpointAddress(new java.net.URL(endpoint));

   call.setOperationName(new QName("http://WebXml.com.cn/", "getWeatherbyCityName"));
   call.addParameter(new QName("http://WebXml.com.cn/","theCityName"),org.apache.axis.encoding.XMLType.XSD_STRING, javax.xml.rpc.ParameterMode.IN);

   call.setUseSOAPAction(true);

   call.setReturnType(org.apache.axis.encoding.XMLType.SOAP_VECTOR); //返回參數的類型(不能用Array,否則報錯)

   call.setSOAPActionURI("http://WebXml.com.cn/getWeatherbyCityName");

   Vector ret =  (Vector) call.invoke(new Object[]{"大慶"});

   System.out.println("--------"+ret);

  } catch (Exception e) {
   // TODO Auto-generated catch block
   e.printStackTrace();
  }
 }

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章