Java代码调用Net接口进行Webservices对接

 之前有个项目需要用java调用net接口实现一个附件的下载转换,找了很多资料,写法类似,但是就是无法调用成功,后来用了2天一点一点琢磨出来的。

import java.net.MalformedURLException;
import java.rmi.RemoteException;
import org.apache.axis.client.Service;
import org.apache.axis.client.Call;
import javax.xml.namespace.QName;
import javax.xml.rpc.ParameterMode;
import javax.xml.rpc.ServiceException;
public class DownloadFile{
	
	public static String changeUrl(String uri, String title, String uid){

		//Net webservices地址
		String endpoint="http://10.22.161.131:8080/MobileService.asmx";

		Call call; 
		String res = "";
		Service service = new Service();
		try {
			call = (Call)service.createCall();
			call.setTargetEndpointAddress(new java.net.URL(endpoint));
			call.setOperationName(new QName("http://tyx.moibleoaservice.org/","ceb就TotxtWap"));  //发布的方法名
			//三个参数,主要要和net接口中的名称一致,类型尽量用String
			call.addParameter(new QName("http://tyx.moibleoaservice.org/", "uri"), org.apache.axis.encoding.XMLType.XSD_STRING,ParameterMode.IN);
			call.addParameter(new QName("http://tyx.moibleoaservice.org/", "title"), org.apache.axis.encoding.XMLType.XSD_STRING,ParameterMode.IN);
			call.addParameter(new QName("http://tyx.moibleoaservice.org/", "uid"), org.apache.axis.encoding.XMLType.XSD_STRING,ParameterMode.IN);
			call.setReturnType(org.apache.axis.encoding.XMLType.XSD_STRING);
			call.setUseSOAPAction(true);
			//这里注意有方法名,已经引用的地址。从net接口中找
			call.setSOAPActionURI("http://tyx.moibleoaservice.org/cebTotxtWap");
			res =(String)call.invoke(new Object[]{uri,title,uid});
			//返回值String
			System.err.println("==11=>"+res);
		} catch (ServiceException e) {
			e.printStackTrace();
		} catch (MalformedURLException e) {
			e.printStackTrace();
		} catch (RemoteException e) {
			e.printStackTrace();
		}catch (Exception e) {
			e.printStackTrace();
		}
		finally {
		}
		return res;
	}
}


代码没整理,但是可用,jar自己百度吧。我就不一一发了
  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 4
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值