we have 3 servers (win2003, IIS6, CFMX7) and none of them have had problems
generating/displaying flash forms. But last week forms generated by one of the
servers no longer display in a browser - all you see is a blank space where the
form should be. There are no error messages or anything I can find to indicate
that there is a problem. The same page works fine on the other 2 servers and
the source code delivered to the browser (view source) appears to be indentical.
The w3 logs on the problem server indicate a 404 error (page not found) when
trying to load the generated content: 1024633941.mxml.cfswf
The only thing change made to this server recently was implementing NT
authentication per this technote:
ColdFusion MX (all versions): Implementing NT authentication for ColdFusion
templates with IIS Web Server
http://www.macromedia.com/go/tn_18516 Have used the simple form example in the getting started code snippets:
<cfif not isDefined("form.submit")>
<br><br>
<cfform action="#cgi.script_name#?#cgi.query_string#" method="POST"
format="Flash" timeout="1800" width="400" height="300">
<cfinput name="firstName" size="20" type="text" label="First Name" />
<cfinput name="lastName" size="20" type="text" label="Last Name" />
<cfformgroup type="horizontal">
<cfinput name="submit" value="Submit" type="submit" label="Submit" />
<cfinput name="reset" value="Reset Form" type="reset" label="Reset Form" />
</cfformgroup>
</cfform>
<cfelse>
<br><br>
Information submitted from form:
<br><br>
<cfoutput>
Name: #form.firstName# #form.lastName#
</cfoutput>
<br><br>
<a href="javascript:history.back();">Return</a>
</cfif>
any idea what might be wrong?