ParseXml, "Premature end of file" error
I have made an online PDF submission script for a form on my site. For the most part, it has been working fine. However, over the past few days, I have gotten a number of error emails that I have setup with people having submission errors.
Here is what I am getting:
Error Type: Expression
Error Message: An error occured while Parsing an XML document.
Error Details: Premature end of file.
This is what I use to grab the XML:
<CFSET pdfXml=#ToString(GetHttpRequestData().Content)#>
<CFSET xmlData=#XmlParse(pdfXml)#>
These lines occur like the third or fourth line in the script, and the lines before it are for a CFTRY and another CFSET variable.
Any idea as to what might be causing this error? Since it works for 99% of the people, I think it is a problem with the system/server rather than the script...
Thanks in advance for any help with this!
