网站大量收购独家精品文档,联系QQ:2885784924

课件09 - J2EE——第9章SOAP with Attachments API for Java.ppt

课件09 - J2EE——第9章SOAP with Attachments API for Java.ppt

  1. 1、本文档共25页,可阅读全部内容。
  2. 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
课件09 - J2EE——第9章SOAP with Attachments API for Java

J2EE——第9章 SOAP with Attachments API for Java 不带附件的SOAPMessage对象 带附件的SOAPMessage对象 SAAJ和DOM Node接口扩展了org.w3c.dom.Node接口 SOAPElement接口扩展了Node接口和org.w3c.dom.Element接口 SOAPPart类实现了org.w3c.dom.Document接口 Text接口扩展了org.w3c.dom.Text接口 连接 SOAPConnectionFactory factory = SOAPConnectionFactory.newInstance(); SOAPConnection connection = factory.createConnection(); . . . // create a request message and give it content .URL endpoint = new URL(/gizmo/order); SOAPMessage response = connection.call(request, endpoint); 创建和发送简单消息 MessageFactory factory = MessageFactory.newInstance(); SOAPMessage message = factory.createMessage(); SOAPPart soapPart = message.getSOAPPart(); SOAPEnvelope envelope = soapPart.getEnvelope(); SOAPHeader header = envelope.getHeader(); SOAPBody body = envelope.getBody(); //SOAPHeader header = message.getSOAPHeader(); //SOAPBody body = message.getSOAPBody(); header.detachNode(); 给体添加内容 SOAPFactory soapFactory = SOAPFactory.newInstance(); Name bodyName = soapFactory.createName(GetLastTradePrice, m, ); SOAPBodyElement bodyElement = body.addBodyElement(bodyName); Name name = soapFactory.createName(symbol); SOAPElement symbol = bodyElement.addChildElement(name); symbol.addTextNode(SUNW); SOAP-ENV:Envelope xmlns:SOAP-ENV=/soap/envelope/ SOAP-ENV:Body m:GetLastTradePrice xmlns:m= symbolSUNW/symbol /m:GetLastTradePrice /SOAP-ENV:Body /SOAP-ENV:Envelope 获得消息的内容 SOAPBody soapBody = response.getSOAPBody(); java.util.Iterator iterator = soapBody.getChildElements(bodyName); while (iterator.hasNext()) { SOAPBodyElement bodyElement = (SOAPBodyElement)iterator.next(); String lastPrice = bodyElement.getValue(); System.out.print(The last price for SUNW is ); System.out.println(lastPrice); } 在头中添加内容 SOAPHeader header = message.getSOAPHeader(); Name headerName = soapFactory.createName(Claim, wsi, /schemas/conformanceClaim/); SOAPHeaderElement headerElement = header.addHeaderElement(headerName); headerElement.add

文档评论(0)

ligennv1314 + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档