saxon 9企业版改成家庭版后出现的问题
Problems after changing from saxon 9 enterprise to home edition
我们用过saxon enterprise editon。现在我们不再拥有许可证,因此我不得不从应用程序中删除一个 jar 文件 (saxon9ee)。
当我删除这个 jar 文件并添加一个 saxon9-he 时,我们的一个功能停止工作。我们有一个 link 创建一个包含产品和文件的 xml 文件
然后在网站上的 html 中发布。 xml 文件仍然创建,但发布部分失败。它只是显示一个空白页。
只要我添加了 saxon9ee,它就会再次运行。但是我们不能再使用这个 jar - 文件。
因此,我猜想这与 DOMSource (XSLT?) 的转换有关,但我不能
找出由于 Saxon9ee 的丢失而导致故障的部分。我没有例外。有什么好办法
替换我因删除撒克逊企业版而丢失的功能?
代码:
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() 相同的方法和标准。
在它运行的应用程序版本中,我有这些罐子:
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 factory/builder,然后使用命名空间感知 DOM 方法,如 createElementNS 和 setAttributeNS。
我们用过saxon enterprise editon。现在我们不再拥有许可证,因此我不得不从应用程序中删除一个 jar 文件 (saxon9ee)。
当我删除这个 jar 文件并添加一个 saxon9-he 时,我们的一个功能停止工作。我们有一个 link 创建一个包含产品和文件的 xml 文件 然后在网站上的 html 中发布。 xml 文件仍然创建,但发布部分失败。它只是显示一个空白页。
只要我添加了 saxon9ee,它就会再次运行。但是我们不能再使用这个 jar - 文件。
因此,我猜想这与 DOMSource (XSLT?) 的转换有关,但我不能 找出由于 Saxon9ee 的丢失而导致故障的部分。我没有例外。有什么好办法 替换我因删除撒克逊企业版而丢失的功能?
代码:
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() 相同的方法和标准。
在它运行的应用程序版本中,我有这些罐子:
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 factory/builder,然后使用命名空间感知 DOM 方法,如 createElementNS 和 setAttributeNS。