--
You received this message because you are subscribed to the Google Groups "Adobe LiveCycle Developers" group.
To post to this group, send email to live...@googlegroups.com.
To unsubscribe from this group, send email to livecycle+...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/livecycle?hl=en.
I am able to submit the entire PDF via HTTP to ASP.NET Request Object in .ASPX Web Page. On ASP.NET Web Page (ASPX), I am able to retrieve the submitted stream, and analyse it to extract the Data Fields and also the binary PDF File, and finally update SQL Server Database with the updated values from the PDF Fields, and save the PDF in Binary Format (to .PDF File) by converting the chunk element from Base64 String to Binary.
But this method, sometimes, it fails, and the entire submission fails (for various reasons such as IIS is down or SQL Server is Down or Validation Error on the server-side). The user in many cases gets frustrated, and I am blamed for this, because the user has lost all the Data Entry made. I am not sure why when the user press the BACK button on the browser, the PDF is reset to the beginning.
I think in order to avoid this, the best way is to submit to a Web Service, or simply call a Web Service and send the entire XDP to the Web Service. If something goes wrong, then at least the control is still on the client side, and the error can then be passed back to the user.
I hope someone can help with this.
How I can submit the entire PDF (XML Data + Binary Part) to a Web Service?
Tarek.