Hi,
We have written a custom preprocessor that gets invoked on page publish to identify if a particular component is present on the page and invoke a workflow for approval before page activation. This all works fine but the custom 'ReplicationException' is not showing up in the page. It shows up in the sites/siteadmin section when i click on "quick publish" button, but the exception is not showing up in the actual page when i click on "Publish Page". In the actual page, it only says "ERROR: Failed to publish the selected page(s)"
I am on AEM 6.4.6.0, any idea why this behavior?
Solved! Go to Solution.
Views
Replies
Total Likes
Hi,
When you throw error message from processor e.g
throw new ReplicationException("your custom message"); This message only gets priority when you publish page from siteadmin.
If you want to show different error message when you publish from page then you need to overlay : http://localhost:4502/libs/cq/gui/components/authoring/editors/clientlibs/core.js <Check quick publish option>.
Thanks
Dipti
Is it documented that the exception message is displayed in the error message to the authors?
Views
Replies
Total Likes
I am not sure if this is documented anywhere but i was looking into this file /libs/cq/gui/components/common/wcm/clientlibs/wcm/js/publish.js that has the necessary logic in fail/error condition. This is very similar change to quickpublish.js or managepublication.js that were being discussed in the other thread. I tried to overlay it but still no luck
Views
Replies
Total Likes
the logic is working in sites/siteadmin area so wondering why it wouldn't work inside the page, I am posting the logic here anyway
public void preprocess(ReplicationAction action, ReplicationOptions options) throws ReplicationException {
try {
....
if(needReview) {
startWorkflow(...)
throw new ReplicationException("The page contains xyz component and it has not been reviewed");
}
}
catch () {
}
}
Views
Replies
Total Likes
Hi @prabudossh at the end did you solve the issue ?
I'm having the same issue, local env works displaying the custom message :
String errorMsg = String.format("Referenced assets : %1$s by page : %2$s are not tagged with the required tags.", assetWithInvalidTags.toString(), replicatedPath);
throw new ReplicationException(errorMsg);
But in other environments just get a generic error msg :
Not sure what's the issue since it is the same code and the same AEM versions, but the custom error message is not working on some environments...
Views
Replies
Total Likes
Hi,
When you throw error message from processor e.g
throw new ReplicationException("your custom message"); This message only gets priority when you publish page from siteadmin.
If you want to show different error message when you publish from page then you need to overlay : http://localhost:4502/libs/cq/gui/components/authoring/editors/clientlibs/core.js <Check quick publish option>.
Thanks
Dipti
You mean to say this one /libs/cq/gui/components/authoring/editors/clientlibs/core/js/actions/publish.js?
Will check it out, thanks!
Views
Replies
Total Likes
Views
Replies
Total Likes
Views
Likes
Replies