whoops! sorry, ColdFusion 8.0.1 on Windows 2003. I know i could use cfschedule etc or create a gateway / dir watcher, but i really want to learn how to do it using this tag (cfx_http)
Main Topics
Browse All TopicsIve seen many people mention using CFX_HTTP (http://www.cftagstore.com
My usage hope is that a user would upload a video, (that parts all handled) BUT once video has uploaded, the Conversion to FLV is "Called" using cfx_http5, and the page moves on, meaning the end user is not waiting for the conversion as well.
The conversion cfm page ive got covered, i can do the conversion, and it will update the database once conversion is completed, i just need to know, how, using CFX_HTTP is can start the process then move on through the site whilst that "task" would remain running server side.
Many thanks in advance
J
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Sorry for the double post as i cant edit.... but i have the full (paid for) version of cfx_http5 from http://www.cftagstore.com/
As you are using coldfusion 8 you can easily achieve this by using cfthread like the below tag given or let me know if you still want to do it with cfx_http.
cfthread will take care of the backend processing and you no need to worry as the end user would not be able to know whats happening at the background.
<cfthread action="run" name="VarName">
</cfthread>.
so for example, i could do <cfthread action="run" name="convertvideo.cfm?fil
If that works then excellent ill give it a go, but i would please really still like to know how to do it using cfx_http5 (since ive got it and its paid for i would like to know :) )
<cfthread action="run" name="ThreadName">
Here should be the code regarding your conversion.
</cfthread>
Below is the code to execute cfx_http5.
<CFX_HTTP5 URL=http://www.linkedbd.co
<CFIF STATUS EQ "ER">
<!--- ERORR PROCESSING --->
<h2>
<font color="#aa0000">Server returned error:
<CFOUTPUT>Error number: #ERRN#</CFOUTPUT></font>
</h2>
<CFOUTPUT>#MSG#</CFOUTPUT>
<CFELSE>
<!--- SUCCESSFUL REQUEST --->
<CFOUTPUT>#RESULT#</CFOUTPUT>
</CFIF>
Business Accounts
Answer for Membership
by: JmehtaPosted on 2009-11-06 at 04:09:53ID: 25758390
Which Version of Coldfusion you are using?