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">


______________________________________________________________________
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.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

Reply via email to