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

Perl Script Execution

New Here ,
Jun 22, 2010 Jun 22, 2010

Is there a way to execute a Perl/Cgi scripts in Cold fusion Built in Server. Actually I have tested my scripts in Apache Server by putting my cgi scripts in cgi-bin but in the Coldfusion built in Server we are having does not contain a cgi-bin. So what is the alternate way that can be used to execute a cgi script in the cold fusion built in Server.

TOPICS
Advanced techniques
771
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 ,
Jun 23, 2010 Jun 23, 2010

What do you want to execute the Perl?  The web server or the application server?

I don't know if the built in web server can execute Perl|CGI, I have never heard of it.  I would not be surprised if it did NOT do this.  The built-in server is intended for development and testing of ColdFusion application code.  Thus it is not a full featured web server and not intended to be used in a production enviornment.

But if you want to execute Perl code as part of a ColdFusion application, the <cfexecute....> command is perfectly capable of doing this from the applciation server.  That means the resulst of the Perl code, if there are any, are returned to the ColdFusion application domain rather then the user domain that would happend if the CGI code was been executed by the web server.

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
New Here ,
Jun 23, 2010 Jun 23, 2010
LATEST

Thanks a lot for your response....

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