Here's the fix my ISP came up with. My flash forms are working beautifully now!!
Chris Knowledge Base Article: KB893 Topic: Development - ColdFusion and CFMX Title: CFChart display problem Last Reviewed: Dec 03, 2004 Keywords: -------------------------------------------------------------------------------- PROBLEM: When using the CFCHART tag, the graph image never shows up. For jpg format, a blank image with X appears. For Flash format, the screen never finishes retrieving, as if it is hung up. SOLUTION: To solve the problem, do the following: 1. Run the following MSDOS command (one long command): >From this folder: c:\cfusion\runtime\jre\bin\> Run this: java.exe -cp c:\cfusion\runtime\lib -jar c:\cfusion\runtime\lib\wsconfig.jar -ws IIS -site "0" -map .cfm,.cfc,.cfml,.jsp -v 2. Add a virtual mapping under the site that is trying to use CFCHART tag. Name it "JRunScripts" and have it point to folder "C:\CFusion\runtime\lib\wsconfig\1" (without quotes). On 4/20/05, Chris Gomez <[EMAIL PROTECTED]> wrote: > Yes, I've been getting the little watch hand. It only seems to be a > problem with flash forms using queries. I created a plain flash form > and it loaded with no problem. Though, now that I think about it, the > watch hand stayed on the screen whenever the cursor wasn't on a field. > > I've edited the form to do a cfdump, then abort. > > here's the code > > <cfquery name="test" datasource="btech"> > SELECT t.fldTROID, t.fldName, t.fldBValue, t.fldCost > FROM tblTRO t > WHERE t.fldFaction = 1 and t.fldEra = 2 and t.fldType = 1 > ORDER by t.fldName > </cfquery> > > <cfdump var="#test#"><cfabort> > > <cfform format="flash" action=""> > <cfgrid name="UnitStats" query="test" insert="yes" delete="yes" > height="400"> > > </cfgrid> > </cfform> > > On 4/20/05, Ken Ferguson <[EMAIL PROTECTED]> wrote: > > > > > > > > Do you just get the little watch hand? I had this problem on my dev server. > > I reinstalled CF twice and it started working. I was told by Mike Nimer of > > MM that it is a problem communicating with the flash remoting used by the > > flash forms. He wasn't able to tell me why, but the reinstall fixed it all. > > > > > > > > ________________________________ > > > > > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Chris Gomez > > Sent: Wednesday, April 20, 2005 10:30 AM > > To: [email protected] > > Subject: CFMX 7 flash form question > > > > > > > > I'm bulding a test page using flash forms. It uses a query to pull five > > simple text/integer fields into a grid for editing. The query should > > generate about 100-ish rows. However, it's been running for about an hour > > now and aside from generating the grid hasn't done anything. I've already > > checked with the ISP and they say it doesn't appear to be a problem with > > the server. > > > > http://www.chaosmarch.com/flash2.cfm > > > > Has anyone seen anything like this? > > > > Chris > ---------------------------------------------------------- To post, send email to [email protected] To unsubscribe: http://www.dfwcfug.org/form_MemberUnsubscribe.cfm To subscribe: http://www.dfwcfug.org/form_MemberRegistration.cfm
