Hi
I want to use com.adobe.aemds.guide.servlet.GuideSubmitServlet to pass custom parameters from a custom submit action to the redirect page.
http://localhost:4502/system/console/depfinder reports that the package 'com.adobe.aemds.guide.servlet' is available using maven dependeny:
<dependency> <groupId>com.adobe.aemds.guide</groupId> <artifactId>aemds-guide-core</artifactId> <version>2.2.4</version> <scope>provided</scope> </dependency>
But this package is not available in repository https://repo.adobe.com/nexus/content/repositories/releases/com/adobe/. By the way I haven't found any javadoc of GuideSubmitServlet. Is this class not intended to be used in custom code?
Thank you,
Urs
Solved! Go to Solution.
Views
Replies
Total Likes
Hi Mandeep
I was finally able to solve the problem see:
Thank you,
Urs
Views
Replies
Total Likes
You should be using
<groupId>com.adobe.aemfd</groupId> <artifactId>aemfd-client-sdk</artifactId>
as a dependency instead.
Views
Replies
Total Likes
Hi Mandeep
thank you for your help.
With the dependency you proposed my pom looks like:
<dependency> <groupId>com.adobe.aemfd</groupId> <artifactId>aemfd-client-sdk</artifactId> <version>6.1.1</version> <scope>provided</scope> </dependency>
But maven build fails with following error message:
... (compile), com.adobe.aemfd:aemfd-client-sdk:jar:6.1.1 (provided)]: Failed to read artifact descriptor for com.adobe.aemfd:aemfd-client-sdk:jar:6.1.1: Could not find artifact com.adobe.aemds:adobe-aemds-pkg-parent:pom:2.4.6 in nexus-releases
Regards,
Urs
Views
Replies
Total Likes
<version>6.1.1</version> ? I am sure that's not a valid version at all.
Can you let me know what release version of AEM forms are you on?
Views
Replies
Total Likes
that's the latest version I've found on https://repo.adobe.com/nexus/content/repositories/releases/com/adobe/aemfd/aemfd-client-sdk/.
Regards,
Urs
Views
Replies
Total Likes
sorry, I forgot to answer your second question: I'm using AEM Forms 6.1 with Hotfix 'AEM-FORMS-6.1-WIN-Hotfix-6717-2.2.4' installed.
Views
Replies
Total Likes
Hi Mandeep
I was finally able to solve the problem see:
Thank you,
Urs
Views
Replies
Total Likes