axis调用两种风格的.net WebService

19 篇文章 0 订阅

最近做一个接口需要调用.net提供的WebService,调试过程很痛苦,总是出现Server was unable to read request的错误,并且.net服务端怎么都接不到传送的参数,接到的都是null。在网上查了半天资料也没有解决,最后下了个vs2008自己来写.net的服务学习了一下,才把问题搞定。 


所需jar包: 
saaj.jar 
wsdl4j-1.5.1.jar 
commons-discovery-0.2.jar 
commons-logging-1.0.4.jar 
jaxrpc.jar 
axis.jar 

这些jar包都在axis项目下, 
axis下载地址:http://ws.apache.org/axis/ 


Rpc风格的.net服务端代码: 

using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Services;
using System.Web.Services.Protocols;
using System.Xml.Linq;

namespace WebService1
{    
    
    [WebService(Namespace = "http://tempuri.org/")]
    public class Service1 : System.Web.Services.WebService
    {

        [WebMethod]
        [SoapRpcMethod(Action = "http://tempuri.org/hello", RequestNamespace = "http://tempuri.org/", ResponseNamespace = "http://tempuri.org/")]

        public string hello(String s)
        {
            return "Hello,"+s;
        }
    }
}

Document风格的.net服务端代码: 

namespace WebService1
{    
    
    [WebService(Namespace = "http://tempuri.org/")]
    public class Service1 : System.Web.Services.WebService
    {

        [WebMethod]        
        public string hello(String s)
        {
            return "Hello,"+s;
        }
    }
}

java客户端代码: 

String url="http://localhost:1117/Service1.asmx";
String namespace = "http://tempuri.org/";
String methodName = "hello";
String soapActionURI = "http://tempuri.org/hello";
Service service = new Service();
Call call = (Call) service.createCall();
call.setTargetEndpointAddress(new java.net.URL(url));
call.setUseSOAPAction(true);
//这个地方没设对就会出现Server was unable to read request的错误
call.setSOAPActionURI(soapActionURI);
call.setOperationName(new QName(namespace, methodName));
/*这里如果设置成call.addParameter(new QName(namespace,"s"), XMLType.XSD_STRING, 
  ParameterMode.IN);就是调用document风格的.net服务端
  如果设反了,.net服务端就接不到参数,接到的是null
*/
call.addParameter("s", XMLType.XSD_STRING, ParameterMode.IN);
call.setReturnType(XMLType.XSD_STRING);
String ret = (String) call.invoke(new Object[] { "kusix" });
System.out.println("返回结果---> " + ret);

如果.net在提供Rpc服务时设置成 

[SoapRpcMethod(Action = "",.....  



的话,那java客户端连 

call.setUseSOAPAction(true);  
call.setSOAPActionURI(soapActionURI);  



这2句都可以去掉了 


转载地址:http://www.iteye.com/topic/151541

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值