I use cfhttp to create a query from an ascii text file. The text file is comma
delimited, with quotes around text.

This works fine in CF5 and older versions - no problems at all.

But in CFMX, the cfhttp command produces an error if the ascii file has an
beginning or ending blank field.

By this, I mean if the data line looks like:

,,"data",,,,"data"

Or

"data",,"data",,,

Then cfhttp will produce an error.

If I enter data into the beginning and ending fields, the problem goes away.

This problem only exists on cfmx - and not on cf5 or earlier versions

I've posted the code below.

Again, this works perfectly in older versions of CF, but fails everytime in
CFMX.

Does anyone know a work-around for this problem?

Thanks,

Bill

<CFHTTP url="http://sitename.com/contenthold.txt" method="GET"
name="memroster" textqualifier='"' delimiter=","
columns="ID,FirstName,LastName,FullName,Title,Firm ,Address,City,State,Zip,Email,
Phone,Expire,username,password,SubNum" resolveurl="false" timeout="90">