I have created a .net core web api controller in C#, that accepts PDF form data in FDF format, from a submit button on the form. Because my controller tries to store the data in a database, I would like to return a success/fail status to the form, which should be displayed to the user. The form is a regular Acrobat form (so not a web form) and is filled from the browser. I have read about returning FDF data with a /Status, but have not found how to translate that info to web api, which is quite new to me.
PDF form submission to .Net Core Web API, return result
364 Views Asked by Tim Dol At
1
There are 1 best solutions below
Related Questions in STATUS
- Wordpress how to override function get_order_report_data from wc_admin_report
- workflow status on a third-party website
- How to continue ajax remaining requests if file not found?
- Is there any way to get more detailed error reports from a windows API call?
- HTTP Status 403 - Invalid CSRF Token 'null' was found on the request parameter '_csrf' or header 'X-CSRF-TOKEN'
- Unity3D Android - Overlap Status Bar
- controller action for changing status in yii2
- Android Translucent status bar differs in different devices
- Storing check status of toDo list
- unable to update Status of product from csv
- change column status in JIRA in existing board
- Changing status bar color on HUAWEI device not working (API level 22)
- How to check status of AVPlayer?
- Given a PPID, how to find all of associated PID?
- How can I see a list of my newly-created files in git without staging them for commit?
Related Questions in WEBAPI
- Web API returning null JSON objects C#
- Is there any way to find out when an album got added to Spotify with the web API?
- How can I pass parameter of type HttpContent in web api?
- Error when trying to insert a view using web API with ember template
- Web API which enables Access-Control-Allow-Origin to *
- Database function Mock is not working in c# web api unit testing
- Using JWT authentication with Oboe,js
- Navigator.share() doesn't work for second time
- What should be status code of my Rest API if it is dependent on third party service and the results from service are invalid?
- How to send get request to a web API using CURL?
- Submitting a form through Javascript via POST method
- The PostAsync in HttpClient doesn't send data to my webapi
- create c# class for json string which have number as variables in object
- The column name 'userid' is specified more than once in the SET clause > or column list of an INSERT
- dotnet core / C# WebAPI - Controllers as Plugins
Related Questions in PDF-FORM
- In Livecycle forms make all negative values red
- Access further pages in PDF only when the reader agrees to the terms and conditions
- How can I edit fields in pdf dynamically from Delphi code?
- How do I watermark a PDF Form using Python?
- Use Python to programmatically save PDFs, just like a PDF reader
- populate a web form using PDF form data
- Is it possible to create savable PDF forms with ABCpdf?
- Fill pdf form using itext in java having problems
- Fill xfa pdf form using itext in java
- What is the perfect way to fill acroforms using CLI Linux tool or NodeJS module?
- Javascript - using form field values to determine which email address to use
- Stored Procedures SQL Server - Cannot get PDF to store locally
- How to display data to multiple text box field (more than 100) based on combo box selection in PDF by using JavaScript
- Trying to use pdf-lib to fill pdf form fields. Trouble Flattening and Saving Form
- How to make two selected indexes match in pdf dropdown using javascript
Related Questions in FDF
- Merge Multiple FDF docs FDFEmbedAndClose
- FDF to PDF Server Application Unavailable
- Save Fillable PDF to Server via PHP
- FDF data not exporting fields from PDF (Adobe Acrobat)
- PHP: Extract fdf fields as an array from a PDF
- Is it possible to parse fdf content by using the PDFLib library?
- Merging XFDF or FDF file with a PDF into a single PDF programmatically via python
- PHP force PDF download not working only for browser on Android
- PHP regex code to extract FDF data
- FDF to PDF using PHP
- PDF Form Filling with FPDF
- How to change a Button Icon of a PDF Formular with itextsharp?
- PDF, FDF, Local File and Command Line
- XFDF - How to open XFDF file in Illustrator
- BibDesk script to link Skim annotations to citation entry
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
You can Return a PdfResult that Adobe will accept. The return value must be based on where the document was submitted from. Here's my mvc controller
I found the definitions for PDF results and the document.ExportAsActionResult extension methods here.