Just to give you a brief intro on what am I trying to achieve.
I need to scrape a value for each month from a public website. As an example, for a particular status in the month of May, 2014; the TOTAL value is 224,481 (at the bottom right part of the page). I need to capture this value and store in the database for each of the month. The following URL will need to be run by changing the parameters for each month. VEEC Website with params

To achieve this, I am trying to get the HTML using CFHTTP as follows and then using JSOUP will scrape the intended value from the returned HTML before storing into the database.
<cfset f_url = "https://www.veet.vic.gov.au/Public/PublicRegister/Search.aspx">
<cfhttp method="GET" url="#f_url#">
<cfhttpparam type="Header" name="Accept-Encoding" value="*">
<cfhttpparam type="Header" name="TE" value="deflate;q=0">
<cfhttpparam name="CreatedFrom" type="URL" value="#StartDate#">
<cfhttpparam name="CreatedTo" type="URL" value="#EndDate#">
<cfhttpparam name="Status" type="URL" value="PRP,PRV">
</cfhttp>
<cfdump var="#cfhttp#">
I'm getting the connection failure error when I try to run the code snippet.
Please advise if there is an alternate way of doing the same. This has to be implemented just to gather data on the development side and not meant for production use.
Edit (Didn't want to Delete the question): I had to use the internet proxy to access the website in the CFHTTP tag to make it work. My bad for not checking it earlier. Hopefully, it might help someone in future. Thanks everyone.
StartDateandEndDatevariables look like? Is the server you're running this able to connect to that URL? - duncancsfettags. Yes, although the url is accesible from the CF server; i'm thinking the issue is related to IIS. Any thoughts on the same and ways to debug this? - Gaurav S31-May-2014, as dates usingCreateDate(), ...? This article may be relevant: coldfusionmuse.com/index.cfm/2013/7/22/coldfusion.iis8.cfhttp - duncan