免费注册 查看新帖 |

Chinaunix

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

求教Web Service 的一个问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2006-09-28 14:14 |只看该作者 |倒序浏览
现在要在一个WEB程序调用.NET的一个Web Service

主要代码如下:
  public static int login(String userId, String password) throws
      MalformedURLException, RemoteException, NumberFormatException {

    int ResultCode=123456;
    try {
      String i = new String("loginid");
      String j = new String("password");
      URL url = new URL("http://s2.iwtek.net/FVM/FVMService.asmx");
      Service service = new Service();
      Call call = (Call) service.createCall();
      call.setTargetEndpointAddress(url);
      call.setOperationName(new QName("http://tempuri.org/FVM/FVMService","login "));
      call.addParameter("loginid",XMLType.XSD_STRING, ParameterMode.IN );
      call.addParameter("password",XMLType.XSD_STRING, ParameterMode.IN );

      call.setReturnType(org.apache.axis.encoding.XMLType.XSD_INT);
      call.setUseSOAPAction(true);
      call.setSOAPActionURI("http://tempuri.org/FVM/FVMService/login");

//        ResultCode = Integer.parseInt((String)call.invoke(url,"http://tempuri.org/FVM/FVMService/login")) ;
     ResultCode = Integer.parseInt((String)call.invoke(new Object[]{i,j})) ;
     System.out.println(ResultCode);



    }
    catch (ServiceException ex) {
      ex.printStackTrace();
    }
    return ResultCode;
  }

但是出现了下面提示的错误,因为以前没怎么接触过.所以向各位请教.
AxisFault
faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server.userException
faultSubcode:
faultString: org.xml.sax.SAXException: SimpleDeserializer encountered a child element, which is NOT expected, in something it was trying to deserialize.
faultActor:
faultNode:
大概知道是什么错,但是因为不熟悉,不知道错误在那里.

论坛徽章:
0
2 [报告]
发表于 2006-09-29 00:48 |只看该作者
<loginResponse xmlns="http://tempuri.org/FVM/FVMService">
      <loginResult>
        <ResultCode>int</ResultCode>
        <session>string</session>
      </loginResult>
    </loginResponse>

返回结果不只是一个整数吧

论坛徽章:
0
3 [报告]
发表于 2006-09-29 14:53 |只看该作者
但是我想问一下怎么去获得它的<ResultCode>int</ResultCode>  <session>string</session> 两个返回值,并且我现在只需要第一个就可以了
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP