Answered
Livecycle has many great features and trying to understand it has been a little hard, but I think I’m getting the idea here. I wanted to know where I could go to find out more on how to run the software on the server for the XML document that Reader sends out/back to the e-mail I put on the document. As well as how or what can the software on the server side do/features?
Thanks
There are articles on this site that explain the options for dealing with submitting data by email. Just do a search in the Tutorials for "Submit".
Server side is more complicated. Acrobat submits data to an URL as an HTTP post. All the server script gets from acrobat is the submitted data. What it does with data is up to the script, but Acrobat expects to get a response back that is not HTML. The most common kind of response is to sent data back, which then populates the fields on the form. The data transfer is two way and you can use this in either direction to your own advantage.
Of course the LiveCycle ES servers are setup for handling this kind of data transaction. Look up the Form Server. There are also 3rd party services like www.formrouter.com that will take care of the data collection thing for you.
But if you want to write your own server script there are a lot of options. You can write in any CGI/Server scripting language you want, perl, php, ASPX, etc. Adobe's ColdFusion has built in features for handling data submissions from Acrobat so you get a big advantage using it.
Thom Parker
The source for PDF Scripting Info
[url=http://www.pdfScripting.com]pdfscripting.com[/url]
The Acrobat JavaScript Reference, Use it Early and Often
[url=http://www.adobe.com/devnet/acrobat/javascript.php]http://www.adobe.com/devnet/acrobat/javascript.php[/url]
Then most important JavaScript Development tool in Acrobat
[url=http://www.pdfscripting.com/public/34.cfm#JSIntro][b]The Console Window (Video tutorial)[/b][/url]
[url=http://www.acrobatusers.com/tutorials/2006/javascript_console][b]The Console Window(article)[/b][/url]
Thom Parker
The source for PDF Scripting Info
www.pdfscripting.com
Very Important - How to Debug Your Script