`

axis中webservice天气预报例子

阅读更多

客户端:以调用天气预报的webservice为例子:

加入相关包:

activation.jar

axis-ant.jar

axis.jar

commons-discovery-0.2.jar

commons-logging-1.0.4.jar

jaxrpc.jar

log4j-1.2.8.jar

mail.jar

saaj.jar

wsdl4j-1.5.1.jar

访问找到的wsdl地址,将内容复制到文件以wsdl为后缀(地址忘记了): WeatherWebService.wsdl,将该文件放在应用目录下面的wsdl文件加下:

<?xml version="1.0" encoding="utf-8"?>
<wsdl:definitions xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
	xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
	xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:tns="http://WebXml.com.cn/"
	xmlns:s="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/"
	xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" targetNamespace="http://WebXml.com.cn/"
	xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
	<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">&lt;a
		href="http://www.webxml.com.cn/"
		target="_blank"&gt;WebXml.com.cn&lt;/a&gt; &lt;strong&gt;天气预报 Web
		服务,&lt;/strong&gt;数据来源于&lt;strong&gt;中国气象局&lt;/strong&gt; &lt;a
		href="http://www.cma.gov.cn/"
		target="_blank"&gt;http://www.cma.gov.cn/&lt;/a&gt;
		,数据每2.5小时左右自动更新一次,准确可靠。包括 340 多个中国主要城市和 60
		多个国外主要城市三日内的天气预报数据。&lt;/br&gt;此天气预报Web Services请不要用于任何商业目的,若有需要请&lt;a
		href="http://www.webxml.com.cn/zh_cn/contact_us.aspx"
		target="_blank"&gt;联系我们&lt;/a&gt;,欢迎技术交流。 QQ:8409035&lt;br
		/&gt;&lt;strong&gt;使用本站 WEB 服务请注明或链接本站:http://www.webxml.com.cn/
		感谢大家的支持&lt;/strong&gt;!&lt;br /&gt;&lt;span
		style="color:#999999;"&gt;通知:天气预报 WEB 服务如原来使用地址
		http://www.onhap.com/WebServices/WeatherWebService.asmx 的,请改成现在使用的服务地址
		http://www.webxml.com.cn/WebServices/WeatherWebService.asmx
		,重新引用即可。&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&amp;nbsp;
	</wsdl:documentation>
	<wsdl:types>
		<s:schema elementFormDefault="qualified" targetNamespace="http://WebXml.com.cn/">
			<s:element name="getSupportCity">
				<s:complexType>
					<s:sequence>
						<s:element minOccurs="0" maxOccurs="1" name="byProvinceName"
							type="s:string" />
					</s:sequence>
				</s:complexType>
			</s:element>
			<s:element name="getSupportCityResponse">
				<s:complexType>
					<s:sequence>
						<s:element minOccurs="0" maxOccurs="1"
							name="getSupportCityResult" type="tns:ArrayOfString" />
					</s:sequence>
				</s:complexType>
			</s:element>
			<s:complexType name="ArrayOfString">
				<s:sequence>
					<s:element minOccurs="0" maxOccurs="unbounded" name="string"
						nillable="true" type="s:string" />
				</s:sequence>
			</s:complexType>
			<s:element name="getSupportProvince">
				<s:complexType />
			</s:element>
			<s:element name="getSupportProvinceResponse">
				<s:complexType>
					<s:sequence>
						<s:element minOccurs="0" maxOccurs="1"
							name="getSupportProvinceResult" type="tns:ArrayOfString" />
					</s:sequence>
				</s:complexType>
			</s:element>
			<s:element name="getSupportDataSet">
				<s:complexType />
			</s:element>
			<s:element name="getSupportDataSetResponse">
				<s:complexType>
					<s:sequence>
						<s:element minOccurs="0" maxOccurs="1"
							name="getSupportDataSetResult">
							<s:complexType>
								<s:sequence>
									<s:element ref="s:schema" />
									<s:any />
								</s:sequence>
							</s:complexType>
						</s:element>
					</s:sequence>
				</s:complexType>
			</s:element>
			<s:element name="getWeatherbyCityName">
				<s:complexType>
					<s:sequence>
						<s:element minOccurs="0" maxOccurs="1" name="theCityName"
							type="s:string" />
					</s:sequence>
				</s:complexType>
			</s:element>
			<s:element name="getWeatherbyCityNameResponse">
				<s:complexType>
					<s:sequence>
						<s:element minOccurs="0" maxOccurs="1"
							name="getWeatherbyCityNameResult" type="tns:ArrayOfString" />
					</s:sequence>
				</s:complexType>
			</s:element>
			<s:element name="getWeatherbyCityNamePro">
				<s:complexType>
					<s:sequence>
						<s:element minOccurs="0" maxOccurs="1" name="theCityName"
							type="s:string" />
						<s:element minOccurs="0" maxOccurs="1" name="theUserID"
							type="s:string" />
					</s:sequence>
				</s:complexType>
			</s:element>
			<s:element name="getWeatherbyCityNameProResponse">
				<s:complexType>
					<s:sequence>
						<s:element minOccurs="0" maxOccurs="1"
							name="getWeatherbyCityNameProResult" type="tns:ArrayOfString" />
					</s:sequence>
				</s:complexType>
			</s:element>
			<s:element name="ArrayOfString" nillable="true"
				type="tns:ArrayOfString" />
			<s:element name="DataSet" nillable="true">
				<s:complexType>
					<s:sequence>
						<s:element ref="s:schema" />
						<s:any />
					</s:sequence>
				</s:complexType>
			</s:element>
		</s:schema>
	</wsdl:types>
	<wsdl:message name="getSupportCitySoapIn">
		<wsdl:part name="parameters" element="tns:getSupportCity" />
	</wsdl:message>
	<wsdl:message name="getSupportCitySoapOut">
		<wsdl:part name="parameters" element="tns:getSupportCityResponse" />
	</wsdl:message>
	<wsdl:message name="getSupportProvinceSoapIn">
		<wsdl:part name="parameters" element="tns:getSupportProvince" />
	</wsdl:message>
	<wsdl:message name="getSupportProvinceSoapOut">
		<wsdl:part name="parameters" element="tns:getSupportProvinceResponse" />
	</wsdl:message>
	<wsdl:message name="getSupportDataSetSoapIn">
		<wsdl:part name="parameters" element="tns:getSupportDataSet" />
	</wsdl:message>
	<wsdl:message name="getSupportDataSetSoapOut">
		<wsdl:part name="parameters" element="tns:getSupportDataSetResponse" />
	</wsdl:message>
	<wsdl:message name="getWeatherbyCityNameSoapIn">
		<wsdl:part name="parameters" element="tns:getWeatherbyCityName" />
	</wsdl:message>
	<wsdl:message name="getWeatherbyCityNameSoapOut">
		<wsdl:part name="parameters" element="tns:getWeatherbyCityNameResponse" />
	</wsdl:message>
	<wsdl:message name="getWeatherbyCityNameProSoapIn">
		<wsdl:part name="parameters" element="tns:getWeatherbyCityNamePro" />
	</wsdl:message>
	<wsdl:message name="getWeatherbyCityNameProSoapOut">
		<wsdl:part name="parameters" element="tns:getWeatherbyCityNameProResponse" />
	</wsdl:message>
	<wsdl:message name="getSupportCityHttpGetIn">
		<wsdl:part name="byProvinceName" type="s:string" />
	</wsdl:message>
	<wsdl:message name="getSupportCityHttpGetOut">
		<wsdl:part name="Body" element="tns:ArrayOfString" />
	</wsdl:message>
	<wsdl:message name="getSupportProvinceHttpGetIn" />
	<wsdl:message name="getSupportProvinceHttpGetOut">
		<wsdl:part name="Body" element="tns:ArrayOfString" />
	</wsdl:message>
	<wsdl:message name="getSupportDataSetHttpGetIn" />
	<wsdl:message name="getSupportDataSetHttpGetOut">
		<wsdl:part name="Body" element="tns:DataSet" />
	</wsdl:message>
	<wsdl:message name="getWeatherbyCityNameHttpGetIn">
		<wsdl:part name="theCityName" type="s:string" />
	</wsdl:message>
	<wsdl:message name="getWeatherbyCityNameHttpGetOut">
		<wsdl:part name="Body" element="tns:ArrayOfString" />
	</wsdl:message>
	<wsdl:message name="getWeatherbyCityNameProHttpGetIn">
		<wsdl:part name="theCityName" type="s:string" />
		<wsdl:part name="theUserID" type="s:string" />
	</wsdl:message>
	<wsdl:message name="getWeatherbyCityNameProHttpGetOut">
		<wsdl:part name="Body" element="tns:ArrayOfString" />
	</wsdl:message>
	<wsdl:message name="getSupportCityHttpPostIn">
		<wsdl:part name="byProvinceName" type="s:string" />
	</wsdl:message>
	<wsdl:message name="getSupportCityHttpPostOut">
		<wsdl:part name="Body" element="tns:ArrayOfString" />
	</wsdl:message>
	<wsdl:message name="getSupportProvinceHttpPostIn" />
	<wsdl:message name="getSupportProvinceHttpPostOut">
		<wsdl:part name="Body" element="tns:ArrayOfString" />
	</wsdl:message>
	<wsdl:message name="getSupportDataSetHttpPostIn" />
	<wsdl:message name="getSupportDataSetHttpPostOut">
		<wsdl:part name="Body" element="tns:DataSet" />
	</wsdl:message>
	<wsdl:message name="getWeatherbyCityNameHttpPostIn">
		<wsdl:part name="theCityName" type="s:string" />
	</wsdl:message>
	<wsdl:message name="getWeatherbyCityNameHttpPostOut">
		<wsdl:part name="Body" element="tns:ArrayOfString" />
	</wsdl:message>
	<wsdl:message name="getWeatherbyCityNameProHttpPostIn">
		<wsdl:part name="theCityName" type="s:string" />
		<wsdl:part name="theUserID" type="s:string" />
	</wsdl:message>
	<wsdl:message name="getWeatherbyCityNameProHttpPostOut">
		<wsdl:part name="Body" element="tns:ArrayOfString" />
	</wsdl:message>
	<wsdl:portType name="WeatherWebServiceSoap">
		<wsdl:operation name="getSupportCity">
			<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">&lt;br
				/&gt;&lt;h3&gt;查询本天气预报Web
				Services支持的国内外城市或地区信息&lt;/h3&gt;&lt;p&gt;输入参数:byProvinceName =
				指定的洲或国内的省份,若为ALL或空则表示返回全部城市;返回数据:一个一维字符串数组
				String(),结构为:城市名称(城市代码)。&lt;/p&gt;&lt;br /&gt;</wsdl:documentation>
			<wsdl:input message="tns:getSupportCitySoapIn" />
			<wsdl:output message="tns:getSupportCitySoapOut" />
		</wsdl:operation>
		<wsdl:operation name="getSupportProvince">
			<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">&lt;br
				/&gt;&lt;h3&gt;获得本天气预报Web
				Services支持的洲、国内外省份和城市信息&lt;/h3&gt;&lt;p&gt;输入参数:无; 返回数据:一个一维字符串数组
				String(),内容为洲或国内省份的名称。&lt;/p&gt;&lt;br /&gt;</wsdl:documentation>
			<wsdl:input message="tns:getSupportProvinceSoapIn" />
			<wsdl:output message="tns:getSupportProvinceSoapOut" />
		</wsdl:operation>
		<wsdl:operation name="getSupportDataSet">
			<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">&lt;br&gt;&lt;h3&gt;获得本天气预报Web
				Services支持的洲、国内外省份和城市信息&lt;/h3&gt;&lt;p&gt;输入参数:无;返回:DataSet
				。DataSet.Tables(0) 为支持的洲和国内省份数据,DataSet.Tables(1)
				为支持的国内外城市或地区数据。DataSet.Tables(0).Rows(i).Item("ID") 主键对应
				DataSet.Tables(1).Rows(i).Item("ZoneID") 外键。&lt;br /&gt;Tables(0):ID
				= ID主键,Zone = 支持的洲、省份;Tables(1):ID 主键,ZoneID = 对应Tables(0)ID的外键,Area
				= 城市或地区,AreaCode = 城市或地区代码。&lt;/p&gt;&lt;br /&gt;
			</wsdl:documentation>
			<wsdl:input message="tns:getSupportDataSetSoapIn" />
			<wsdl:output message="tns:getSupportDataSetSoapOut" />
		</wsdl:operation>
		<wsdl:operation name="getWeatherbyCityName">
			<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">&lt;br&gt;&lt;h3&gt;根据城市或地区名称查询获得未来三天内天气情况、现在的天气实况、天气和生活指数&lt;/h3&gt;&lt;p&gt;调用方法如下:输入参数:theCityName
				= 城市中文名称(国外城市可用英文)或城市代码(不输入默认为上海市),如:上海 或
				58367,如有城市名称重复请使用城市代码查询(可通过 getSupportCity 或 getSupportDataSet
				获得);返回数据: 一个一维数组 String(22),共有23个元素。&lt;br /&gt;String(0) 到
				String(4):省份,城市,城市代码,城市图片名称,最后更新时间。String(5) 到 String(11):当天的
				气温,概况,风向和风力,天气趋势开始图片名称(以下称:图标一),天气趋势结束图片名称(以下称:图标二),现在的天气实况,天气和生活指数。String(12)
				到 String(16):第二天的 气温,概况,风向和风力,图标一,图标二。String(17) 到 String(21):第三天的
				气温,概况,风向和风力,图标一,图标二。String(22) 被查询的城市或地区的介绍 &lt;br /&gt;&lt;a
				href="http://www.webxml.com.cn/images/weather.zip"&gt;下载天气图标&lt;img
				src="http://www.webxml.com.cn/images/download_w.gif" border="0"
				align="absbottom" /&gt;&lt;/a&gt;(包含大、中、小尺寸) &lt;a
				href="http://www.webxml.com.cn/zh_cn/weather_icon.aspx"
				target="_blank"&gt;天气图例说明&lt;/a&gt; &lt;a
				href="http://www.webxml.com.cn/files/weather_eg.zip"&gt;调用此天气预报Web
				Services实例下载&lt;/a&gt; (VB ASP.net 2.0)&lt;/p&gt;&lt;br /&gt;
			</wsdl:documentation>
			<wsdl:input message="tns:getWeatherbyCityNameSoapIn" />
			<wsdl:output message="tns:getWeatherbyCityNameSoapOut" />
		</wsdl:operation>
		<wsdl:operation name="getWeatherbyCityNamePro">
			<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">&lt;br&gt;&lt;h3&gt;根据城市或地区名称查询获得未来三天内天气情况、现在的天气实况、天气和生活指数(For商业用户)&lt;/h3&gt;&lt;p&gt;调用方法同
				getWeatherbyCityName,输入参数:theUserID = 商业用户ID&lt;/p&gt;&lt;br /&gt;
			</wsdl:documentation>
			<wsdl:input message="tns:getWeatherbyCityNameProSoapIn" />
			<wsdl:output message="tns:getWeatherbyCityNameProSoapOut" />
		</wsdl:operation>
	</wsdl:portType>
	<wsdl:portType name="WeatherWebServiceHttpGet">
		<wsdl:operation name="getSupportCity">
			<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">&lt;br
				/&gt;&lt;h3&gt;查询本天气预报Web
				Services支持的国内外城市或地区信息&lt;/h3&gt;&lt;p&gt;输入参数:byProvinceName =
				指定的洲或国内的省份,若为ALL或空则表示返回全部城市;返回数据:一个一维字符串数组
				String(),结构为:城市名称(城市代码)。&lt;/p&gt;&lt;br /&gt;</wsdl:documentation>
			<wsdl:input message="tns:getSupportCityHttpGetIn" />
			<wsdl:output message="tns:getSupportCityHttpGetOut" />
		</wsdl:operation>
		<wsdl:operation name="getSupportProvince">
			<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">&lt;br
				/&gt;&lt;h3&gt;获得本天气预报Web
				Services支持的洲、国内外省份和城市信息&lt;/h3&gt;&lt;p&gt;输入参数:无; 返回数据:一个一维字符串数组
				String(),内容为洲或国内省份的名称。&lt;/p&gt;&lt;br /&gt;</wsdl:documentation>
			<wsdl:input message="tns:getSupportProvinceHttpGetIn" />
			<wsdl:output message="tns:getSupportProvinceHttpGetOut" />
		</wsdl:operation>
		<wsdl:operation name="getSupportDataSet">
			<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">&lt;br&gt;&lt;h3&gt;获得本天气预报Web
				Services支持的洲、国内外省份和城市信息&lt;/h3&gt;&lt;p&gt;输入参数:无;返回:DataSet
				。DataSet.Tables(0) 为支持的洲和国内省份数据,DataSet.Tables(1)
				为支持的国内外城市或地区数据。DataSet.Tables(0).Rows(i).Item("ID") 主键对应
				DataSet.Tables(1).Rows(i).Item("ZoneID") 外键。&lt;br /&gt;Tables(0):ID
				= ID主键,Zone = 支持的洲、省份;Tables(1):ID 主键,ZoneID = 对应Tables(0)ID的外键,Area
				= 城市或地区,AreaCode = 城市或地区代码。&lt;/p&gt;&lt;br /&gt;
			</wsdl:documentation>
			<wsdl:input message="tns:getSupportDataSetHttpGetIn" />
			<wsdl:output message="tns:getSupportDataSetHttpGetOut" />
		</wsdl:operation>
		<wsdl:operation name="getWeatherbyCityName">
			<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">&lt;br&gt;&lt;h3&gt;根据城市或地区名称查询获得未来三天内天气情况、现在的天气实况、天气和生活指数&lt;/h3&gt;&lt;p&gt;调用方法如下:输入参数:theCityName
				= 城市中文名称(国外城市可用英文)或城市代码(不输入默认为上海市),如:上海 或
				58367,如有城市名称重复请使用城市代码查询(可通过 getSupportCity 或 getSupportDataSet
				获得);返回数据: 一个一维数组 String(22),共有23个元素。&lt;br /&gt;String(0) 到
				String(4):省份,城市,城市代码,城市图片名称,最后更新时间。String(5) 到 String(11):当天的
				气温,概况,风向和风力,天气趋势开始图片名称(以下称:图标一),天气趋势结束图片名称(以下称:图标二),现在的天气实况,天气和生活指数。String(12)
				到 String(16):第二天的 气温,概况,风向和风力,图标一,图标二。String(17) 到 String(21):第三天的
				气温,概况,风向和风力,图标一,图标二。String(22) 被查询的城市或地区的介绍 &lt;br /&gt;&lt;a
				href="http://www.webxml.com.cn/images/weather.zip"&gt;下载天气图标&lt;img
				src="http://www.webxml.com.cn/images/download_w.gif" border="0"
				align="absbottom" /&gt;&lt;/a&gt;(包含大、中、小尺寸) &lt;a
				href="http://www.webxml.com.cn/zh_cn/weather_icon.aspx"
				target="_blank"&gt;天气图例说明&lt;/a&gt; &lt;a
				href="http://www.webxml.com.cn/files/weather_eg.zip"&gt;调用此天气预报Web
				Services实例下载&lt;/a&gt; (VB ASP.net 2.0)&lt;/p&gt;&lt;br /&gt;
			</wsdl:documentation>
			<wsdl:input message="tns:getWeatherbyCityNameHttpGetIn" />
			<wsdl:output message="tns:getWeatherbyCityNameHttpGetOut" />
		</wsdl:operation>
		<wsdl:operation name="getWeatherbyCityNamePro">
			<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">&lt;br&gt;&lt;h3&gt;根据城市或地区名称查询获得未来三天内天气情况、现在的天气实况、天气和生活指数(For商业用户)&lt;/h3&gt;&lt;p&gt;调用方法同
				getWeatherbyCityName,输入参数:theUserID = 商业用户ID&lt;/p&gt;&lt;br /&gt;
			</wsdl:documentation>
			<wsdl:input message="tns:getWeatherbyCityNameProHttpGetIn" />
			<wsdl:output message="tns:getWeatherbyCityNameProHttpGetOut" />
		</wsdl:operation>
	</wsdl:portType>
	<wsdl:portType name="WeatherWebServiceHttpPost">
		<wsdl:operation name="getSupportCity">
			<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">&lt;br
				/&gt;&lt;h3&gt;查询本天气预报Web
				Services支持的国内外城市或地区信息&lt;/h3&gt;&lt;p&gt;输入参数:byProvinceName =
				指定的洲或国内的省份,若为ALL或空则表示返回全部城市;返回数据:一个一维字符串数组
				String(),结构为:城市名称(城市代码)。&lt;/p&gt;&lt;br /&gt;</wsdl:documentation>
			<wsdl:input message="tns:getSupportCityHttpPostIn" />
			<wsdl:output message="tns:getSupportCityHttpPostOut" />
		</wsdl:operation>
		<wsdl:operation name="getSupportProvince">
			<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">&lt;br
				/&gt;&lt;h3&gt;获得本天气预报Web
				Services支持的洲、国内外省份和城市信息&lt;/h3&gt;&lt;p&gt;输入参数:无; 返回数据:一个一维字符串数组
				String(),内容为洲或国内省份的名称。&lt;/p&gt;&lt;br /&gt;</wsdl:documentation>
			<wsdl:input message="tns:getSupportProvinceHttpPostIn" />
			<wsdl:output message="tns:getSupportProvinceHttpPostOut" />
		</wsdl:operation>
		<wsdl:operation name="getSupportDataSet">
			<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">&lt;br&gt;&lt;h3&gt;获得本天气预报Web
				Services支持的洲、国内外省份和城市信息&lt;/h3&gt;&lt;p&gt;输入参数:无;返回:DataSet
				。DataSet.Tables(0) 为支持的洲和国内省份数据,DataSet.Tables(1)
				为支持的国内外城市或地区数据。DataSet.Tables(0).Rows(i).Item("ID") 主键对应
				DataSet.Tables(1).Rows(i).Item("ZoneID") 外键。&lt;br /&gt;Tables(0):ID
				= ID主键,Zone = 支持的洲、省份;Tables(1):ID 主键,ZoneID = 对应Tables(0)ID的外键,Area
				= 城市或地区,AreaCode = 城市或地区代码。&lt;/p&gt;&lt;br /&gt;
			</wsdl:documentation>
			<wsdl:input message="tns:getSupportDataSetHttpPostIn" />
			<wsdl:output message="tns:getSupportDataSetHttpPostOut" />
		</wsdl:operation>
		<wsdl:operation name="getWeatherbyCityName">
			<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">&lt;br&gt;&lt;h3&gt;根据城市或地区名称查询获得未来三天内天气情况、现在的天气实况、天气和生活指数&lt;/h3&gt;&lt;p&gt;调用方法如下:输入参数:theCityName
				= 城市中文名称(国外城市可用英文)或城市代码(不输入默认为上海市),如:上海 或
				58367,如有城市名称重复请使用城市代码查询(可通过 getSupportCity 或 getSupportDataSet
				获得);返回数据: 一个一维数组 String(22),共有23个元素。&lt;br /&gt;String(0) 到
				String(4):省份,城市,城市代码,城市图片名称,最后更新时间。String(5) 到 String(11):当天的
				气温,概况,风向和风力,天气趋势开始图片名称(以下称:图标一),天气趋势结束图片名称(以下称:图标二),现在的天气实况,天气和生活指数。String(12)
				到 String(16):第二天的 气温,概况,风向和风力,图标一,图标二。String(17) 到 String(21):第三天的
				气温,概况,风向和风力,图标一,图标二。String(22) 被查询的城市或地区的介绍 &lt;br /&gt;&lt;a
				href="http://www.webxml.com.cn/images/weather.zip"&gt;下载天气图标&lt;img
				src="http://www.webxml.com.cn/images/download_w.gif" border="0"
				align="absbottom" /&gt;&lt;/a&gt;(包含大、中、小尺寸) &lt;a
				href="http://www.webxml.com.cn/zh_cn/weather_icon.aspx"
				target="_blank"&gt;天气图例说明&lt;/a&gt; &lt;a
				href="http://www.webxml.com.cn/files/weather_eg.zip"&gt;调用此天气预报Web
				Services实例下载&lt;/a&gt; (VB ASP.net 2.0)&lt;/p&gt;&lt;br /&gt;
			</wsdl:documentation>
			<wsdl:input message="tns:getWeatherbyCityNameHttpPostIn" />
			<wsdl:output message="tns:getWeatherbyCityNameHttpPostOut" />
		</wsdl:operation>
		<wsdl:operation name="getWeatherbyCityNamePro">
			<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">&lt;br&gt;&lt;h3&gt;根据城市或地区名称查询获得未来三天内天气情况、现在的天气实况、天气和生活指数(For商业用户)&lt;/h3&gt;&lt;p&gt;调用方法同
				getWeatherbyCityName,输入参数:theUserID = 商业用户ID&lt;/p&gt;&lt;br /&gt;
			</wsdl:documentation>
			<wsdl:input message="tns:getWeatherbyCityNameProHttpPostIn" />
			<wsdl:output message="tns:getWeatherbyCityNameProHttpPostOut" />
		</wsdl:operation>
	</wsdl:portType>
	<wsdl:binding name="WeatherWebServiceSoap" type="tns:WeatherWebServiceSoap">
		<soap:binding transport="http://schemas.xmlsoap.org/soap/http" />
		<wsdl:operation name="getSupportCity">
			<soap:operation soapAction="http://WebXml.com.cn/getSupportCity"
				style="document" />
			<wsdl:input>
				<soap:body use="literal" />
			</wsdl:input>
			<wsdl:output>
				<soap:body use="literal" />
			</wsdl:output>
		</wsdl:operation>
		<wsdl:operation name="getSupportProvince">
			<soap:operation soapAction="http://WebXml.com.cn/getSupportProvince"
				style="document" />
			<wsdl:input>
				<soap:body use="literal" />
			</wsdl:input>
			<wsdl:output>
				<soap:body use="literal" />
			</wsdl:output>
		</wsdl:operation>
		<wsdl:operation name="getSupportDataSet">
			<soap:operation soapAction="http://WebXml.com.cn/getSupportDataSet"
				style="document" />
			<wsdl:input>
				<soap:body use="literal" />
			</wsdl:input>
			<wsdl:output>
				<soap:body use="literal" />
			</wsdl:output>
		</wsdl:operation>
		<wsdl:operation name="getWeatherbyCityName">
			<soap:operation soapAction="http://WebXml.com.cn/getWeatherbyCityName"
				style="document" />
			<wsdl:input>
				<soap:body use="literal" />
			</wsdl:input>
			<wsdl:output>
				<soap:body use="literal" />
			</wsdl:output>
		</wsdl:operation>
		<wsdl:operation name="getWeatherbyCityNamePro">
			<soap:operation soapAction="http://WebXml.com.cn/getWeatherbyCityNamePro"
				style="document" />
			<wsdl:input>
				<soap:body use="literal" />
			</wsdl:input>
			<wsdl:output>
				<soap:body use="literal" />
			</wsdl:output>
		</wsdl:operation>
	</wsdl:binding>
	<wsdl:binding name="WeatherWebServiceSoap12" type="tns:WeatherWebServiceSoap">
		<soap12:binding transport="http://schemas.xmlsoap.org/soap/http" />
		<wsdl:operation name="getSupportCity">
			<soap12:operation soapAction="http://WebXml.com.cn/getSupportCity"
				style="document" />
			<wsdl:input>
				<soap12:body use="literal" />
			</wsdl:input>
			<wsdl:output>
				<soap12:body use="literal" />
			</wsdl:output>
		</wsdl:operation>
		<wsdl:operation name="getSupportProvince">
			<soap12:operation soapAction="http://WebXml.com.cn/getSupportProvince"
				style="document" />
			<wsdl:input>
				<soap12:body use="literal" />
			</wsdl:input>
			<wsdl:output>
				<soap12:body use="literal" />
			</wsdl:output>
		</wsdl:operation>
		<wsdl:operation name="getSupportDataSet">
			<soap12:operation soapAction="http://WebXml.com.cn/getSupportDataSet"
				style="document" />
			<wsdl:input>
				<soap12:body use="literal" />
			</wsdl:input>
			<wsdl:output>
				<soap12:body use="literal" />
			</wsdl:output>
		</wsdl:operation>
		<wsdl:operation name="getWeatherbyCityName">
			<soap12:operation soapAction="http://WebXml.com.cn/getWeatherbyCityName"
				style="document" />
			<wsdl:input>
				<soap12:body use="literal" />
			</wsdl:input>
			<wsdl:output>
				<soap12:body use="literal" />
			</wsdl:output>
		</wsdl:operation>
		<wsdl:operation name="getWeatherbyCityNamePro">
			<soap12:operation soapAction="http://WebXml.com.cn/getWeatherbyCityNamePro"
				style="document" />
			<wsdl:input>
				<soap12:body use="literal" />
			</wsdl:input>
			<wsdl:output>
				<soap12:body use="literal" />
			</wsdl:output>
		</wsdl:operation>
	</wsdl:binding>
	<wsdl:binding name="WeatherWebServiceHttpGet" type="tns:WeatherWebServiceHttpGet">
		<http:binding verb="GET" />
		<wsdl:operation name="getSupportCity">
			<http:operation location="/getSupportCity" />
			<wsdl:input>
				<http:urlEncoded />
			</wsdl:input>
			<wsdl:output>
				<mime:mimeXml part="Body" />
			</wsdl:output>
		</wsdl:operation>
		<wsdl:operation name="getSupportProvince">
			<http:operation location="/getSupportProvince" />
			<wsdl:input>
				<http:urlEncoded />
			</wsdl:input>
			<wsdl:output>
				<mime:mimeXml part="Body" />
			</wsdl:output>
		</wsdl:operation>
		<wsdl:operation name="getSupportDataSet">
			<http:operation location="/getSupportDataSet" />
			<wsdl:input>
				<http:urlEncoded />
			</wsdl:input>
			<wsdl:output>
				<mime:mimeXml part="Body" />
			</wsdl:output>
		</wsdl:operation>
		<wsdl:operation name="getWeatherbyCityName">
			<http:operation location="/getWeatherbyCityName" />
			<wsdl:input>
				<http:urlEncoded />
			</wsdl:input>
			<wsdl:output>
				<mime:mimeXml part="Body" />
			</wsdl:output>
		</wsdl:operation>
		<wsdl:operation name="getWeatherbyCityNamePro">
			<http:operation location="/getWeatherbyCityNamePro" />
			<wsdl:input>
				<http:urlEncoded />
			</wsdl:input>
			<wsdl:output>
				<mime:mimeXml part="Body" />
			</wsdl:output>
		</wsdl:operation>
	</wsdl:binding>
	<wsdl:binding name="WeatherWebServiceHttpPost" type="tns:WeatherWebServiceHttpPost">
		<http:binding verb="POST" />
		<wsdl:operation name="getSupportCity">
			<http:operation location="/getSupportCity" />
			<wsdl:input>
				<mime:content type="application/x-www-form-urlencoded" />
			</wsdl:input>
			<wsdl:output>
				<mime:mimeXml part="Body" />
			</wsdl:output>
		</wsdl:operation>
		<wsdl:operation name="getSupportProvince">
			<http:operation location="/getSupportProvince" />
			<wsdl:input>
				<mime:content type="application/x-www-form-urlencoded" />
			</wsdl:input>
			<wsdl:output>
				<mime:mimeXml part="Body" />
			</wsdl:output>
		</wsdl:operation>
		<wsdl:operation name="getSupportDataSet">
			<http:operation location="/getSupportDataSet" />
			<wsdl:input>
				<mime:content type="application/x-www-form-urlencoded" />
			</wsdl:input>
			<wsdl:output>
				<mime:mimeXml part="Body" />
			</wsdl:output>
		</wsdl:operation>
		<wsdl:operation name="getWeatherbyCityName">
			<http:operation location="/getWeatherbyCityName" />
			<wsdl:input>
				<mime:content type="application/x-www-form-urlencoded" />
			</wsdl:input>
			<wsdl:output>
				<mime:mimeXml part="Body" />
			</wsdl:output>
		</wsdl:operation>
		<wsdl:operation name="getWeatherbyCityNamePro">
			<http:operation location="/getWeatherbyCityNamePro" />
			<wsdl:input>
				<mime:content type="application/x-www-form-urlencoded" />
			</wsdl:input>
			<wsdl:output>
				<mime:mimeXml part="Body" />
			</wsdl:output>
		</wsdl:operation>
	</wsdl:binding>
	<wsdl:service name="WeatherWebService">
		<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">&lt;a
			href="http://www.webxml.com.cn/"
			target="_blank"&gt;WebXml.com.cn&lt;/a&gt; &lt;strong&gt;天气预报 Web
			服务,&lt;/strong&gt;数据来源于&lt;strong&gt;中国气象局&lt;/strong&gt; &lt;a
			href="http://www.cma.gov.cn/"
			target="_blank"&gt;http://www.cma.gov.cn/&lt;/a&gt;
			,数据每2.5小时左右自动更新一次,准确可靠。包括 340 多个中国主要城市和 60
			多个国外主要城市三日内的天气预报数据。&lt;/br&gt;此天气预报Web Services请不要用于任何商业目的,若有需要请&lt;a
			href="http://www.webxml.com.cn/zh_cn/contact_us.aspx"
			target="_blank"&gt;联系我们&lt;/a&gt;,欢迎技术交流。 QQ:8409035&lt;br
			/&gt;&lt;strong&gt;使用本站 WEB 服务请注明或链接本站:http://www.webxml.com.cn/
			感谢大家的支持&lt;/strong&gt;!&lt;br /&gt;&lt;span
			style="color:#999999;"&gt;通知:天气预报 WEB 服务如原来使用地址
			http://www.onhap.com/WebServices/WeatherWebService.asmx
			的,请改成现在使用的服务地址
			http://www.webxml.com.cn/WebServices/WeatherWebService.asmx
			,重新引用即可。&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&amp;nbsp;
		</wsdl:documentation>
		<wsdl:port name="WeatherWebServiceSoap" binding="tns:WeatherWebServiceSoap">
			<soap:address
				location="http://www.webxml.com.cn/WebServices/WeatherWebService.asmx" />
		</wsdl:port>
		<wsdl:port name="WeatherWebServiceSoap12" binding="tns:WeatherWebServiceSoap12">
			<soap12:address
				location="http://www.webxml.com.cn/WebServices/WeatherWebService.asmx" />
		</wsdl:port>
		<wsdl:port name="WeatherWebServiceHttpGet" binding="tns:WeatherWebServiceHttpGet">
			<http:address
				location="http://www.webxml.com.cn/WebServices/WeatherWebService.asmx" />
		</wsdl:port>
		<wsdl:port name="WeatherWebServiceHttpPost" binding="tns:WeatherWebServiceHttpPost">
			<http:address
				location="http://www.webxml.com.cn/WebServices/WeatherWebService.asmx" />
		</wsdl:port>
	</wsdl:service>
</wsdl:definitions>
 在同等目录下建立一个文件WSDL2Java.bat
set Axis_Lib=E:\workspace\axisClient\WebRoot\WEB-INF\lib
set Java_Cmd=java -Djava.ext.dirs=%Axis_Lib%
set Output_Path=E:\workspace\axisClient\src
set Package=weather
%Java_Cmd% org.apache.axis.wsdl.WSDL2Java -o%Output_Path% -p%Package% WeatherWebService.wsdl
 准备好 以上之后,执行WSDL2Java.bat文件,刷新src目录,会看到一大堆java源文件。至此已经完成,接下来测试,新建test包,在以下建立一个测试类:
package test;

import java.rmi.RemoteException;

import javax.xml.rpc.ServiceException;

import weather.WeatherWebService;
import weather.WeatherWebServiceLocator;

public class WeatherClient {
	public static void main(String[] args) {
		WeatherWebService service = new WeatherWebServiceLocator();
		String[] infos = null;
		try {
			infos = service.getWeatherWebServiceSoap().getWeatherbyCityName("广州");
		} catch (ServiceException e) {
			e.printStackTrace();
		} catch (RemoteException e) {
			e.printStackTrace();
		}
		for(int i =0;i<infos.length;i++) {
			System.out.println(infos[i]+"\t");
		}
	}
}	
 运行后就可以得到“广州”的天气预报了。

分享到:
评论

相关推荐

    java 通过axis调用天气预报的webservice

    标题中的“Java通过Axis调用天气预报的WebService”是指使用Java编程语言,通过Apache Axis库来访问和使用公开的天气预报Web服务。Apache Axis是一个开放源码的SOAP(简单对象访问协议)工具包,它允许开发者创建和...

    axis2webservice接口例子

    标题中的“axis2webservice接口例子”指的是使用Apache Axis2框架创建的一个Web服务接口实例。Apache Axis2是Java平台上的一款强大的Web服务开发工具,它提供了高效、灵活且可扩展的环境来构建和部署Web服务。这个...

    axis 开发webservice经典入门例子

    标题 "axis 开发webservice经典入门例子" 指向的是使用Apache Axis工具来创建和使用Web服务的基本教程。Apache Axis是开源的Java框架,它允许开发者轻松地在Java应用程序中构建和部署Web服务。本教程可能是为了帮助...

    axis2例子 webservice axis2 示例

    axis2例子 webservice axis2 示例axis2例子 webservice axis2 示例axis2例子 webservice axis2 示例axis2例子 webservice axis2 示例axis2例子 webservice axis2 示例

    axis 实现 webservice 例子

    - 将Axis的bin目录添加到系统环境变量`PATH`中,以便在命令行中直接运行相关工具。 2. **创建Web服务**: - 编写Java类,实现你需要暴露的服务方法。例如,创建一个名为`HelloWorldService`的类,包含一个`...

    Axis2WebService 源码

    通过对Axis2 WebService源码的学习,开发者不仅可以了解Web服务的基本原理,还可以深入理解Java在Web服务开发中的应用,以及如何利用开源工具解决实际问题。这将有助于提升开发者的技能,为未来的项目开发提供坚实的...

    axis解析webservice

    根据天气预报webservice的wsdl解析成本地的Java代码;用Java代码调用webservice天气...本资源已用axis将webservice的wsdl解析成本地的Java代码,并实现Java代码调用天气预报;现将其打包上传,望对有需要的人有所帮助!

    Axis 下的 WebService例子

    本篇将深入探讨Axis下的WebService例子,以及如何利用它来实现跨平台的数据交互。 首先,我们需要理解WebService的基本概念。WebService是一种基于开放标准(如SOAP、WSDL和UDDI)的互联网应用程序,能够通过XML...

    AXIS1.4webservice服务端和客户端例子

    在这个"AXIS1.4 WebService服务端和客户端例子"中,我们将深入探讨如何使用AXIS1.4搭建服务端和客户端,以及如何进行远程调用。 首先,让我们从服务端开始。服务端是提供Web服务的系统,它可以接收客户端的请求并...

    axis 发布webservice的步骤

    标题中的“axis发布webservice的步骤”涉及到的是在Java环境中使用Apache Axis库创建并部署Web服务的过程。Apache Axis是开源的Web服务工具包,它允许开发者通过简单的API将Java类暴露为Web服务,或者调用远程Web...

    axis调用webservice接口所需jar包.rar

    axis调用第三方webservice接口所需的jar包,包括axis-1.4.jar,axis-jaxrpc-1.3.jar,axis-jaxrpc-1.4.jar,commons-discovery-0.5.jar,commons-logging-1.2.jar,cxf-rt-databinding-jaxb-3.3.1.jar,javax.mail-...

    axis调用webservice实例,包含jar包

    标题中的“axis调用webservice实例”涉及到的是在Java开发中使用Apache Axis库来调用Web服务的过程。Apache Axis是一个开放源代码的SOAP栈,它允许开发者创建和部署Web服务,同时也提供了客户端工具来调用这些服务。...

    Axis2 Webservice端例子

    总结,Axis2 Webservice端例子旨在帮助开发者了解如何在Axis2环境下构建和发布Web服务。通过定义服务接口、实现业务逻辑、创建WSDL描述和服务打包,以及在服务器上部署和调用,我们可以掌握Axis2的核心工作原理。...

    axis2webservice例子

    描述 "axis2webservice应用的例子" 暗示我们将通过一个实际的项目来学习Axis2在Web服务实现中的应用。这通常包括以下步骤: 1. **安装与配置**:首先,我们需要下载Apache Axis2的最新版本,并将其解压到本地文件...

    Android axis调用Webservice

    本文将详细介绍如何在Android应用中利用Axis2来调用Web Service。 **一、Android与Web Service交互基础** 1. **SOAP(Simple Object Access Protocol)**: 是一种轻量级的协议,用于交换结构化的和类型化的信息。...

    axis2+spring webservice

    描述中提到的“简单例子:axis2整合spring发布webservice”,意味着我们将学习如何将这两个框架结合,以便通过Spring来管理和控制Web服务的生命周期,同时利用Axis2的Web服务处理能力。此外,“以及session的管理”...

    webService—Axis实例webService—Axis实例webService—Axis实例

    webService—Axis实例webService—Axis实例webService—Axis实例webService—Axis实例webService—Axis实例webService—Axis实例webService—Axis实例

    axis+webservice教程+帮助文档

    axis+webservice教程+帮助文档

    Axis实现webservice完整实例

    ** Axis 实现 WebService 完整实例** 在 IT 领域,Web 服务是一种用于应用程序之间进行通信的标准协议,而 Axis 是一个流行的开源 Java 框架,它允许开发者轻松地创建和部署 Web 服务。本实例将详细介绍如何使用 ...

    axis发布webservice教程源代码

    Axis在Web服务领域中扮演着关键角色,因为它简化了SOAP(简单对象访问协议)消息处理和WSDL(Web服务描述语言)的生成。 【标签】"axis发布webs"进一步确认了这个教程的核心内容是关于使用Axis工具发布Web服务。Web...

Global site tag (gtag.js) - Google Analytics