Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

run a cfm program in paralell

Contributor ,
Sep 10, 2009 Sep 10, 2009

How to run a CFM program without openning a new window ?

Today , if I want to run a CFM program which have no display for the user,

I must open a new window to run the CFM program inside et close it at end.

Since last version of IE and other navigators, this window cannot be outside the screen completly,

then the user see a blank window which appear and desappear rapidly.

This is not nice.

Is there a way to run a CFM program without openning a new window ?

Thans for answers.

Pierre.

TOPICS
Advanced techniques
11.9K
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Sep 10, 2009 Sep 10, 2009

You can schedule it using the admin page.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Contributor ,
Sep 10, 2009 Sep 10, 2009

No, I can't,

this a program which is launched on the fly,

depending on what happenned in the application process.

Thanks for any suggestion.

Pierre.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Enthusiast ,
Sep 10, 2009 Sep 10, 2009

have a look at cfthread or CFML gateway.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Sep 10, 2009 Sep 10, 2009

run it inside a very small iframe.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Contributor ,
Sep 10, 2009 Sep 10, 2009

It seems that CFTHREAD can be a solution,

but my client is not in version 8.

And I am looking for the V8 documentation. (where to find it)

Then I will wait for using it.

Using an Iframe should be a good solution.

Thanks, Pierre.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Valorous Hero ,
Sep 10, 2009 Sep 10, 2009

At the links I provided before:

ColdFusion 8: http://livedocs.adobe.com/coldfusion/8/

ColdFusion 7: http://livedocs.adobe.com/coldfusion/7/

ColdFusion 6: http://livedocs.adobe.com/coldfusion/6.1/

ColdFusion 5: http://www.adobe.com/support/documentation/en/coldfusion/documentation50.html

ColdFusion 4: http://www.adobe.com/support/documentation/en/coldfusion/documentation452.html

That's all I have ever looked up.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Valorous Hero ,
Sep 10, 2009 Sep 10, 2009

Before <cfthread...> in ColdFusion 8, the <cfhttp....> tag could be used. It doesn't have the ability to share variables but it can be used to fire off a page for asynchronous prosssing, if you set the timeout value to 0 the parent page does not wait for anything.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Sep 10, 2009 Sep 10, 2009

It seems that CFTHREAD can be a solution,

but my client is not in version 8.

CFMX7 has the async gateway which will do what you want.  However Ian's suggestion of using <cfhttp> is probably the way I'd go with this.

--

Adam

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Valorous Hero ,
Sep 10, 2009 Sep 10, 2009

<cfhttp....> for all versions of ColdFusion http://livedocs.adobe.com/coldfusion/8/htmldocs/help.html?content=Tags_g-h_09.html.

<cfthread...> for the latest versions of ColdFusion http://livedocs.adobe.com/coldfusion/8/htmldocs/help.html?content=Tags_t_04.html.

One and|or the other of these shoudl work.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
Sep 10, 2009 Sep 10, 2009

How about running with ajax in embeded area? It's just hidden and no need to display.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Contributor ,
Feb 21, 2011 Feb 21, 2011
LATEST

My response is late,

but, since I used either an Ajax area, or a 1pixel Iframe hidden.

And does work well.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Resources