如何調用發佈好的webService

方式一:

通過在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

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章