What are you using as your middleware?  if you are using cf, you can 
load the data into a file, then look at the file.

Like this:
<cfset uploadTargetLocation=expandPath("../../../test")>
<cfset req = getHTTPRequestData() />


<cffile action="UPLOAD" filefield="Filedata" 
destination="#uploadTargetLocation#/#FORM.tempName#" 
nameconflict="MAKEUNIQUE">
<!------>
<cfsavecontent variable="info">
<html>
        <head></head>
        <body>
                <cfdump var="#uploadTargetLocation#">
                <cfdump var="#cffile#" label="CFFILE">
                <cfdump var="#req#" label="getHTTPRequestData()">
                <cfif IsDefined("URL")>
                        <cfdump label="URL" var="#url#">
                </cfif>
                <cfif IsDefined("FORM")>
                        <cfdump label="FORM" var="#FORM#">
                </cfif>
        </body>

</html>
</cfsavecontent>
<cffile action="write" file="#uploadTargetLocation#/dump.html" 
output="#info#" addnewline="yes">

--- In flexcoders@yahoogroups.com, "ozziegt" <[EMAIL PROTECTED]> wrote:
>
> It seems that there is no way to view the response from the server
> when making a FileReference.upload request. While URLLoader has a 
data
> object, it seems that FileReference has no such object. Is this 
true?
> The server I am using returns an XML response which includes some
> information that I need.
> 
> Thanks
>



Reply via email to