Hello,
we are using ContentServer 9.7 and since we installed update 11 we are dealing the following problem
I want to load Form Data with the function getForms() but it doesn't contain any data
Here some snippets:
public static WorkflowForm getWorkflowForm(List<ApplicationData> appDataList, String name, KeyType keyType) {
for (ApplicationData applicationData : appDataList) {
if (applicationData instanceof FormData) {
FormData formData = (FormData) applicationData;
for (FormDataInstance formDataInstance : formData.getForms()) {
if (name.equals(formDataInstance.getName())) {
return new WorkflowForm(formData, formDataInstance, keyType);
}
}
}
}
return null;
}
it's correctly running to the marked point, but there the size of the list which is returned from formData.getForms() is always 0.
It was running perfectly fine before the update
any ideas what could have changed?