『壹』 PHP 頁面調用天氣預報web服務 我想在一個PHP頁面直接調用現成的webservice
完全可以。前提是要打開soap擴展,調用方法如下:
<?php
$client = new SoapClient('http://webservice.webxml.com.cn/WebServices/WeatherWS.asmx?wsdl');
$parm=array('theCityCode'=>'三亞','theUserID'=>'');
$result=$client->getWeather($parm);
print_r($result);
?>
『貳』 如何使用webserver實現在線天氣預報查詢
步驟 :
1 、新建web 項目,添加窗體。
2 、 引用右鍵--> 添加服務引用-->高級--> 添加Web引用。
3 、 將Web介面復制到URL右邊的框里-->點擊輸入框右邊的箭頭,測試連接(觀察左下角看是否連接成功)--> 最右邊可以更改Web引用名-->添加引用。
『叄』 java web service實現天氣預報功能
前台js界面代碼:
//省份
functionLoadProvince(){
$.ajax({
type:"POST",
url:"ashx/weatherHandler.ashx",
data:"option=province",
success:function(result){
$(".sel-provinceoption").remove();
vararry=result.split('|');
varobj=null;
for(vari=0;i<arry.length;i++){
if(arry[i]!=null&&arry[i]!=""){
obj=arry[i].split(',');
$(".sel-province").append("<optionvalue='"+obj[1]+"'>"+obj[0]+"</option>");
}
}
$(".sel-province").find("option[text='北京']").attr("selected","selected");
},
error:function(errorMsg){
$(".result-tabletr").remove();
$(".result-table").append("<tr><td>省份請求出現錯誤,請您稍後重試。。。</td></tr>");
}
});
}
//城市
functionLoadCity(provinceid){
$.ajax({
type:"POST",
url:"ashx/weatherHandler.ashx",
data:"provinceid="+provinceid+"&option=city",
success:function(result){
$(".sel-cityoption").remove();
vararry=result.split('|');
varobj=null;
for(vari=0;i<arry.length;i++){
if(arry[i]!=null&&arry[i]!=""){
obj=arry[i].split(',');
$(".sel-city").append("<optionvalue='"+obj[1]+"'>"+obj[0]+"</option>");
}
}
},
error:function(errorMsg){
$(".result-tabletr").remove();
$(".result-table").append("<tr><td>城市請求出現錯誤,請您稍後重試。。。</td></tr>");
}
});
}
//載入天氣
functionGetWeather(cityid){
$.ajax({
type:"POST",
url:"ashx/weatherHandler.ashx",
data:"cityid="+cityid+"&option=weather",
success:function(result){
$(".result-tabletr").remove();
vararry=result.split('|');
varobj=null;
for(vari=0;i<arry.length;i++){
if(arry[i]!=null&&arry[i]!=""){
if(arry[i].indexOf(".gif")>0){
$(".result-table").append("<tr><td><imagesrc='images/"+arry[i]+"'/></td></tr>");
}
else{
$(".result-table").append("<tr><td>"+arry[i]+"</td></tr>");
}
}
}
},
error:function(errorMsg){
$(".result-tabletr").remove();
$(".result-table").append("<tr><td>天氣數據請求出現錯誤,請您稍後重試。。。</td></tr>");
}
});
}
html代碼:
<body>
<formid="form1"runat="server">
<divclass="head-div">
<table>
<tr>
<td>
<selectclass="sel-provincesel">
</select>
</td>
<td>
<selectclass="sel-citysel">
</select>
</td>
<td>
<inputtype="button"class="btn-search"value="查詢"/>
</td>
</tr>
</table>
</div>
<divclass="result-div">
<tableclass="result-table">
</table>
</div>
</form>
</body>
由於js不支持跨域,直接ajax+ashx一般處理程序(在裡面調用天氣介面)。一般處理程序代碼如下:
usingSystem.Web;
usingSystem;
usingSystem.Collections.Generic;
usingSystem.Linq;
usingSystem.Web;
usingSystem.Text;
namespaceWeatherTest.ashx
{
///<summary>
///weatherHandler的摘要說明
///</summary>
publicclassweatherHandler:IHttpHandler
{
WeatherWsClient.WeatherWSSoapClientclient=newWeatherWsClient.WeatherWSSoapClient();
publicvoidProcessRequest(HttpContextcontext)
{
context.Response.ContentType="text/plain";
string[]result=null;
stringoption=context.Request.Form["option"];
switch(option)
{
case"province":
result=GetProvinces();
break;
case"city":
result=GetCitys(context.Request.Form["provinceid"]);
break;
case"weather":
result=GetWeather(context.Request.Form["cityid"],null);
break;
}
stringstr=ConvertToString(result,option);
context.Response.Write(str);
}
///<summary>
///數組轉字元串
///</summary>
///<paramname="result"></param>
///<paramname="option"></param>
///<returns></returns>
privatestringConvertToString(string[]result,stringoption)
{
StringBuildersb=newStringBuilder();
foreach(stringiteminresult)
{
sb.Append(item+"|");
}
returnsb.ToString();
}
///<summary>
///省份
///</summary>
///<returns></returns>
privatestring[]GetProvinces()
{
returnclient.getRegionProvince();
}
///<summary>
///城市
///</summary>
///<paramname="provinceid"></param>
///<returns></returns>
privatestring[]GetCitys(stringprovinceid)
{
returnclient.getSupportCityString(provinceid);
}
///<summary>
///天氣數據
///</summary>
///<paramname="cityid"></param>
///<paramname="userid"></param>
///<returns></returns>
privatestring[]GetWeather(stringcityid,stringuserid)
{
returnclient.getWeather(cityid,userid);
}
publicboolIsReusable
{
get
{
returnfalse;
}
}
}
}
『肆』 天氣預報web服務
首先你在你的web項目下面的References,右擊References,點擊Add Web
Refercenes 然後把http://webservice.webxml.com.cn/WebServices/WeatherWS.asmx地址輸入到URl文本框後面,然後點擊後面的綠色箭頭,再點擊添加按鈕,此時在web項目里會出現Web Refercens下面會出現一個命名空間,此命名空間里就是web服務里所包含類,然後你在一個頁面上添加一個測試按鈕,在按鈕事件里寫如下代碼: cn.com.webxml.webservice.WeatherWS wws = new cn.com.webxml.webservice.WeatherWS();
string[] data= wws.getWeather("上海","");
data數組里就是關於上海城市的天氣情況的數據,然後你根據實際情況做處理即可
『伍』 在調用天氣預報webservice時出現java.io.IOException: Server returned HTTP response code:400
如果是要調用webservice的話,JS很難實現,因為webservice的客戶端有很多JAR包的,除非用JS模擬JAVA的中的webservice調用。
其實你可以到網上找一個天氣預報的頁面,然後直接在頁面上嵌套一個iframe,或者用AJAX獲取response,然後通過document.getElementById('xx').innerHTML = '得到的response字元串';的方式來實現。
GOOD LUCK!