<cfscript>
	
	param name = "url.size" type = "numeric" default = 100;

	// ------------------------------------------------------------------------------- //
	// ------------------------------------------------------------------------------- //

	post = new Http(
		method = "post",
		url = "http://127.0.0.1:56232/thread-form/test.cfm"
	);
	post.addParam(
		type = "formfield",
		name = "a",
		value = repeatString( "This is a long field value. ", url.size )
	);
	
	echo( post.send().getPrefix().fileContent );

</cfscript>