- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我们使用了撒克逊企业版。现在我们不再拥有许可证,因此我必须从应用程序中删除 jar 文件 (saxon9ee)。
当我删除这个 jar 文件并添加 saxon9-he 时,我们的一个功能停止工作。我们有一个链接,可以创建包含产品和内容的 xml 文件然后将其以 html 形式发布在网站上。 xml 文件仍会创建,但发布部分失败。它只显示一个空白页。
一旦我添加了 saxon9ee,它就会再次工作。但是我们不能再使用这个jar文件了。
因此我猜想这与 DOMSource 的转换(XSLT?)有关,但我不能找出由于 Saxon9ee 丢失而导致哪个部分发生故障。我没有异常(exception)。有什么好的办法吗替换我因删除撒克逊企业版而丢失的功能?
代码:
public String publishXmlFile(AS400 as400) {
try {
init();
build();
CatalogListController ac = (CatalogListController) FacesUtils.getManagedBean(BeanNames.CATALOG_LIST_CONTROLLER);
Catalog catalog = new Catalog(ac.getSelectedCatalog().getCatalogUi());
addCatalog(catalog);
String ifsPath = ApplicationProperties.getString("AS400ExportPath") + "internal/";
String fileName = ifsPath + ac.getSelectedCatalog().getUrlCode() + ".xml";
IFSFile xmlFile = new IFSFile(as400, fileName);
if (!xmlFile.exists()) {
xmlFile.createNewFile();
}
if (xmlFile.exists()) {
xmlFile.setCCSID(1208);
IFSFileOutputStream fos;
try {
fos = new IFSFileOutputStream(xmlFile);
// Prepare the DOM document for writing
Source source = new DOMSource(document);
// Prepare the output file
Result result = new StreamResult(fos);
// Write the DOM document to the file
Transformer xformer = TransformerFactory.newInstance().newTransformer();
xformer.setOutputProperty("encoding", "utf-8");
xformer.setOutputProperty(OutputKeys.INDENT, "yes");
xformer.transform(source, result);
System.out.println(source.toString() + " " + result.toString());
System.out.println("XML-FILE: " + xmlFile.toString());
fos.close();
xmlFile = null;
} catch (TransformerConfigurationException e) {
e.printStackTrace();
} catch (TransformerException e) {
e.printStackTrace();
}
} else {
System.out.println(xmlFile.getAbsolutePath() + " ");
}
} catch (Exception e) {
e.printStackTrace();
}
return null;
}
intit()函数:
private void init() {
// Setup Doc
try {
DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
DocumentBuilder builder = factory.newDocumentBuilder();
document = builder.newDocument();
document.createProcessingInstruction("xml", "version=\"1.0\" encoding=\"UTF-8\" ");
domRoot = (Element) document.createElement("xKml");
document.appendChild(domRoot);
domRoot.setAttribute("xsi:schemaLocation", "urn:company:xKml:2:0 http://www99.company.com/schemas/xKml-2-0/xKml-2-0.xsd");
domRoot.setAttribute("xmlns:xsi", "http://www.w3.org/2001/XMLSchema-instance");
//domRoot.setAttribute("xmlns:xs", "http://www.w3.org/2001/XMLSchema");
domRoot.setAttribute("xmlns", "urn:company:xKml:2:0");
timeFormatter.setTimeZone(TimeZone.getDefault());
} catch (ParserConfigurationException e) {
e.printStackTrace();
}
}
xsd 文件 ( http://www99.company.com/schemas/xKml-2-0/xKml-2-0.xsd ):
<xsd:schema targetNamespace="urn:company:xKml:2:0" elementFormDefault="qualified" attributeFormDefault="unqualified" version="2:0">
<xsd:include schemaLocation="../xKml-2-0-1/common/xKml-Components-2-0-1.xsd"/>
<!--xsd:include schemaLocation="common/xKml-CommonComponents-2-0.xsd"/
-->
<xsd:include schemaLocation="../xKml-2-0-1/Order-2-0-1.xsd"/>
<xsd:include schemaLocation="../xKml-2-0-1/Invoice-2-0-1.xsd"/>
<xsd:include schemaLocation="../xKml-2-0-1/Catalog-2-0-1.xsd"/>
<xsd:include schemaLocation="../xKml-2-0-1/PurchaseForecast-2-0-1.xsd"/>
<xsd:include schemaLocation="../xKml-2-0-1/OrderResponse-2-0-1.xsd"/>
<xsd:include schemaLocation="../xKml-2-0-1/OrderChanges-2-0-1.xsd"/>
<xsd:include schemaLocation="../xKml-2-0-1/ControlMessage-2-0-1.xsd"/>
<!--
<xsd:include schemaLocation="documents/xKml-OrderDocument-2-0.xsd"/>
<xsd:include schemaLocation="documents/xKml-InvoiceDocument-2-0.xsd"/>
<xsd:include schemaLocation="documents/xKml-CatalogDocument-2-0.xsd"/>
<xsd:include schemaLocation="documents/xKml-PurchaseForecastDocument-2-0.xsd"/>
<xsd:include schemaLocation="documents/xKml-OrderResponseDocument-2-0.xsd"/>
<xsd:include schemaLocation="documents/xKml-OrderChangesDocument-2-0.xsd"/>
<xsd:include schemaLocation="common/xKml-ControlWorkdataMessages-2-0.xsd"/>
--><!-- -->
<!-- xKml -->
<!-- -->
<xsd:element name="xKml">
<xsd:complexType>
<xsd:sequence>
<xsd:element ref="Version"/>
<xsd:element ref="History"/>
<xsd:choice>
<xsd:sequence>
<xsd:element ref="Parameter" minOccurs="0" maxOccurs="unbounded"/>
<xsd:element ref="Interchange"/>
<xsd:element name="Documents">
<xsd:complexType>
<xsd:sequence>
<xsd:choice>
<xsd:element ref="Catalog" minOccurs="0" maxOccurs="unbounded"/>
<xsd:element ref="PurchaseForecast" minOccurs="0" maxOccurs="unbounded"/>
<xsd:element ref="Order" minOccurs="0" maxOccurs="unbounded"/>
<xsd:element ref="OrderResponse" minOccurs="0" maxOccurs="unbounded"/>
<xsd:element ref="OrderChanges" minOccurs="0" maxOccurs="unbounded"/>
<xsd:element ref="Invoice" minOccurs="0" maxOccurs="unbounded"/>
</xsd:choice>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
</xsd:sequence>
<xsd:element ref="ControlMessage"/>
</xsd:choice>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
</xsd:schema>
build() 函数:
private void build() {
Element e, e1, e2, e3;
// basic sceleton for DOMtree
e = (Element) document.createElement("Version");
e.setAttribute("xmlns", "urn:company:xKml:2:0");
domRoot.appendChild(e);
e.appendChild(document.createTextNode("02.00"));
e = (Element) document.createElement("History");
e.setAttribute("xmlns", "urn:company:xKml:2:0");
domRoot.appendChild(e);
e1 = document.createElement("HistoryRecord");
e1.setAttribute("xmlns", "urn:company:xKml:2:0");
e.appendChild(e1);
e2 = document.createElement("Process");
e2.setAttribute("xmlns", "urn:company:xKml:2:0");
e1.appendChild(e2);
e2.appendChild(document.createTextNode("B2B"));
e2 = document.createElement("Timestamp");
e2.setAttribute("xmlns", "urn:company:xKml:2:0");
e1.appendChild(e2);
e3 = document.createElement("Date");
e3.setAttribute("xmlns", "urn:company:xKml:2:0");
e2.appendChild(e3);
e3.appendChild(document.createTextNode(dateFormatter.format(new Date())));
e3 = document.createElement("Time");
e3.setAttribute("xmlns", "urn:company:xKml:2:0");
e2.appendChild(e3);
e3.appendChild(document.createTextNode(timeFormatter.format(new Date())));
e = (Element) document.createElement("Interchange");
e.setAttribute("xmlns", "urn:company:xKml:2:0");
domRoot.appendChild(e);
e1 = document.createElement("InterchangeIdentity");
e1.setAttribute("xmlns", "urn:company:xKml:2:0");
e.appendChild(e1);
e1.appendChild(document.createTextNode(dateFormatter.format(new Date()) + " " + timeFormatter.format(new Date())));
e1 = document.createElement("Timestamp");
e1.setAttribute("xmlns", "urn:company:xKml:2:0");
e.appendChild(e1);
e2 = document.createElement("Date");
e2.setAttribute("xmlns", "urn:company:xKml:2:0");
e1.appendChild(e2);
e2.appendChild(document.createTextNode(dateFormatter.format(new Date())));
e2 = document.createElement("Time");
e2.setAttribute("xmlns", "urn:company:xKml:2:0");
e1.appendChild(e2);
e2.appendChild(document.createTextNode(timeFormatter.format(new Date())));
e1 = document.createElement("ComPartners");
e1.setAttribute("xmlns", "urn:company:xKml:2:0");
e.appendChild(e1);
e2 = document.createElement("From");
e2.setAttribute("xmlns", "urn:company:xKml:2:0");
e1.appendChild(e2);
e2 = document.createElement("To");
e2.setAttribute("xmlns", "urn:company:xKml:2:0");
e1.appendChild(e2);
e1 = document.createElement("DeploymentMode");
e1.setAttribute("xmlns", "urn:company:xKml:2:0");
e.appendChild(e1);
e1.appendChild(document.createTextNode("Operational"));
}
addCatalog() 使用与 build() 相同的方法和标准。
在它工作的应用程序版本中,我有这些 jar :
saxon9-icu.jar
saxon9-sql.jar
saxon9-stats.jar
saxon9ee-test.jar
saxon9ee.jar
saxon-license.lic
在没有企业的版本中不起作用:
saxon9-dom.jar
saxon9-icu.jar
saxon9-sql.jar
saxon9-stats.jar
saxon9-test.jar
saxon9-xqj.jar
saxon9.jar
saxon9he.jar
我需要做什么来替换 saxon 中缺失的功能?那是哪一部分呢?
谢谢
最佳答案
DOM 代码看起来完全错误,您应该使用命名空间感知的 DOM 工厂/构建器,然后使用命名空间感知的 DOM 方法,例如 createElementNS 和 setAttributeNS。
关于java - 从 saxon 9 企业版更改为家庭版后出现的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34787879/
我有一个现有的 CentOS 7 服务器(当然是由其他人设置的)运行 Saxon。如果我运行: /usr/bin/java net.sf.saxon.Transform -s:input.xml -x
我目前正在使用各种版本的 Saxon-Processor 进行纯 XSL 转换。下面是我的简短样式表,根据我的问题的需要进行了简化: Call of func_
我正在尝试从 java 代码中抛出异常,该异常将在使用 Saxon 时包含来自 xsl:message 标记的消息。 使用下面的 xslt 文件 exception me
Saxon似乎不是gradle试图发送它的地方: Not Found For request 'GET /artifact/net/sf/saxon/saxon-HE/9.9.0-2/saxon-HE
我最近获得了 Saxon-PE 的试用许可证,并希望在 Camel 中使用此版本的 Saxon。我下载了 Saxon-PE-9.6.0.8 jar 并通过 maven 将它们包含到我的项目中。我正在使
我正在使用 Saxon 9.0.4 并将 Home Edition jar 包含在我的 Eclipse 项目中。但是每当我发出查询字符串时,什么也没有发生,并且我没有得到任何输出。当我从命令行使用以下
我想使用 xpath 3.1 fn:transform 创建一个输出文档。以下是 A.xsl。它在直接运行时创建 A.xml(从氧气中):
我对此很陌生。 我有一个查询和一个 xml 文件。 我可以写一个对该特定文件的查询 for $x in doc("file:///C:/Users/Foo/IdeaProjects/XQuery/sr
简单的问题! 如何找出我正在运行的 Saxon 版本?我有“sazon9he.jar”文件,但我似乎无法弄清楚确切的版本(即它是 9.7 还是 9.6...) 谢谢! 最佳答案 在发布问题几分钟后终于
Saxon 是否有办法按排序顺序返回节点,其中“顺序”由返回节点中的 1 个或多个节点/属性定义? 换句话说,XPath 查询可以是: /Order/Dates/Date order by . 谢谢
我发现 saxon 9.9.1-4 中 XQueryCompiler 的行为非常奇怪。当我第一次运行 XQuery 时,无论 XQuery 复杂性如何,编译都会花费大量时间(400 毫秒)——例如 m
我正在使用 Saxon 解析器将大文件拆分为较小的文件。下面是我的示例代码, TransformerFactory tFactory = TransformerFactory.newInstanc
我们通常会进行大量的 XPath 查询,但几乎没有一个重复。因此每个查询都会被编译、执行,然后被抛出。 在 Saxon 中是否有一种模式,我们应该设置告诉它构建一次性使用的编译查询,这样在这种模式下使
我们将撒克逊语与我们的图书馆一起运送。我们以代码形式向其传递许可证,因此不发送 saxon-library.lic 文件。我们的系统一切都运行良好。 但是,我们的一位客户遇到了一个问题,当 hazel
我最初应该通过声明我们的代码使用嵌入式 saxon 扩展函数来发布我的问题 - saxon:parse($xml) 返回 xml 的根元素/节点。但是,在 Saxon-HE 中,该扩展不再可用 - 所
给定以下xml: Wells 使用 Xerces,以下 xpath 查询有效: //urn:company.com:catalog.01:author 当我使用
有谁知道用于在 XSLT 中执行合并的内置函数,还是我需要编写自己的函数? 我有一些像这样的 xml: Worldwide WorldwideName 78 GB
如何将多个字段传递到 Saxon-HE ExtensionFunction 中? 扩展通常需要一个参数数组: new ExtensionFunction { @Override pub
我想知道是否有人有使用 XQuery 的经验,因为 free version of Saxon 支持它。 。一般可以认为它是完整且可用的吗? 最佳答案 是的,我发现免费版本快速且稳定。 XQuery
我有一个将 Json 转换为 Json 的 XQuery。我制作了一个可以在命令行上运行的演示版本,我想在 java 中使用它。 问题是我不知道如何在 XQuery 中设置参数。 我的源文件“1.js
我是一名优秀的程序员,十分优秀!