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

______________________________________________________________________
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
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