I found the problem to this. When I had the GetPageContext.Forward() on the page I got the err.io.short_read error. After I changed it to cflocation it still error out with err.io.short_read. I just know restarted the services and it works good, because I had left trusted cache on when testing performance. <---- Moron :|
Bryan -----Original Message----- From: Bryan F. Hogan [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 17, 2002 4:04 PM To: CF-Talk Subject: RE: err.io.short_read P.S. Placing GetPageContext().Forward() on a page where there is form variables will cause this problem. But I'm not sure why it is happening with the cflocation. -----Original Message----- From: Bryan F. Hogan [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 17, 2002 4:00 PM To: CF-Talk Subject: err.io.short_read With the following code I get the error "err.io.short_read" on the cflocation line below. I have tried using the J2EE session variables, I have tried making the cftoken uuid, I have tried GetPageContext().Forward() (Which I have heard will cause the below problem.) Why is this happening with my cflocation? I have also tried changing addtoken to "no". Any ideas? <CFINVOKE COMPONENT="assets/cfc/Customers" METHOD="AddCustomer"> <CFINVOKEARGUMENT NAME="EmailAddress" VALUE="#LCASE(TRIM(FORM.EmailAddress))#"> <CFINVOKEARGUMENT NAME="Password" VALUE="#LCASE(TRIM(FORM.Password))#"> </CFINVOKE> <CFLOCK TIMEOUT="10" THROWONTIMEOUT="YES" TYPE="EXCLUSIVE" SCOPE="SESSION"> <CFSET SESSION.LOGGEDIN=1> <CFSET SESSION.USERINFORMATION=ARRAYNEW(1)> <CFSET ARRAYAPPEND(SESSION.USERINFORMATION,LCASE(TRIM(FORM.EmailAddress)))> <CFSET ARRAYAPPEND(SESSION.USERINFORMATION,LCASE(TRIM(FORM.Password)))> </CFLOCK> <CFLOCATION URL="checkout.cfm" ADDTOKEN="yes"> ______________________________________________________________________ Your ad could be here. Monies from ads go to support these lists and provide more resources for the community. http://www.fusionauthority.com/ads.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/[email protected]/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

