码迷,mamicode.com
首页 > 编程语言 > 详细

java调用c#开发的webservice

时间:2017-10-11 18:09:57      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:odi   ati   c#开发   exce   files   asm   except   int   rbo   

使用jdk自带的wsimport工具生成代理类

c:\Program Files\Java\jdk1.8.0_121\bin>wsimport -keep -encoding utf-8 -d d:\ -s d:\src -verbose http://192.168.61.193/WeatherWebServiceJTB/WebService_Out.asmx?WSDL

 

-keep 保留生成的文件

-d 指定输出文件的目录

-s 输出源文件的目录

-verbose 显示过程输出

调用例子

    public static void main(String[] args) throws Exception {
        String strUrl = "http://192.168.61.193/WebService/WeatherService_Out.asmx";
        
        URL url = new URL(strUrl);
        WeatherService service = new WeatherService(url);
        
        WeatherServiceSoap client = service.getWeatherServiceSoap();
        
        
        boolean b = client.testConnection();
        
        
        String strVer = client.getCurrentVer();
        
        System.out.println(strVer);
    }

 

java调用c#开发的webservice

标签:odi   ati   c#开发   exce   files   asm   except   int   rbo   

原文地址:http://www.cnblogs.com/jiftle/p/7651625.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!