webservice接口开发教程,编写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
webservice接口怎么使用
webservice的调用,常用的大约有3种方式:
1、使用axis调用
2、使用xfire调用
3、使用cxf调用
项目中,采用axis进行调用,记录如下,备忘:
ps教程:想当年的时候是用的xfire方式调用的,结果没做记录,现在已经完全记不得怎么玩了。所以说要多写博客啊 t_t
版本说明:
aixs版本:axis-bin-1_4.zip
java环境略
第一步:确保wsdl文件可用,文中为获取到sendsmsservice.wsdl,当然url的也行。
第二步:执行生成客户端代码的脚本。脚本内容为:
set axis_lib=d:axis-1_4lib
set java_cmd=java -djava.ext.dirs=%axis_lib%
set output_path=.
set package=info.jyzh.wap.liaoning.push
%java_cmd% org.apache.axis.wsdl.wsdl2java sendsmsservice.wsdl -o%output_path% -p%package% -t
#查看wsdl2java的使用帮助#%java_cmd% org.apache.axis.wsdl.wsdl2java -help
ok,至此,客户端代码就生成出来了。还带了一个单元测试哦。
实际工作中,碰到以下情况,客户端不能直接连上webservice服务器,中间被强大的代理服务器挡住了。如下图:
为此,修改生成的代码,本次是在sendmmsserviceimplservicesoapbindingstub中作修改,如下:
static {
axisproperties.setproperty("http.proxyhost","88.88.88.88");
axisproperties.setproperty("http.proxyport","8080");
axisproperties.setproperty("http.proxyuser","asp教程yy");
axisproperties.setproperty("http.proxypassword","123456");
_operations = new org.apache.axis.description.operationdesc[1];
_initoperationdesc1();
}直接axis调用远程的web service我觉得这种方法比较适合那些高手,他们能直接看懂xml格式的wsdl文件,我自己是看不懂的,尤其我不是专门搞这行的,即使一段时间看懂,后来也就忘记了。直接调用模式如下: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()); } }}2,直接soap调用远程的webservice这种模式我从来没有见过,也没有试过,但是网络上有人贴出来,我也转过来import org.apache.soap.util.xml.*;import org.apache.soap.*;import org.apache.soap.rpc.*; import java.io.*;import java.net.*;import java.util.vector; public class caservice{ public static string getservice(string user) { url url = null; try { url=new url(""); } catch (malformedurlexception mue) { return mue.getmessage(); } // this is the main soap object call soapcall = new call(); // use soap encoding soapcall.setencodingstyleuri(constants.ns_uri_soap_enc); // this is the remote object we're asking for the price soapcall.settargetobjecturi("urn:xmethods-casynrochnized"); // this is the name of the method on the above object soapcall.setmethodname("getuser"); // we need to send the isbn number as an input parameter to the method vector soapparams = new vector(); // name, type, value, encoding style parameter isbnparam = new parameter("username", string.class, user, null); soapparams.addelement(isbnparam); soapcall.setparams(soapparams); try { // invoke the remote method on the object response soapresponse = soapcall.invoke(url,""); // check to see if there is an error, return "n/a" if (soapresponse.generatedfault()) { fault fault = soapresponse.getfault(); string f = fault.getfaultstring(); return f; } else { // read result parameter soapresult = soapresponse.getreturnvalue (); // get a string from the result return soapresult.getvalue().tostring(); } } catch (soapexception se) { return se.getmessage(); } }}
3,使用wsdl2java把wsdl文件转成本地类,然后像本地类一样使用,即可。
如何调用别人提供的webservice接口
在项目中选择【控制台应用程序】,点击项目右键,选择添加-服务引用。在地址栏中输入WebServie链接地址后回车,点击确定后在代码中就可以看到添加的服务应用了,详细步骤:
1、首先打开VS2013,选择文件-新建-项目。
2、在项目中选择【控制台应用程序】,将项目名称重新命名为【WebServiceTest】。
3、点击项目右键,选择添加-服务引用。
4、在地址栏中输入WebServie链接地址后回车,然后重新命名服务名称为【ServiceGetWeather】,点击确定后在代码中就可以看到添加的服务应用了。
5、然后在代码中添加如下代码,调用webservice,获取接口返回的数据,呈现出来。
6、这是运行的结果,可以看出接口返回了一个xml格式的数据。
webservice该怎么进行学习?
第一:VS中建立Webserives项目,第二在所建立的程序中去引用第一步建立的Webservices,这样就OK,建立应用之后会在你的程序中生成代码,直接实力话一个客户端的类就可以去调用了。
如果想做的更宽泛一点,可以去看看WCF,毕竟WCF可以使用更多的通信标准之上,Webservice之能用于Http协议
1.用java开发webservice接口。
2.要学哪些知识?
3,要用哪些框架?
4.有哪些书介绍
5.有哪些学习webservice的网站介绍
SpringBoot|| Spring Cloud 整合cxf开发webService接口服务端-流程步骤
Apache CXF 是一个开源的 Service 框架,简化用户的 service 开发,基于CXF开发的应用可提供 SOAP 、 XML/HTTP 、 RESTFUL HTTP 或 CORBA 等服务。 CXF 底层页可以使用不同的传输协议,包括 HTTP 、 JMS 或 JBI 等。
自定义注解标注要发布的服务类,发布出去
在接口上添加 @WebService 注解
通过浏览器访问wsdl,wsdl路径即为发布的路径加上?wsdl
:[端口号]/cxf/test?wsdl
可以看到接口就成功了。
到此服务端开发结束!
如果是soapui工具,发送的参数包括xml的:将xml写在 ![CDATA[ 【xml】]] 里面