활동이 없어 이 대화는 잠겼습니다. 새 게시물을 작성해 주세요.
활동이 없어 이 대화는 잠겼습니다. 새 게시물을 작성해 주세요.
Hi Team,
Is there any way that we can apply the workflow on the AEM Package for the approvals?
Thanks
Uma
조회 수
답글
좋아요 수
Yes, you can do it with workflows.
you need to create steps/task which will get package/upload and approve install.
similar like curl
Upload a new package
curl -u admin:admin -F package=@"name_of_package.zip" http://localhost:4505/crx/packmgr/service/.json/?cmd=upload
Install an existing package
curl -u admin:admin -X POST http://localhost:4505/crx/packmgr/service/.json/etc/packages/export/name of package?cmd=install
Upload a package AND install
curl -u admin:admin -F file=@"name of zip file" -F name="name of package"
-F force=true -F install=true http://localhost:4505/crx/packmgr/service.jsp
Upload a package DO NOT install
curl -u admin:admin -F file=@"name of zip file" -F name="name of package"
-F force=true -F install=false http://localhost:4505/crx/packmgr/service.jsp
Rebuild an existing package in CQ
curl -u admin:admin -X POST http://localhost:4505:/crx/packmgr/service/.json/etc/packages/name_of_package.zip?cmd=build
Download (the package)
curl -u admin:admin http://localhost:4505/etc/packages/export/name_of_package.zip > name of local package file
조회 수
답글
좋아요 수
No, That's not the correct answer.
umamaheswariy46147403, I am not sure what you are trying to achieve, can you elaborate your use case ?
조회 수
답글
좋아요 수
Hi , We have use case where business wants to promote only few pages / few links for the production (few things handled by tech teams) .. request was need to package those changes from UAT and send for the approval .. so business just take a look at the package and approve.. then that package only goes to the production instead of approval first and package it to production.
its kind of unique use case , approval workflow on package instead of resources.
Note: on each and individual pages and images we are having the approval workflow..
Please let me know if needed more details and please advise.
Thanks
조회 수
답글
좋아요 수
In your use case - what exactly are they approving?
조회 수
답글
좋아요 수
They just wants to verify the files .. and approve the package. (1 scenario)
Thanks
Uma
조회 수
답글
좋아요 수
That is what I am trying to understand - in this use case -what is the payload of the workflow? Typically a payload is asset, pages, etc, not an AEM Package.
조회 수
답글
좋아요 수
Yes , Package pay load with all the links all the time.
Thanks
Uma
조회 수
답글
좋아요 수
Technically it's easily possible to start a workflow on a content-package. But I don't know if the UI allows you to do that. Maybe in the old /miscadmin it's working (haven't tested it).
Jörg
조회 수
답글
좋아요 수
Hi Jorg,
We can be able to access miscadmin .. here which option do we need to go for that? To apply workflow on the package.
Please advise.
Thanks
조회 수
답글
좋아요 수
You can create workflow packages from batch processing. See (1)
(1) : Starting Workflows
조회 수
답글
좋아요 수