快速业务通道

用JAXM开发Web服务 - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-19
设置来确定。由于使用的是点对点的消息发送模型,调用con.call()后返回的也是SOAPMessage。

用JAXM开发Web服务(11)

时间:2011-02-07 IBM 陈亚强

对SOAP应答进行处理

接下来对消息进行处理,因为不管查询的结果如何,返回的消息都是例程2所示的结构,故我们使用一个专门的类来把SOAP消息转化成包含有BookVO的Collection,这个类是SOAPToBeanEngine,SOAPToBeanEngine的部分代码如例程16所示。

例程16 SOAPToBeanEngine的部分代码

package com.hellking.webservice; import javax.xml.messaging.*; … public class SOAPToBeanEngine implements DTOEngine { SOAPMessage reply; Collection bookVos;//转换后的结果,用Collection表示    //构造方法,reply为要转换的SOAP消息 public SOAPToBeanEngine(SOAPMessage reply) {   this.reply=reply; } … public Collection getResult() {   build();   return bookVos; }    //build为具体转换的方法    public void build()    {    try    {     Collection ret=new ArrayList();     //System.out.println(reply.getSOAPPart().getEnvelope().getBody().getElementName());     Iterator child=reply.getSOAPPart().getEnvelope().getBody().getChildElements();①     SOAPElement bookall=(SOAPElement)child.next();②     Iterator books=bookall.getChildElements();③     SOAPEnvelope env=reply.getSOAPPart().getEnvelope();     SOAPElement temps;     Name name;     while(books.hasNext())     {     BookVO bookVo=new BookVO();     temps=(SOAPElement)books.next();     String id=(String)(      (temps.getAttributeValue(      (Name)temps.getAllAttributes().next()                )      ));     bookVo.setIsbn(id);④     name=env.createName("name","books","http://hellking.webservice.com" );⑤     bookVo.setName(      ((SOAPElement)temps.getChildElements(name).next())      .getValue());     //System.out.println(bookVo.getName());     name=env.createName("price" ,"books", "http://hellking.webservice.com" );     bookVo.setPrice(Float.parseFloat(      ((SOAPElement)temps.getChildElements(name).next())      .getValue()));     name=env.createName("category", "books", "http://hellking.webservice.com" );     bookVo.setCategory(      ((SOAPElement)temps.getChildElements(name).next())      .getValue());     name=env.createName("publisher","books","http://hellking.webservice.com" );     bookVo.setPublisher(      ((SOAPElement)temps.getChildElements(name).next())      .getValue());     name=env.createName("description","books","http://hellking.webservice.com" );     bookVo.setDescription(      ((SOAPElement)temps.getChildElements(name).next())      .getValue());     // bookVo.setDescription("kdjfkdjfj");     name=env.createName("author","books","http://hellking.webservice.com" );     Collection au=new ArrayList();     Iterator

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号