我正在运行一个在 Rhino 中运行的脚本,它会创建一个像这样的 E4X 对象:
var s = <product id="123">
<name>Google Search</name>
<source>https://google.com</source>
</product>
我想在 SOAP 消息中包含这样的 XML。我正在使用Apache Axis 2 ServiceClient创建肥皂消息。我正在寻找一种将 E4X xml 对象转换为 Apache AXIOM 元素的方法,以便可以通过调用将其添加到 SOAP 消息中:
ServiceClient.addHeader(org.apache.axiom.om.OMElement omElement)