Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I found similar questions on python and Java but I can't solve my problem effectively.

I have a python script that carries intellectual property protection. So I cant rewrite it in Java. Now I need to run this python script which contacts the Postgresql 9.1 database and returns processed information as result. This python script gets updated every 3 months.

Now I need to run this from Coldfusion 10 application without affecting the performance of the application.

Any suggestions?

share|improve this question
You might want to read this article, Running Python on ColdFusion – duncan Oct 23 '12 at 15:10

2 Answers

up vote 2 down vote accepted

Where does the python script reside? If its on the same machine as CF, you can use CFEXECUTE to execute the python script.

share|improve this answer
I tried <cfexecute name = "E:\Garagespace\python\helloworld\src\printhello.py" outputFile = "C:\Temp\outputpython.txt" timeout = "10"> </cfexecute> but got error The cause of this exception was that: java.io.IOException: Cannot run program "E:/Garagespace/python/helloworld/src/printhello.py": CreateProcess error=193, %1 is not a valid Win32 application. – NaranRaj Oct 23 '12 at 15:08
1  
@NaranRaj you most likely need to use cfexecute to execute the python.exe and then pass the script to execute in as an argument. – Sean Coyne Oct 23 '12 at 15:22
@SeanCoyne Got it! – NaranRaj Oct 23 '12 at 15:27

CFGroovy seems to be able to run Python

http://www.barneyb.com/barneyblog/projects/cfgroovy2/

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.