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>