黄色网页视频 I 影音先锋日日狠狠久久 I 秋霞午夜毛片 I 秋霞一二三区 I 国产成人片无码视频 I 国产 精品 自在自线 I av免费观看网站 I 日本精品久久久久中文字幕5 I 91看视频 I 看全色黄大色黄女片18 I 精品不卡一区 I 亚洲最新精品 I 欧美 激情 在线 I 人妻少妇精品久久 I 国产99视频精品免费专区 I 欧美影院 I 欧美精品在欧美一区二区少妇 I av大片网站 I 国产精品黄色片 I 888久久 I 狠狠干最新 I 看看黄色一级片 I 黄色精品久久 I 三级av在线 I 69色综合 I 国产日韩欧美91 I 亚洲精品偷拍 I 激情小说亚洲图片 I 久久国产视频精品 I 国产综合精品一区二区三区 I 色婷婷国产 I 最新成人av在线 I 国产私拍精品 I 日韩成人影音 I 日日夜夜天天综合

XFire開發(fā)WebService

系統(tǒng) 2513 0

1.新建WebServices項目

XFire開發(fā)WebService

XFire開發(fā)WebService

XFire開發(fā)WebService

2.新建接口IHello

      package com.test;
public interface IHello {
	public String sayHello(String message);
}
    

?3.新建接口實現(xiàn)類HelloImpl

      package com.test;

public class HelloImpl implements IHello {
	public String sayHello(String msg) {
		return "您好!" + msg;
	}
}
    

4.?修改service.xml

      <?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://xfire.codehaus.org/config/1.0">
	<service>
		<name>hello</name>
		<serviceClass>com.test.IHello</serviceClass>
		<implementationClass>com.test.HelloImpl</implementationClass>
		<style>wrapped</style>
		<use>literal</use>
		<scope>application</scope>
	</service>
</beans>
    

?部署到Tomcat,訪問: http://127.0.0.1:8080/WebServiceDemo/services/hello

?

第二部分

1.新建Java project,導(dǎo)入XFire Core包和XFire Http包

XFire開發(fā)WebService

2.新建接口IHello

      package com.test;

public interface Ihello {
	public String sayHello(String name);
}
    

?3.新建Test類

      package com.test;

import org.codehaus.xfire.service.Service;
import org.codehaus.xfire.service.binding.ObjectServiceFactory;
import org.codehaus.xfire.XFire;
import org.codehaus.xfire.XFireFactory;
import org.codehaus.xfire.client.XFireProxyFactory;

public class Test {
	public static void main(String[] args) {
		Service serviceModel = new ObjectServiceFactory().create(Ihello.class);
		XFire xfire = XFireFactory.newInstance().getXFire();
		XFireProxyFactory factory = new XFireProxyFactory(xfire); 
		String serverURL = "http://127.0.0.1:8080/WebServicesDemo/services/hello";
		try {
			Ihello helloservice = (Ihello)factory.create(serviceModel, serverURL);
			String serviceResponse = helloservice.sayHello("ECHO");
			System.out.println("返回結(jié)果: " + serviceResponse);
		}catch(Exception ex) {
			ex.printStackTrace();
		}
	}
}
    

?

XFire開發(fā)WebService


更多文章、技術(shù)交流、商務(wù)合作、聯(lián)系博主

微信掃碼或搜索:z360901061

微信掃一掃加我為好友

QQ號聯(lián)系: 360901061

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描下面二維碼支持博主2元、5元、10元、20元等您想捐的金額吧,狠狠點擊下面給點支持吧,站長非常感激您!手機微信長按不能支付解決辦法:請將微信支付二維碼保存到相冊,切換到微信,然后點擊微信右上角掃一掃功能,選擇支付二維碼完成支付。

【本文對您有幫助就好】

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描上面二維碼支持博主2元、5元、10元、自定義金額等您想捐的金額吧,站長會非常 感謝您的哦!!!

發(fā)表我的評論
最新評論 總共0條評論