Java使用Axis1创建WebService客户端

1.引入包

<dependency>
    <groupId>org.apache.axis</groupId>
    <artifactId>axis</artifactId>
    <version>1.4</version>
</dependency>
<dependency>
    <groupId>axis</groupId>
    <artifactId>axis-jaxrpc</artifactId>
    <version>1.4</version>
</dependency>
<dependency>
    <groupId>commons-discovery</groupId>
    <artifactId>commons-discovery</artifactId>
    <version>0.5</version>
</dependency>
<dependency>
    <groupId>wsdl4j</groupId>
    <artifactId>wsdl4j</artifactId>
    <version>1.6.3</version>
</dependency>

2.工具类

package com.fracong.util;

import javax.xml.namespace.QName;
import javax.xml.rpc.ParameterMode;

import org.apache.axis.client.Call;
import org.apache.axis.client.Service;
import org.apache.axis.encoding.XMLType;
import org.apache.log4j.Logger;

public class WebServiceSoapUtil {
	private static Logger logger = Logger.getLogger(WebServiceSoapUtil.class);
	private static final String SOAP_ACTION = "http://tempuri.org/";// 默认都是这个

	public static String callWebServiceSoap(String mesEndPint, String methodName, String[] params,
			String[] paramsKey) throws Exception {
		String resultMsg = "";
		try {
			Service service = new Service();
			Call call = (Call) service.createCall();
			call.setTargetEndpointAddress(mesEndPint);
			call.setOperationName(new QName(SOAP_ACTION, methodName));
			// 这里测试的使用的参数都是String类型,如果是其他类型,请另行设置
			for (String key : paramsKey) {
				call.addParameter(new QName(SOAP_ACTION, key), XMLType.XSD_STRING, ParameterMode.IN);
			}
			// 提供标准类型
			call.setReturnType(XMLType.XSD_STRING);
			call.setUseSOAPAction(true);
			call.setSOAPActionURI(SOAP_ACTION + methodName);
			resultMsg = (String)call.invoke(params);
		} catch (Exception e) {
			logger.error(e.getMessage(), e);
			throw e;
		}
		return resultMsg;
	}
}

3.使用实例

public static void main(String[] args) {
		try {
			String endPoint = "http://test.xxx.com:8080/service/TestService.asmx";
			String methodName = "TestInterface";// 接口的方法名,严格区分大小写
			String[] paramsKey = new String[]{"key1", "key2"};// 请求参数的KEY
			String[] params = new String[]{"value1", "value2"};// 请求参数VALUE
			WebServiceSoapUtil.callWebServiceSoap(endPoint, methodName, params, paramsKey);
		} catch (Exception e) {
			logger.info(e.getMessage(), e);
		}
	}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
使用Axis2在Java中实现Web服务接口,可以按照以下步骤进行: 1. 下载和安装Axis2:首先,你需要下载并安装Axis2框架。你可以从Apache官方网站(https://axis.apache.org/axis2/java/core/download.cgi)上下载最新版本的Axis2。 2. 创建Java项目:使用你喜欢的Java开发工具(如Eclipse、IntelliJ IDEA等),创建一个新的Java项目。 3. 导入Axis2库:将Axis2库导入到你的项目中。你可以将下载的Axis2库文件添加到项目的构建路径中,或者使用构建工具(如Maven、Gradle等)来管理依赖项。 4. 创建Web服务接口:在项目中创建一个Java接口,定义你的Web服务接口。这个接口将包含你希望暴露给客户端的操作。 ```java public interface MyWebService { public String processRequest(String request); } ``` 5. 实现Web服务接口:创建一个Java类来实现你的Web服务接口。 ```java public class MyWebServiceImpl implements MyWebService { public String processRequest(String request) { // 处理Web服务请求并返回响应 return "Hello, " + request + "! This is a response from the web service."; } } ``` 6. 创建服务端:使用Axis2创建一个服务端来发布你的Web服务。 ```java import org.apache.axis2.transport.http.server.HttpServiceProcessor; public class WebServiceServer { public static void main(String[] args) { try { // 创建服务端配置 ConfigurationContext configContext = ConfigurationContextFactory.createDefaultConfigurationContext(); // 创建服务端 Axis2Server server = new Axis2Server(configContext); // 注册Web服务实现类 server.addService(MyWebService.class.getName(), new MyWebServiceImpl()); // 启动服务端 server.start(); System.out.println("Web service is running."); } catch (AxisFault e) { e.printStackTrace(); } } } ``` 7. 构建和运行:构建并运行你的Java项目。服务端将会启动,并在默认端口(一般为8080)上监听来自客户端的请求。 8. 创建客户端使用Axis2创建一个客户端来调用你的Web服务。 ```java import org.apache.axis2.client.ServiceClient; import org.apache.axis2.client.Options; import org.apache.axis2.addressing.EndpointReference; public class WebServiceClient { public static void main(String[] args) { try { // 创建服务客户端 ServiceClient client = new ServiceClient(); // 创建服务端点引用 EndpointReference targetEPR = new EndpointReference("http://localhost:8080/axis2/services/MyWebService"); // 设置服务端点地址 Options options = new Options(); options.setTo(targetEPR); client.setOptions(options); // 创建请求操作 QName operationName = new QName("http://example.com/MyWebService", "processRequest"); Object[] operationParams = new Object[] { "John" }; Class[] operationReturnTypes = new Class[] { String.class }; // 调用Web服务操作 Object[] response = client.invokeBlocking(operationName, operationParams, operationReturnTypes); String result = (String) response[0]; System.out.println("Response from web service: " + result); } catch (AxisFault e) { e.printStackTrace(); } } } ``` 9. 构建和运行:构建并运行你的Java客户端项目。客户端将会调用服务端的Web服务,并接收并打印响应。 通过以上步骤,你可以使用Axis2在Java中实现和调用Web服务接口。请注意,根据你的实际需求,可能需要配置和调整Axis2的一些参数和设置。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值