我试图将以下xml消息传播到IBM Integration Bus中的File Output Node。
<Resto xmlns = 'https://stackoverflow.com'><Location network_id="5dfweg68h"><Category>Continental</Category></Location></Resto>
以下是我相关的Java代码来构造上述xml消息:
MbElement xmlBody = outMessage.getRootElement().createElementAsLastChild(MbXMLNSC.PARSER_NAME);
MbElement xmlParent = xmlBody.createElementAsLastChild(MbElement.TYPE_NAME, "Resto", null);
xmlParent.createElementAsLastChild(MbXMLNSC.ATTRIBUTE, "xmlns", "https://stackoverflow.com");
MbElement locationParser = xmlParent.createElementAsLastChild(MbElement.TYPE_NAME, "Location", null);
locationParser.createElementAsLastChild(MbXMLNSC.ATTRIBUTE, "network_id", "5dfweg68h");
locationParser.createElementAsLastChild(MbElement.TYPE_NAME_VALUE,"Category","Continental");
在调试应用程序时,出现XML写入错误。我仔细考虑了必要的解决方案,发现添加名称空间前缀可以解决此问题。没有前缀就不能做到吗?如果否,那么有人可以通过建议在Java计算节点中进行必要的更改来指导我分配必要的值吗?
注意:分配给xmlns的字符串应在xml消息的单引号内。
答案 0 :(得分:0)
使用常量MbXMLNSC.NAMESPACE_DECLARATION
声明名称空间:
MbElement xmlBody = outMessage.getRootElement().createElementAsLastChild(MbXMLNSC.PARSER_NAME);
MbElement xmlParent = xmlBody.createElementAsLastChild(MbElement.TYPE_NAME, "Resto", null);
xmlParent.createElementAsFirstChild(MbXMLNSC.NAMESPACE_DECLARATION, "xmlns", "https://stackoverflow.com");
如果XSD定义XML元素为qualified,则必须显式设置名称空间。例子:
xmlParent.setNamespace("https://stackoverflow.com");
locationParser.setNamespace("https://stackoverflow.com");
locationParser.createElementAsLastChild(MbElement.TYPE_NAME_VALUE,
"Category", "Continental").setNamespace("https://stackoverflow.com");