加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 综合聚焦 > 服务器 > 安全 > 正文

如何调用发布好的webService

发布时间:2020-12-16 22:38:39 所属栏目:安全 来源:网络整理
导读:方式一: 通过在spring的配置文件中加入如下配置 jaxws:client id="helloClient" serviceClass="com.gstd.service.controller.HelloWorld" address="http://localhost:7600/oa/webservice/HelloWorld" / 然后再后台可调用,当然,上面的spring文件中一样的加

方式一:

通过在spring的配置文件中加入如下配置

<jaxws:client id="helloClient"
                  serviceClass="com.gstd.service.controller.HelloWorld"
                  address="http://localhost:7600/oa/webservice/HelloWorld" />

然后再后台可调用,当然,上面的spring文件中一样的加入?xmlns:jaxws="http://cxf.apache.org/jaxws" 和?xsi:schemaLocation="http://cxf.apache.org/jaxws
??????? http://cxf.apache.org/schemas/jaxws.xsd"

以及<import resource="classpath:META-INF/cxf/cxf.xml"/>

??? <import resource="classpath:META-INF/cxf/cxf-extension-soap.xml"/>

??? <import resource="classpath:META-INF/cxf/cxf-servlet.xml"/>

之后

public class Example {

	/**
	 * @param args
	 */
	public static void main(String[] args) {

        ApplicationContext ctx = new ClassPathXmlApplicationContext("om_mvc_ctx.xml");

        

        HelloWorld service = ctx.getBean("helloClient",HelloWorld.class);
        service.sayHi("fff");

	} 

}


方式二:

public class Example {

	/**
	 * @param args
	 */
	public static void main(String[] args) {
		JaxWsProxyFactoryBean bean = new JaxWsProxyFactoryBean();  
        bean.setServiceClass(HelloWorld.class);  
        bean.setAddress("http://localhost:7600/oa/webservice/HelloWorld");  
        HelloWorld helloWorldService = (HelloWorld)bean.create();  
        String result = helloWorldService.sayHi("sssss");
        System.out.println(result);
       

	} 

}

参考:

http://blog.csdn.net/zhang6622056/article/details/8513637

http://www.cnblogs.com/hoojo/tag/WebService/ http://blog.csdn.net/java2000_wl/article/details/7516704#comments

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读