(结合JAVA的WebService支持.pdf进行理解)
将http://www.webxml.com.cn/WebServices/WeatherWebService.asmx?wsdl打开后另存为atherWebService.wsdl,然后将文件放到cxf的bin目录下,执行dos进入cxf的bin目录下,运行wsdl2java atherWebService.wsdl ,会生成文件与bin目录下)
一、用cxf的wsdl2java工具生成客户端代码(使用的是apache-cxf-2.2.3)
二、书写客户端调用服务:
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package cn.com.webxml;
import java.util.ArrayList;
import java.util.List;
import javax.xml.namespace.QName;
import javax.xml.ws.Service;
import javax.xml.ws.soap.SOAPBinding;
public final class Client {
private static final QName SERVICE_NAME
= new QName("http://WebXml.com.cn/", "WeatherWebServiceSoap");
private static final QName PORT_NAME
= new QName("http://WebXml.com.cn/", "WeatherWebServiceSoapPort");
private Client() {
}
public static void main(String args[]) throws Exception {
Service service = Service.create(SERVICE_NAME);
// Endpoint Address
String endpointAddress = "http://www.webxml.com.cn/WebServices/WeatherWebService.asmx";
// Add a port to the Service
service.addPort(PORT_NAME, SOAPBinding.SOAP11HTTP_BINDING, endpointAddress);
WeatherWebServiceSoap hw = service.getPort(WeatherWebServiceSoap.class);
List<String> list = hw.getWeatherbyCityName("深圳").getString();
for(String str:list){
System.out.println(str);
}
}
}
http://www.webxml.com.cn/WebServices/WeatherWebService.asmx?wsdl
1、