私は、jython 2.7 で IBM FileNet P8 Platform 5.2.1 Content Engine 単体テスト アプリケーションに取り組んでいます。
# Verify a directory
def testDirectory(self):
directoryConfigurationList = []
url = self.serverUrl + "?tenantId=" + self.tenantName
connection = Factory.Connection.getConnection(url)
domain = Factory.Domain.fetchInstance(connection, self.tenantName, None)
if (domain is not None):
dc_set = domain._DirectoryConfigurations.iterator()
while dc_set.hasNext():
dc = dc_set.next()
print dc._DisplayName
エラーが発生しています:
TypeError: 変更された属性を共有するスーパータイプには MRO の競合があります [attribute=remove, supertypes=[, 'com.filenet.api.collection.DependentObjectList'>], type=CmIndexPartitionConstraintList]
オンライン dc_set = domain._DirectoryConfigurations.iterator()で、今は理由がわかりません。これに関する助けをいただければ幸いです。IBM 5.2.1 ナレッジ センターへの次のリンクが役立つ場合があります。