问答文章1 问答文章501 问答文章1001 问答文章1501 问答文章2001 问答文章2501 问答文章3001 问答文章3501 问答文章4001 问答文章4501 问答文章5001 问答文章5501 问答文章6001 问答文章6501 问答文章7001 问答文章7501 问答文章8001 问答文章8501 问答文章9001 问答文章9501

axis1客户端可以调用axis2服务端吗

发布网友 发布时间:2022-04-12 22:23

我来回答

1个回答

热心网友 时间:2022-04-12 23:53

可以。
1、wsdl文件:

Xml代码
<?xml version="1.0" encoding="UTF-8" ?>
- <wsdl:definitions xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:ns1="http://org.apache.axis2/xsd" xmlns:ns="http://jh.com" xmlns:wsaw="http://www.w3.org/2006/05/addressing/wsdl" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" targetNamespace="http://jh.com">
<wsdl:documentation>TestWeb</wsdl:documentation>
+ <wsdl:types>
- <xs:schema attributeFormDefault="qualified" elementFormDefault="qualified" targetNamespace="http://jh.com">
- <xs:element name="getName">
- <xs:complexType>
- <xs:sequence>
<xs:element minOccurs="0" name="name" nillable="true" type="xs:string" />
</xs:sequence>
</xs:complexType>
</xs:element>
- <xs:element name="getNameResponse">
- <xs:complexType>
- <xs:sequence>
<xs:element minOccurs="0" name="return" nillable="true" type="xs:string" />
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>
</wsdl:types>
- <wsdl:message name="getNameRequest">
<wsdl:part name="parameters" element="ns:getName" />
</wsdl:message>
- <wsdl:message name="getNameResponse">
<wsdl:part name="parameters" element="ns:getNameResponse" />
</wsdl:message>
- <wsdl:portType name="TestWebPortType">
- <wsdl:operation name="getName">
<wsdl:input message="ns:getNameRequest" wsaw:Action="urn:getName" />
<wsdl:output message="ns:getNameResponse" wsaw:Action="urn:getNameResponse" />
</wsdl:operation>
</wsdl:portType>
+ <wsdl:binding name="TestWebSoap11Binding" type="ns:TestWebPortType">
<soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document" />
- <wsdl:operation name="getName">
<soap:operation soapAction="urn:getName" style="document" />
- <wsdl:input>
<soap:body use="literal" />
</wsdl:input>
- <wsdl:output>
<soap:body use="literal" />
</wsdl:output>
</wsdl:operation>
</wsdl:binding>
- <wsdl:binding name="TestWebSoap12Binding" type="ns:TestWebPortType">
<soap12:binding transport="http://schemas.xmlsoap.org/soap/http" style="document" />
- <wsdl:operation name="getName">
<soap12:operation soapAction="urn:getName" style="document" />
+ <wsdl:input>
<soap12:body use="literal" />
</wsdl:input>
- <wsdl:output>
<soap12:body use="literal" />
</wsdl:output>
</wsdl:operation>
</wsdl:binding>
- <wsdl:binding name="TestWebHttpBinding" type="ns:TestWebPortType">
<http:binding verb="POST" />
- <wsdl:operation name="getName">
<http:operation location="getName" />
- <wsdl:input>
<mime:content type="application/xml" part="parameters" />
</wsdl:input>
+ <wsdl:output>
<mime:content type="application/xml" part="parameters" />
</wsdl:output>
</wsdl:operation>
</wsdl:binding>
- <wsdl:service name="TestWeb">
- <wsdl:port name="TestWebHttpSoap11Endpoint" binding="ns:TestWebSoap11Binding">
<soap:address location="http://localhost:9090/axis2/services/TestWeb.TestWebHttpSoap11Endpoint/" />
</wsdl:port>
- <wsdl:port name="TestWebHttpSoap12Endpoint" binding="ns:TestWebSoap12Binding">
<soap12:address location="http://localhost:9090/axis2/services/TestWeb.TestWebHttpSoap12Endpoint/" />
</wsdl:port>
- <wsdl:port name="TestWebHttpEndpoint" binding="ns:TestWebHttpBinding">
<http:address location="http://localhost:9090/axis2/services/TestWeb.TestWebHttpEndpoint/" />
</wsdl:port>
</wsdl:service>
</wsdl:definitions>

2、java调用方式:

Java代码
package com.jh;

import java.rmi.RemoteException;

import javax.xml.namespace.QName;

import org.apache.axiom.om.OMAbstractFactory;
import org.apache.axiom.om.OMElement;
import org.apache.axiom.om.OMFactory;
import org.apache.axiom.om.OMNamespace;
import org.apache.axis2.AxisFault;
import org.apache.axis2.addressing.EndpointReference;
import org.apache.axis2.client.Options;
import org.apache.axis2.client.ServiceClient;
import org.apache.axis2.rpc.client.RPCServiceClient;

public class Test {

public static void main(String[] args) throws RemoteException {
Test test = new Test();

System.out.println("1 " + test.method1());
System.out.println("2 " + test.method2());
System.out.println("3 " + test.method3());
}

/**
* 方法一:通过 wsdl2java反向生成的类 调用
* @return
* @throws RemoteException
*/
public String method1() throws RemoteException {

TestWeb web = new TestWebStub();

GetName getName = new GetName();
getName.setName("admin ... ");
GetNameResponse res = web.getName(getName);

System.out.println(res.get_return());

return res.get_return();
}

/**
* 方法二:
* 应用rpc的方式调用 这种方式就等于远程调用,
* 即通过url定位告诉远程服务器,告知方法名称,参数等, 调用远程服务,得到结果。
* 使用 org.apache.axis2.rpc.client.RPCServiceClient类调用WebService
*
【注】:

如果被调用的WebService方法有返回值 应使用 invokeBlocking 方法 该方法有三个参数
第一个参数的类型是QName对象,表示要调用的方法名;
第二个参数表示要调用的WebService方法的参数值,参数类型为Object[];
当方法没有参数时,invokeBlocking方法的第二个参数值不能是null,而要使用new Object[]{}。
第三个参数表示WebService方法的 返回值类型的Class对象,参数类型为Class[]。

如果被调用的WebService方法没有返回值 应使用 invokeRobust 方法
该方法只有两个参数,它们的含义与invokeBlocking方法的前两个参数的含义相同。

在创建QName对象时,QName类的构造方法的第一个参数表示WSDL文件的命名空间名,
也就是 <wsdl:definitions>元素的targetNamespace属性值。
*
*/
public String method2() throws AxisFault {
String url = "http://localhost:9090/axis2/services/TestWeb?wsdl";

// 使用RPC方式调用WebService
RPCServiceClient serviceClient = new RPCServiceClient();
// 指定调用WebService的URL
EndpointReference targetEPR = new EndpointReference(url);
Options options = serviceClient.getOptions();
//确定目标服务地址
options.setTo(targetEPR);
//确定调用方法
options.setAction("urn:getName");

/**
* 指定要调用的getPrice方法及WSDL文件的命名空间
* 如果 webservice 服务端由axis2编写
* 命名空间 不一致导致的问题
* org.apache.axis2.AxisFault: java.lang.RuntimeException: Unexpected subelement arg0
*/
QName qname = new QName("http://jh.com", "getName");
// 指定getPrice方法的参数值
Object[] parameters = new Object[] { "admin... 您终于进来了" };

// 指定getPrice方法返回值的数据类型的Class对象
Class[] returnTypes = new Class[] { String.class };

// 调用方法一 传递参数,调用服务,获取服务返回结果集
OMElement element = serviceClient.invokeBlocking(qname, parameters);
//值得注意的是,返回结果就是一段由OMElement对象封装的xml字符串。
//我们可以对之灵活应用,下面我取第一个元素值,并打印之。因为调用的方法返回一个结果
String result = element.getFirstElement().getText();
System.out.println(result);
return result;
}

/**
* 方法三: 应用document方式调用
* 用cument方式应用现对繁琐而灵活。现在用的比较多。因为真正摆脱了我们不想要的耦合
*/
public String method3() {

OMElement result = null;
try {
// String url = "http://localhost:8080/axis2ServerDemo/services/StockQuoteService";
String url = "http://localhost:9090/axis2/services/TestWeb?wsdl";

Options options = new Options();
// 指定调用WebService的URL
EndpointReference targetEPR = new EndpointReference(url);
options.setTo(targetEPR);
// options.setAction("urn:getPrice");

ServiceClient sender = new ServiceClient();
sender.setOptions(options);

OMFactory fac = OMAbstractFactory.getOMFactory();
String tns = "http://jh.com";
// 命名空间,有时命名空间不增加没事,不过最好加上,因为有时有事,你懂的
OMNamespace omNs = fac.createOMNamespace(tns, "");

OMElement method = fac.createOMElement("getName", omNs);
OMElement symbol = fac.createOMElement("name", omNs);
// symbol.setText("1");
symbol.addChild(fac.createOMText(symbol, "Axis2 Echo String "));
method.addChild(symbol);
method.build();

result = sender.sendReceive(method);

System.out.println("*************** " + result);
//<ns:getNameResponse xmlns:ns="http://jh.com"><ns:return>欢迎您。 Axis2 Echo String </ns:return></ns:getNameResponse>

} catch (AxisFault axisFault) {
axisFault.printStackTrace();
}
return result + "";
}
}

3、输出结果:
Html代码
欢迎您。 admin ...
1 欢迎您。 admin ...
欢迎您。 admin... 您终于进来了
2 欢迎您。 admin... 您终于进来了
*************** <ns:getNameResponse xmlns:ns="http://jh.com"><ns:return>欢迎您。 Axis2 Echo String </ns:return></ns:getNameResponse>
3 <ns:getNameResponse xmlns:ns="http://jh.com"><ns:return>欢迎您。 Axis2 Echo String </ns:return></ns:getNameResponse>
声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com
逆水寒手游庄园怎么邀请好友同住 逆水寒手游 逆水寒不同区可以一起组队吗? 逆水寒手游 逆水寒怎么进入好友世界? 逆水寒手游 逆水寒怎么去别人的庄园? 使用puppeteer实现将htmll转成pdf 内卷时代下的前端技术-使用JavaScript在浏览器中生成PDF文档 【译】将HTML转为PDF的几种实现方案 变形金刚08动画怎么样 变形金刚08动画的问题 变形金刚08动画日语版剧情介绍 毓字有什么含义? 毓的意思是什么 上海浦东新区公司注销都有哪些流程 上海闵行区工商局的电话号码是多少? 台儿庄战役中,国军动用空军了吗? 山东省徐州市好玩不,听说徐州是山东的南大门,想去那里转转。 徐青峰的相关事件 它描写的是哪一战役的场景 A.台儿庄战役 B.百团 怎样注销上海工商银行信用卡 台儿庄战役是谁先进攻 上海工商注销电话是400-6665987吗?我需要公司注销 有人有关于三大战役和台儿庄战役的资料吗? 台儿庄战役中士兵受伤的图片 上海工商局的客服电话是多少 下列四幅历史图片是抗战时期留下的珍贵照片,按时间顺序排列正确的是( ) ①台儿庄战役 ②伪国民 观察下列图片,回答问题。 (1)图1中的人物是谁?此战役有何意义?(3分)(2)图2中“彭大将军”正在指 台儿庄战役获得了哪些成就? 看下列图片,回答问题: (1)台儿庄战役的指挥者是谁?(1分)这一战役具有什么意义?(2分)(2) 当年台儿庄大战旧址是什么样的? 华为mate7高配版支持快充吗 二重积分的基础内容是什么?计算公式是什么? 二重积分公式是什么? 二重积分的计算公式是什么? 二重积分中值定理公式有哪些? 跪求二重积分公式 二重积分的公式到底怎么列 看了公式也看不懂 二重积分怎么计算? 高手总结总结一下二重积分,三重积分,还有曲线积分,曲面积分它们的区别和用法. 乙肝肝腹水能治疗好吗 求:二重积分公式讲解,不要内容太多,只要能说明是如何计算得就行了。 二重积分的有关公式 乙肝肝腹水能治疗好吗? 二重积分中值定理公式是? 怀孕两个月可以吃生蚝吗 我父亲乙肝大三阳,现在检查出了肝腹水,可以治疗吗 怀孕可以吃生蚝嘛 二重积分求导 二重积分,求所用公式 肝硬化腹水能治好吗? 肝腹水可以治好吗