Soap协议是一种交换数据的、基于XML的协议,我们之前文章讲过的方式是jaxws方式,是比soap高一个层次,一般会把消息给我们Soap会按照wsdl定义的那五个类型进行转换操作好,但是这篇介绍的是用saaj(比较底层)的方式,如何创建消息,然后发送出去。Soap使用因特网应用层的协议作为其传输协议,因此HTTP和SMTP都可以用来传输SOAP消息,目前常用的就是将soap消息绑定到HTTP中,其实可以定义成soap=XML+HTTP,这样定义可能不太准确,应该还包括远程过程调用(RPC)。参考1参考2
Soap消息格式如下图:
消息的创建有两种方式,一种是直接通过QName创建要发送的消息(Qname就是一个带有命名空间的节点),第二种是基于负载(payload)的消息,直接以字符串的方式发送过去。下面来看第一种:
创建消息:
public void test01() { try { //1、创建消息工厂 MessageFactory factory = MessageFactory.newInstance(); //2、根据消息工厂创建SoapMessage SOAPMessage message = factory.createMessage(); //3、创建SOAPPart SOAPPart part = message.getSOAPPart(); //4、获取SOAPENvelope SOAPEnvelope envelope = part.getEnvelope(); //5、可以通过SoapEnvelope有效的获取相应的Body和Header等信息 SOAPBody body = envelope.getBody(); //6、根据Qname创建相应的节点(QName就是一个带有命名空间的) QName qname = new QName("http://java.zttc.edu.cn/webservice","add","ns");//<ns:add xmlns="http://java.zttc.edu.cn/webservice"/> //如果使用以下方式进行设置,会见<>转换为<和> //body.addBodyElement(qname).setValue("<a>1</a><b>2</b>"); SOAPBodyElement ele = body.addBodyElement(qname); ele.addChildElement("a").setValue("22"); ele.addChildElement("b").setValue("33"); //打印消息信息 message.writeto(System.out); } catch (SOAPException e) { e.printstacktrace(); } catch (IOException e) { e.printstacktrace(); } }
发送消息(和上面代码又写重合):
public void test02() { try { //1、创建服务(Service) URL url = new URL(wsdlUrl); QName sname = new QName(ns,"MyServiceImplService"); Service service = Service.create(url,sname); //2、创建dispatch dispatch<SOAPMessage> dispatch = service.createdispatch(new QName(ns,"MyServiceImplPort"),SOAPMessage.class,Service.Mode.MESSAGE); //3、创建SOAPMessage SOAPMessage msg = MessageFactory.newInstance().createMessage(); SOAPEnvelope envelope = msg.getSOAPPart().getEnvelope(); SOAPBody body = envelope.getBody();http://www.cnblogs.com/fsjohnhuang/articles/2340335.html //4、创建QName来指定消息中传递数据 QName ename = new QName(ns,"nn");//<nn:add xmlns="xx"/> SOAPBodyElement ele = body.addBodyElement(ename); ele.addChildElement("a").setValue("22"); ele.addChildElement("b").setValue("33"); msg.writeto(System.out); System.out.println("\n invoking....."); //5、通过dispatch传递消息,会返回响应消息 SOAPMessage response = dispatch.invoke(msg); response.writeto(System.out); System.out.println(); //将响应的消息转换为dom对象 Document doc = response.getSOAPPart().getEnvelope().getBody().extractContentAsDocument(); String str = doc.getElementsByTagName("addResult").item(0).getTextContent(); System.out.println(str); } catch (SOAPException e) { e.printstacktrace(); } catch (IOException e) { e.printstacktrace(); } }
基于负载(payload)的消息:
public void test03() { try { //1、创建服务(Service) URL url = new URL(wsdlUrl); QName sname = new QName(ns,sname); //2、创建dispatch(通过源数据的方式传递) dispatch<Source> dispatch = service.createdispatch(new QName(ns,Source.class,Service.Mode.PAYLOAD); //3、根据用户对象创建相应的xml User user = new User(3,"zs","张三","11111"); JAXBContext ctx = JAXBContext.newInstance(User.class); Marshaller mar = ctx.createMarshaller(); mar.setProperty(Marshaller.JAXB_FRAGMENT,true); StringWriter writer= new StringWriter(); mar.marshal(user,writer); //4、封装相应的part addUser String payload = "<nn:addUser xmlns:nn=\""+ns+"\">"+writer.toString()+"</nn:addUser>"; System.out.println(payload); StreamSource rs = new StreamSource(new StringReader(payload)); //5、通过dispatch传递payload Source response = (Source)dispatch.invoke(rs); //6、将Source转化为DOM进行操作,使用Transform对象转换 Transformer tran = TransformerFactory.newInstance().newTransformer(); Domresult result = new Domresult(); tran.transform(response,result); //7、处理相应信息(通过xpath处理) XPath xpath = XPathFactory.newInstance().newXPath(); NodeList nl = (NodeList)xpath.evaluate("//user",result.getNode(),XPathConstants.NODESET); User ru = (User)ctx.createUnmarshaller().unmarshal(nl.item(0)); System.out.println(ru.getNickname()); } catch (IOException e) { e.printstacktrace(); } catch (JAXBException e) { e.printstacktrace(); } catch (TransformerConfigurationException e) { e.printstacktrace(); } catch (TransformerFactoryConfigurationError e) { e.printstacktrace(); } catch (TransformerException e) { e.printstacktrace(); } catch (XPathExpressionException e) { e.printstacktrace(); } }
以上为在发布WS服务时比较底层的方式,但现在很多框架都为我们完成了这些功能,就连Java本省也为我们封装了发布WS服务的方式,比如我们之前提到的JWS,下面大概归纳一下这些方式:
1.常见的服务端发布服务框架
① Axis1(JWS和WSDD方式),Axis2,CXF。
2.客户端调用服务
①DII(Dynamic Invocation Interface)
②Stub
③Dynamic Proxy
具体实现方式比较简单,大家可以百度了。
推荐阅读:http://www.cnblogs.com/leslies2/archive/2012/09/07/leslies2Blog_java_axis.html#t7
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。