1. <i id='1DPa8'><tr id='1DPa8'><dt id='1DPa8'><q id='1DPa8'><span id='1DPa8'><b id='1DPa8'><form id='1DPa8'><ins id='1DPa8'></ins><ul id='1DPa8'></ul><sub id='1DPa8'></sub></form><legend id='1DPa8'></legend><bdo id='1DPa8'><pre id='1DPa8'><center id='1DPa8'></center></pre></bdo></b><th id='1DPa8'></th></span></q></dt></tr></i><div id='1DPa8'><tfoot id='1DPa8'></tfoot><dl id='1DPa8'><fieldset id='1DPa8'></fieldset></dl></div>

      • <bdo id='1DPa8'></bdo><ul id='1DPa8'></ul>

        <small id='1DPa8'></small><noframes id='1DPa8'>

      1. <tfoot id='1DPa8'></tfoot>
        <legend id='1DPa8'><style id='1DPa8'><dir id='1DPa8'><q id='1DPa8'></q></dir></style></legend>

        使用名称空间和前缀解组 JAXB

        时间:2023-09-30

            <tbody id='PEivO'></tbody>

            <small id='PEivO'></small><noframes id='PEivO'>

            • <i id='PEivO'><tr id='PEivO'><dt id='PEivO'><q id='PEivO'><span id='PEivO'><b id='PEivO'><form id='PEivO'><ins id='PEivO'></ins><ul id='PEivO'></ul><sub id='PEivO'></sub></form><legend id='PEivO'></legend><bdo id='PEivO'><pre id='PEivO'><center id='PEivO'></center></pre></bdo></b><th id='PEivO'></th></span></q></dt></tr></i><div id='PEivO'><tfoot id='PEivO'></tfoot><dl id='PEivO'><fieldset id='PEivO'></fieldset></dl></div>
              <tfoot id='PEivO'></tfoot>

              1. <legend id='PEivO'><style id='PEivO'><dir id='PEivO'><q id='PEivO'></q></dir></style></legend>
                • <bdo id='PEivO'></bdo><ul id='PEivO'></ul>
                  本文介绍了使用名称空间和前缀解组 JAXB的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  我正在使用 JAXB 从 SOAP 响应中解析 xml 元素.我已经为 xml 元素定义了 POJO 类.我已经测试了没有命名空间的 pojo 类,并且前缀它的工作正常.虽然当我尝试使用命名空间和前缀解析时遇到以下异常.要求是解析来自 SOAPMessage 对象的输入

                  I am using JAXB to parse xml elements from the SOAP response. I have defined POJO classes for the xml elements. I have tested pojo classes without namespace and prefix its working fine .Though when i am trying to parse with namespaces and prefix facing the following exception.Requirement is to parse the input from SOAPMessage Object

                  javax.xml.bind.UnmarshalException:意外元素(uri:http://schemas.xmlsoap.org/soap/envelope/",本地:信封").预期的元素是 <{}Envelope>

                  尝试通过为 package-info.java 中的包创建 @XMLSchema 并将此文件定位在包文件夹中来修复.有人可以指导我继续前进吗?

                  Tried to fix by creating @XMLSchema for the package in package-info.java and located this file in package folder.Can any one guide me to move forward?

                  推荐这篇文章但对我没有帮助.

                  Referred this posts but didn help me .

                  已XMLSchema

                  @javax.xml.bind.annotation.XmlSchema (
                      xmlns = {  @javax.xml.bind.annotation.XmlNs(prefix = "env", 
                                   namespaceURI="http://schemas.xmlsoap.org/soap/envelope/"),
                        @javax.xml.bind.annotation.XmlNs(prefix="ns3", namespaceURI="http://www.xxxx.com/ncp/oomr/dto/")
                      }
                    )
                  package com.one.two;
                  

                  提前致谢

                  推荐答案

                  这可以在不使用标准 SOAPMessage 类修改生成的 JAXB 代码的情况下完成.我写了关于这个 here 和 这里

                  This can be done without modifying the generated JAXB code using standard SOAPMessage class. I wrote about this here and here

                  这有点繁琐,但可以正常工作.

                  It's a little fiddly but works correctly.

                  Farm farm = new Farm();
                  farm.getHorse().add(new Horse());
                  farm.getHorse().get(0).setName("glue factory");
                  farm.getHorse().get(0).setHeight(BigInteger.valueOf(123));
                  
                  Document document = DocumentBuilderFactory.newInstance().newDocumentBuilder().newDocument();
                  Marshaller marshaller = JAXBContext.newInstance(Farm.class).createMarshaller();
                  marshaller.marshal(farm, document);
                  SOAPMessage soapMessage = MessageFactory.newInstance().createMessage();
                  soapMessage.getSOAPBody().addDocument(document);
                  ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
                  soapMessage.writeTo(outputStream);
                  String output = new String(outputStream.toByteArray());
                  

                  解组

                  String example =
                          "<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"><soapenv:Header /><soapenv:Body><ns2:farm xmlns:ns2="http://adamish.com/example/farm"><horse height="123" name="glue factory"/></ns2:farm></soapenv:Body></soapenv:Envelope>";
                  SOAPMessage message = MessageFactory.newInstance().createMessage(null,
                          new ByteArrayInputStream(example.getBytes()));
                  Unmarshaller unmarshaller = JAXBContext.newInstance(Farm.class).createUnmarshaller();
                  Farm farm = (Farm)unmarshaller.unmarshal(message.getSOAPBody().extractContentAsDocument());
                  

                  这篇关于使用名称空间和前缀解组 JAXB的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:Java中带有命名空间的XPath 下一篇:在 Java 中使用命名空间创建 XML 文档

                  相关文章

                  最新文章

                  <tfoot id='uerky'></tfoot>

                      <bdo id='uerky'></bdo><ul id='uerky'></ul>
                  1. <small id='uerky'></small><noframes id='uerky'>

                      <i id='uerky'><tr id='uerky'><dt id='uerky'><q id='uerky'><span id='uerky'><b id='uerky'><form id='uerky'><ins id='uerky'></ins><ul id='uerky'></ul><sub id='uerky'></sub></form><legend id='uerky'></legend><bdo id='uerky'><pre id='uerky'><center id='uerky'></center></pre></bdo></b><th id='uerky'></th></span></q></dt></tr></i><div id='uerky'><tfoot id='uerky'></tfoot><dl id='uerky'><fieldset id='uerky'></fieldset></dl></div>
                    1. <legend id='uerky'><style id='uerky'><dir id='uerky'><q id='uerky'></q></dir></style></legend>