Hi Varun with the help of your answer and the answer from Mandeep (http://help-forums.adobe.com/content/adobeforums/en/experience-manager-forum/aem-forms.topic.html/forum__yc8y-_hi_i_want_to.html) I could eventually pass a custom parameter to the redirect page I'm using this dependency (in the bund...
Hi arvmohanI've already tried this by writing a custom URL to the reponse's location attribute in the header. response.setStatus(302); response.setHeader("Location", <custom redirect url>);But setting the header in the custom submit action throws an IllegalStateException. Maybe the exception is thro...
Hi Mandeepthank you for your answer. The doc you'are referring to, does not describe how I can pass parameters back from a custom submit action to the redirection page.. Flow chart from https://helpx.adobe.com/aem-forms/6-1/custom-submit-action-form.htmlRegards,Urs
Hi Mandeepthank 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...
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> <groupI...
I've found the dependencies I need to add to the pom.xml so that FormsHelper class is available: <dependency> <groupId>com.adobe.granite</groupId> <artifactId>com.adobe.granite.xssprotection</artifactId> <version>5.5.62</version> <scope>provided</scope> </dependency> <dependency> <groupId>co...
Hi 1) https://helpx.adobe.com/aem-forms/6/custom-submit-action-form.html refers to the 'FormsHelper API'. 2) A google search on 'FormsHelper' reveals https://docs.adobe.com/content/docs/en/cq/5-6-1/javadoc/com/day/cq/wcm/foundation/forms/FormsHelper.html3) Searching FormsHelper's package 'com.day.cq...
Hi I wonder how I can make my custom submit action returning a value and have this value available on the redirect page saying as url parameter?Example:1) submit action generates a kind of ticket number2) i want to use the ticket number previously generated by the submit action in a link on redirect...