try 1.8.0 below
in some threads, it worked with 1.6.0
https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager/generate-a-pdf-in-cq5-with-an-api/m-p/224946
can you please provide you pom.xml entry for pdfbox
<dependency><groupId>org.apache.pdfbox</groupId><artifactId>pdfbox</artifactId><version>3.0.1</version><scope>compile</scope></dependency>
or you can try embed explicitly to the maven-bundle-plugin
<Embed-Dependency>pdfbox;scope=compile|run...
Did you check the permission of the service user?
Pleas make sure that the user or service account making the API request has the necessary permissions to create node/folder/assets in the specified location. You can check this in the user administration section of AEM.
Is the tests/ node alr...
Is there any change to you Network or IP address?
or VPN enabled vs Dynamic IP or any change network security changes?
Did you try with any Other different network ?
Did you upload and install the package?
Open AEM Package Manager by navigating to
http://<your_aem_instance>:<port>/crx/packmgr/index.jsp.
Upload and Install Package
Verify the installation:
http://<your_aem_instance>:<port>/libs/granite/modernize/content/home.html
https://opensource.adobe.com...
MagentoGraphqlClient class does not have the option of or method to directly to set headers.
/*** This is a wrapper class for {@link GraphqlClient}. The constructor adapts a {@link Resource} to* the GraphqlClient class and also looks for the <code>magentoStore</code> property on the resource* ...
Write a custom workflow to include a step for attached / referenced / associated assets etc.
You need to identify the assets that are associated with the CF. You can do this by traversing the CF's structure and collecting all the references to assets.
=== sample code structure ===
import com.day.c...
Did you try SFTP instead of FTP ?
FTP may use random port,
Connecting AEM as a Cloud Service to an FTP server can be challenging due to the nature of FTP's passive mode and the restrictions on port forwarding in many cloud environments.
you have to convert String type to Date type using SimpleDateFormat JAVA class and then pass date type to query.
import java.text.SimpleDateFormat;import java.util.Date;
String customPublishTime = "2022-03-04T00:00:00.000+05:30";SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss...