免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 5722 | 回复: 2
打印 上一主题 下一主题

java调用vb .net webservice 有问题!! [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2005-11-02 13:10 |只看该作者 |倒序浏览
使用axis调用.net webservice 为什么服务端取不到我传的参数啊?webservice本机测试是好的!why?
java client 端代码如下:
package MyWebServiceJavaClient;

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

import javax.xml.namespace.QName;
import java.lang.Integer;
import javax.xml.rpc.ParameterMode;

public class testService {
    public testService() {
    }

    public static void main(String[] args) {
        try {
            String xh = "40401001";
            String endpoint = "http://202.115.112.139/jwxt/jwxt/jws/jws.asmx?wsdl";
            Service service = new Service();
            Call call = (Call) service.createCall();
            call.setTargetEndpointAddress(new java.net.URL(endpoint));
            call.setOperationName(new QName("http://tempuri.org/JWXT/JWS", "test");
            call.addParameter("a", org.apache.axis.encoding.XMLType.XSD_STRING, javax.xml.rpc.ParameterMode.IN);
            call.setReturnType(org.apache.axis.encoding.XMLType.XSD_STRING);
            call.setUseSOAPAction(true);
            call.setSOAPActionURI("http://tempuri.org/JWXT/JWS/test";

            String k = (String) call.invoke(new Object[]{xh});
            System.out.println("result is " + k);

        } catch (Exception e) {
            System.err.println(e.toString());
        }
    }

}

webservice信息如下:
test
测试方法,传入字符串参数,直接返回

测试
测试窗体只能用于来自本地计算机的请求。
SOAP
下面是一个 SOAP 请求和响应示例。所显示的占位符需要由实际值替换。

POST /jwxt/jwxt/jws/jws.asmx HTTP/1.1
Host: 202.115.112.139
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://tempuri.org/JWXT/JWS/test"

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlnssi="http://www.w3.org/2001/XMLSchema-instance" xmlnssd="http://www.w3.org/2001/XMLSchema" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tns="http://tempuri.org/JWXT/JWS" xmlns:types="http://tempuri.org/JWXT/JWS/encodedTypes" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body soap:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
    <tns:test>
      <s xsi:type="xsd:string">string</s>
    </tns:test>
  </soap:Body>
</soap:Envelope>
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlnssi="http://www.w3.org/2001/XMLSchema-instance" xmlnssd="http://www.w3.org/2001/XMLSchema" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tns="http://tempuri.org/JWXT/JWS" xmlns:types="http://tempuri.org/JWXT/JWS/encodedTypes" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body soap:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
    <tns:testResponse>
      <testResult xsi:type="xsd:string">string</testResult>
    </tns:testResponse>
  </soap:Body>
</soap:Envelope>


请高手指点!!谢谢

论坛徽章:
0
2 [报告]
发表于 2005-11-02 14:30 |只看该作者

问题解决!

问题出在两个地方:
1。 call.addParameter("a", org.apache.axis.encoding.XMLType.XSD_STRING, javax.xml.rpc.ParameterMode.IN); 开始认为“a”是随便定义,和webservice没什么关系,后来发现必须和webservice提供的参数一致!如: <s xsi:type="xsd:string">string</s>所以把“a”改为“s”
2。在书写。net webservice时要在方法头增加这一行<WebMethod(), System.Web.Services.Protocols.SoapRpcMethod()> 还没搞清楚为啥!感觉象是声明可以soap访问?有那位大侠知道啊?谢谢!

论坛徽章:
0
3 [报告]
发表于 2005-11-02 17:27 |只看该作者

补充

3。同时要注意序列化问题。
这样的化就应该没有问题了!感谢提供资料和帮助我朋友们!
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP