当前位置:首页 » 网页前端 » 天气预报web服务
扩展阅读
webinf下怎么引入js 2023-08-31 21:54:13
堡垒机怎么打开web 2023-08-31 21:54:11

天气预报web服务

发布时间: 2023-01-05 23:48:21

‘壹’ 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!