使用idea和wsdl產生java代碼

來源:互聯網
上載者:User

標籤:

  1. 建立一個簡單的java helloworld項目

選擇next:

選擇java helloworld project next

填寫project name finish

2.  建立好項目後 選擇項目 右鍵->webservice->Generate 

產生代碼配置,填寫wsdl路徑,包路徑,webservice平台(這裡我選擇的是jax-ws jdk內建的webservice實現方式,不用再下載jar包)

這裡我使用的wsdl,是一個天氣預報的webservice:http://www.webservicex.com/globalweather.asmx?WSDL

選擇finish 等待片刻就可看見產生的程式碼了:

3. 測試代碼

在Main Class中填寫如下代碼 

import weather.GlobalWeather;import weather.GlobalWeatherSoap;public class Main {    public static void main(String[] args) {        GlobalWeather service = new GlobalWeather();        GlobalWeatherSoap port = service.getGlobalWeatherSoap();        String body = port.getWeather("shanghai", "China");        System.out.println(body);    }}

運行結果如下:

<?xml version="1.0" encoding="utf-16"?><CurrentWeather>  <Location>Shanghai / Hongqiao, China (ZSSS) 31-10N 121-26E 3M</Location>  <Time>Jul 22, 2015 - 12:00 AM EDT / 2015.07.22 0400 UTC</Time>  <Wind> Variable at 2 MPH (2 KT):0</Wind>  <Visibility> greater than 7 mile(s):0</Visibility>  <SkyConditions> mostly clear</SkyConditions>  <Temperature> 84 F (29 C)</Temperature>  <DewPoint> 78 F (26 C)</DewPoint>  <RelativeHumidity> 83%</RelativeHumidity>  <Pressure> 29.65 in. Hg (1004 hPa)</Pressure>  <Status>Success</Status></CurrentWeather>

產生代碼的平台架構,也可以選擇axis 、cxf、等

使用idea和wsdl產生java代碼

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.