- 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/
从开发者的角度来看,Mac 版 Safari 和 Windows 版 Safari 有何不同? 我认为可以归结为评估两者之间的差异(如果我遗漏了什么,请更正): - 布局渲染 - Javascript
正如标题所说:Android 版 Chrome 和 iOS 版 Chrome 有什么区别。 我对两者进行了一些研究,但找不到关于该主题的任何最新信息。进行这项研究的原因是因为我正在研究某些 Web A
我有以下脚本可以获取您的地理位置并重定向您到 Google map : (function(){ navigator.geolocation.getCurrentPosition(function(p
我负责修复导航栏显示比应有的低 1 像素的问题。 查看网站后,我无法找到所报告的问题,直到我在 Mac 上进行了检查。 Firefox、Safari 等在 Mac 上运行良好,但 Chrome 是导致
我是典型的 .NET 开发人员(C# 是我的第一语言),几年前转向 ASP.NET MVC。现在是我职业生涯发生重大变化的新时期。如果我们看看 Web 开发的前景,我们可以看到新技术如何占领世界,而其
Grails 2.0 项目目前带有资源插件 1.1.5,它似乎有几个依赖问题(例如,参见 this post 的答案)。我正在使用 IntelliJ,虽然我将 BuildConfig.groovy 更
我有一个支持 android 2.3.3 的 android 项目。 但它也支持 sdk 版本 17。当我创建一个新 Activity 时,它会创建一个特定于版本 17 的 Activity 。 如何
有没有人有在 Android 设备上使用 pjsip 的经验?我看到几个非商业/测试项目使用它,所以我假设它可以完成,但没有一个有很好的记录。我认为 pjsip-jni 项目是一个不错的起点,但基本上
谁能告诉我在 Xcode (iPhone) 中执行以下操作的最佳方法是什么。 我有一个主导航屏幕,上面有一些按钮。当用户单击任何按钮时,他们将被带到带有更多选项按钮的子导航屏幕。在这里,他们单击任意一
我正在使用 JBoss Embedded beta3.SP10 版本,我正面临一个应该在某些 Hibernate 版本中修复的持久性错误。可悲的是,我不知道我的 JBoss Embedded 中使用的
我想在 android 中使用简单的 snmp get。我找到了 java 的代码并尝试在 android 中使用它。我还附加了 snmp4j.jar 文件用于 android。但是我得到了 Null
我的实现目标是: 可以通过一个或多个关键词搜索到文章。 可以通过文章的关键词列表查询到其相关文章。 查询到的结果依据相关程度降序排列。 查询速度要够快。(理论上关键词检索比全文检索要快很多的
我正在尝试创建一个允许我将视频从 iPhone 流式传输到服务器的应用程序。我目前关于如何做到这一点的理论是创建一系列 FFMpeg 文件并将它们发送到服务器。据我所知,我已经编译了 FFMpeg图书
这个问题在这里已经有了答案: Login failed in github for window (5 个回答) 7年前关闭。 当我安装 GitHub 时,我无法使用我的帐户凭据登录。 我收到错误 L
我需要在我的 iPad 项目中使用 Three20。我想知道 iPhone 版本的 Three20 项目是否可以直接在 iPad 上使用,还是应该等待这个时间线完成: http://three20.i
有人能做到吗 http://www.surina.net/soundtouch/适用于 iPhone? 简单的 Xcode 演示会很有帮助。 我只想通过一些音调操作来播放音效。谢谢克里斯 最佳答案 使
如何在iPhone中使用“speex”进行音频编码/解码?我没有在项目中添加框架。 最佳答案 这个blog entry: Compile Speex For iPhone克利夫顿·克雷格(Clifto
我想知道bonjour是公共(public)API还是私有(private)API?我们可以直接在我们的应用程序中使用它吗? 最佳答案 Bonjour 由 NSNetServices 和 CFNetS
••••• 已解决•••••该应用程序可用。只是花了一些时间才出现。我之所以将其视为测试版,是因为我的 Google 帐户用于 alpha 测试。如果您遇到同样的问题,只需从测试人员中删除您的帐户并等
我是 Android 编程初学者。 我在使用 Android 下载文件时遇到问题 我使用了 Httpost、Httpget 和 hhtpurlconnection前两个根本不起作用第三个两次无法下载
我是一名优秀的程序员,十分优秀!