Removing unsupported composite applications
Composite applications are no longer supported. If you have a composite application in your system and you migrate to Version 8.5, the migration fails. Ensure that all composite applications are deleted before you start the migration. When you delete a composite application, you must also run the resource cleaner, otherwise pages can still exist in the database.
- If you own or manage an application, you can delete it. The applications catalog is the only context where you can delete an application.
-
Use the following code sample to show the applications that you own or manage:
AppListString = Application.listall("applications") if AppListString == '': print 'There are no composite applications.' else: AppList = AppListString.split(' ') for app in AppList: print "- " + Application.nlsget(app,"title","en") + "(" + app + ")"
-
For each application that you want to delete, click the Delete icon.
-
Click OK to confirm the deletion.
-
Run the resource cleaner to ensure that no other pages exist in the database: Scheduling the delayed cleanup of portal pages.