javawebservice接口开发教程(如何开发webservice接口)
java 如何实现webservice 怎么调用接口
一、利用jdk?web服务api实现,这里使用基于SOAP?message的Web服务
①.首先建立一个Web?services?EndPoint:package?Hello;
import?javax.jws.WebService;
import?javax.jws.WebMethod;
import?javax.xml.ws.Endpoint;
@WebService
public?class?Hello?{
@WebMethod
public?String?hello(String?name)?{
return?"Hello,?"?+?name?+?"\n";
}
public?static?void?main(String[]?args)?{
//?create?and?publish?an?endpoint
Hello?hello?=?new?Hello();
Endpoint?endpoint?=?Endpoint.publish("
,?hello);
}
}
②.使用apt编译Hello.java(例:apt?-d?[存放编译后的文件目录]?Hello.java?)?,
会生成jaws目录
③.使用java?Hello.Hello运行,然后将浏览器指向
就会出现下列显示
④.使用wsimport生成客户端使用如下:
wsimport?-p?.?-keep?
这时,会在当前目录中生成如下文件:
⑤.客户端程序:
1?class?HelloClient{
2?public?static?void?main(String?args[])?{
3?HelloService?service?=?new?HelloService();
4?Hello?helloProxy?=?service.getHelloPort();
5?String?hello?=?helloProxy.hello("你好");
6?System.out.println(hello);
7?}
8?}
以上方法还稍显繁琐,还有更加简单的方法
二、使用xfire,我这里使用的是myeclipse集成的xfire进行测试的利用xfire开发WebService,可以有三种方法:
?1. 一种是从javabean中生成;
2.?一种是从wsdl文件中生成;
?3. 还有一种是自己建立webservice
步骤如下:
用myeclipse建立webservice工程,目录结构如下:首先建立webservice接口,
代码如下:
????1?package?com.myeclipse.wsExample;
2?//Generated?by?MyEclipse
3
4?public?interface?IHelloWorldService?{
5
????6?public?String?example(String?message);
7
8?}
接着实现这个借口:
????1?package?com.myeclipse.wsExample;
2?//Generated?by?MyEclipse
3
4?public?class?HelloWorldServiceImpl?implements?IHelloWorldService?{
5
6?public?String?example(String?message)?{
7?return?message;
8?}
9
10?}
修改 service.xml文件,加入以下代码:
1?service
2?nameHelloWorldService/name
3?serviceClass
4?com.myeclipse.wsExample.IHelloWorldService
5?/serviceClass
6?implementationClass
7?com.myeclipse.wsExample.HelloWorldServiceImpl
8?/implementationClass
9??stylewrapped/style
10?useliteral/use
11?scopeapplication/scope
12/service
把整个项目部署到tomcat服务器中打开浏览器,输入,可以看到如下:
然后再展开HelloWorldService后面的wsdl可以看到:
客户端实现如下:
??1?package?com.myeclipse.wsExample.client;
2
3?import?java.net.MalformedURLException;
4?import?java.net.URL;
5
6?import?org.codehaus.xfire.XFireFactory;
7?import?org.codehaus.xfire.client.Client;
8?import?org.codehaus.xfire.client.XFireProxyFactory;
9?import?org.codehaus.xfire.service.Service;
??10?import?org.codehaus.xfire.service.binding.ObjectServiceFactory;
11
12?import?com.myeclipse.wsExample.IHelloWorldService;
13
14?public?class?HelloWorldClient?{
15?public?static?void?main(String[]?args)?throws?MalformedURLException,?Exception?{
16?//?TODO?Auto-generated?method?stub
17?Service?s=new?ObjectServiceFactory().create(IHelloWorldService.class);
18?XFireProxyFactory?xf=new?XFireProxyFactory(XFireFactory.newInstance().getXFire());
19?String?url="
20
21?try
22?{
23
????24?IHelloWorldService?hs=(IHelloWorldService)?xf.create(s,url);
25?String?st=hs.example("zhangjin");
26?System.out.print(st);
27?}
28?catch(Exception?e)
29?{
30?e.printStackTrace();
31?}
32?}
33
34?}
??有时候我们知道一个wsdl地址,比如想用java客户端引用net做得webservice,使用myeclipse引用,但是却出现无法通过验证的错误,这时我们可以直接在类中引用,步骤如下:
1.?public?static?void?main(String[]?args)?throws?MalformedURLException,?Exception?{
2.?//?TODO?Auto-generated?method?stub
java如何写webservice服务端
Java 中的 Web Service 分为基于 SOAP 的和基于 REST 的两种,下面简单说一个基于 SOAP 的例子。要使用 JDK6u4 之后的版本才能编译通过。
先编写一个 Web Service 的接口:
@WebService
@SOAPBinding(style?=?Style.RPC)?
public?interface?TimeServer?{
????@WebMethod?String?getTimeAsString();
????@WebMethod?long?getTimeAsElapsed();
}
再编写 Web Service 实现:
import?java.util.Date;
import?javax.jws.WebService;
@WebService(endpointInterface?=?"test.TimeServer")
public?class?TimeServerImpl?implements?TimeServer?{
????public?String?getTimeAsString()?{?return?new?Date().toString();?}
????public?long?getTimeAsElapsed()?{?return?new?Date().getTime();?}
}
最后启动 Web Service:
public?class?TimeServerPublisher?{
????public?static?void?main(String[?]?args)?{
??????Endpoint.publish("",?new?TimeServerImpl());
????}
}
如果正常启动,可以用浏览器访问 看到这个 Web Service 的 wsdl 文档。
java如何调用webservice接口?
Java通过WSDL文件来调用webservice直接调用模式如下:
import java.util.Date;
import java.text.DateFormat;
import org.apache.axis.client.Call;
import org.apache.axis.client.Service;
import javax.xml.namespace.QName;
import java.lang.Integer;
import javax.xml.rpc.ParameterMode;
public class caClient {
public static void main(String[] args) {
try {
String endpoint = "";
//直接引用远程的wsdl文件
//以下都是套路
Service service = new Service();
Call call = (Call) service.createCall();
call.setTargetEndpointAddress(endpoint);
call.setOperationName("addUser");//WSDL里面描述的接口名称
call.addParameter("userName", org.apache.axis.encoding.XMLType.XSD_DATE,
javax.xml.rpc.ParameterMode.IN);//接口的参数
call.setReturnType(org.apache.axis.encoding.XMLType.XSD_STRING);//设置返回类型
String temp = "测试人员";
String result = (String)call.invoke(new Object[]{temp});
//给方法传递参数,并且调用方法
System.out.println("result is "+result);
}
catch (Exception e) {
System.err.println(e.toString());
}
}
}