powrmart.dtd 文件将位于 Informatica Powercenter 客户端中的什么位置?
Where the powrmart.dtd file will be located in Informatica Powercenter client?
从 Informatica PowerCenter 客户端(存储库管理器、工作流管理器、设计器)生成的所有 XML。这些验证针对 powrmart.dtd
我只想知道powrmart.dtd
的位置
最新版本为 8.0 版,安装 Informatica Cloud Secure Agent 后可在以下位置(在您的 Windows 计算机上)找到:
C:\Program Files\Informatica Cloud Secure Agent\main\bin\rdtm\powrmart.dtd
也可以在以下位置在线找到它:
https://code.google.com/p/rishav/source/browse/powrmart.dtd?r=79b8fc2157bbdfac9283679975d84d931691a4aa
您可以在解析 XML.
时添加以下行来禁用文件搜索
DocumentBuilderFactory 工厂 = DocumentBuilderFactory.newInstance();
factory.setFeature("http://apache.org/xml/features/nonvalidating/load-external-dtd", false);
从 Informatica PowerCenter 客户端(存储库管理器、工作流管理器、设计器)生成的所有 XML。这些验证针对 powrmart.dtd
我只想知道powrmart.dtd
的位置最新版本为 8.0 版,安装 Informatica Cloud Secure Agent 后可在以下位置(在您的 Windows 计算机上)找到:
C:\Program Files\Informatica Cloud Secure Agent\main\bin\rdtm\powrmart.dtd
也可以在以下位置在线找到它: https://code.google.com/p/rishav/source/browse/powrmart.dtd?r=79b8fc2157bbdfac9283679975d84d931691a4aa
您可以在解析 XML.
时添加以下行来禁用文件搜索DocumentBuilderFactory 工厂 = DocumentBuilderFactory.newInstance(); factory.setFeature("http://apache.org/xml/features/nonvalidating/load-external-dtd", false);