Hi,
I have designed an application form with some fields asking details of the customer.
I have provided a submit button on the pdf. When the user clicks on submit button after filling all required details in the form. The submit button calls a servlet class and reads the data of the pdf from xmls parsing and put into the database table.
But I want to implement a senario where if user clicks on the submit button. The entire pdf along with data into it get saved on the file server or documentum server. Here i do not want to read the fields of the form. I want to get and save the entire form/pdf.
Please let me know how do i do it.
regards
Sunil
Solved! Go to Solution.
Views
Replies
Total Likes
Make sure you use a regular button, and set the property to "Submit". Then you'll see a tab to set the submission type.
Don't use the built-in submit button.
Jasmin
Views
Replies
Total Likes
Please send me any reply
Views
Replies
Total Likes
Change the "Submit As" property of the submit button to PDF.
Jasmin
Views
Replies
Total Likes
OK ........... I've looked everywhere (well, apparently not) and I can't find the
SUBMIT AS property of the button.
Views
Replies
Total Likes
Make sure you use a regular button, and set the property to "Submit". Then you'll see a tab to set the submission type.
Don't use the built-in submit button.
Jasmin
Views
Replies
Total Likes
Got it. Thanks.
One of the best forums for assistance around.
John Rojowski
DFAS/IND DJMS-AC SIT
Phone: 317-510-7470
"Simplify."
Views
Replies
Total Likes
thank you Jasmin,
one of the top forum to find solution ............i would say
Regards
Sunil
Views
Replies
Total Likes
Saving Form Data as XML or XML Data Package (XDP)
To save your form data in XML format, invoke the doc object’s saveAs method using the conversion ID for XML, as shown in the code below:
this.saveAs("myDoc.xml", "com.adobe.acrobat.xml-1-00");
To take advantage of XFA functionality, you may save your forms in the XML Data Package format (XDP). This simply requires the usage of the conversion ID for XDP, as shown in the code below:
this.saveAs("myDoc.xml", "com.adobe.acrobat.xdp");
if wnt to submit the form back to server then make submit button as xml on the form while designing it.
Regards
Sunil
Views
Replies
Total Likes
The easiest way to have the submit button to return a PDF form data via email is to:
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies