I'm looking over an error that has me befuddled. Its been working fine. No one has touched the code because I am the only one with access to it here and I know I don't mess with stuff that is working. (For the most part!<g>)
Heres the error:
Error Diagnostic Information:
XML parsing error: not well-formed (error code 4, line 1, column 1, buffer offset 1)
The error occurred while processing an element with general identifier of (CFWWDX), occupying document position 24:2 to 24.75
Here's our code:
(From a multi homed web server on our public IP subnet there's a template that runs and includes this below:e)
<CFHTTP METHOD="Post"
URL="DELIMITER=" "
TEXTQUALIFIER=" "
RESOLVEURL="Yes">
<CFHTTPPARAM TYPE="Formfield"
VALUE="#FORM.SID#"
Name="SID">
</CFHTTP>
<CFWDDX INPUT="#CFHTTP.FileContent#" OUTPUT="GetEMail" ACTION="WDDX2CFML">
(This above line is line 24:2 to 24.75)
When I hard code the above VALUE to say an ID# I know exists in the DB I see that the email address is returned. (I just copied the above code into a blank page, changed #FORM.SID# to some ID# I know exists and it did return the email address so I know atleast the syntax is correct) SO I am assuming the CFHTTP is working but now what is the issue with the CFWDDX line? Like I said, this all worked for months until now. I also had the DB person check the DB to make sure nothing has changed as far as DB fields, etc.
So this is what I am trying to figure out. Why is this error occuring? I have never seen an error screen that had XML info on it. We dont use XML with anything in this app unless its just something thats part of CF Server (We are running CF4 IIS4 NT4 SP6)
Any suggestions?
Heres the error:
Error Diagnostic Information:
XML parsing error: not well-formed (error code 4, line 1, column 1, buffer offset 1)
The error occurred while processing an element with general identifier of (CFWWDX), occupying document position 24:2 to 24.75
Here's our code:
(From a multi homed web server on our public IP subnet there's a template that runs and includes this below:e)
<CFHTTP METHOD="Post"
URL="DELIMITER=" "
TEXTQUALIFIER=" "
RESOLVEURL="Yes">
<CFHTTPPARAM TYPE="Formfield"
VALUE="#FORM.SID#"
Name="SID">
</CFHTTP>
<CFWDDX INPUT="#CFHTTP.FileContent#" OUTPUT="GetEMail" ACTION="WDDX2CFML">
(This above line is line 24:2 to 24.75)
When I hard code the above VALUE to say an ID# I know exists in the DB I see that the email address is returned. (I just copied the above code into a blank page, changed #FORM.SID# to some ID# I know exists and it did return the email address so I know atleast the syntax is correct) SO I am assuming the CFHTTP is working but now what is the issue with the CFWDDX line? Like I said, this all worked for months until now. I also had the DB person check the DB to make sure nothing has changed as far as DB fields, etc.
So this is what I am trying to figure out. Why is this error occuring? I have never seen an error screen that had XML info on it. We dont use XML with anything in this app unless its just something thats part of CF Server (We are running CF4 IIS4 NT4 SP6)
Any suggestions?