Re: Dynamic Code Execution

2008-05-30 Thread Lee Howard
Try this http://code.google.com/p/coldquery/source/browse/trunk/src/org/coldquery/UDFCreator.cfc It doesn't execute the code, but it creates a udf from a string. Then you can call the udf. The string can be cfml or script. So an example using script would be: cfscript yourcfmlcode = {read

Re: Currently running page requests

2004-09-15 Thread Lee Howard
- From: Lee Howard [EMAIL PROTECTED] Date: Tue, 14 Sep 2004 18:26:04 -0400 Subject: Re: Currently running page requests To: CF-Talk [EMAIL PROTECTED] If you are using jrun for your J2EE server I don't know what the problem could be. What kind of error message are you getting? Can you compile

Re: Currently running page requests

2004-09-14 Thread Lee Howard
I like that.It worked great for me, but if you are not using enterprise it will not work.For those people you can also do the same thing with a servlet.Here is the java code. import javax.servlet.*; import javax.servlet.http.*; import java.io.*; public class threads extends HttpServlet{ public

Re: Currently running page requests

2004-09-14 Thread Lee Howard
= (jrun.servlet.http.WebEndpoint)t.getServletRequest(); maybe there is something missing in my classpath or maybe a differnet JVM Doug - Original Message - From: Lee Howard [EMAIL PROTECTED] Date: Tue, 14 Sep 2004 15:24:51 -0400 Subject: Re: Currently running page requests To: CF-Talk [EMAIL PROTECTED] I like

Re: HTTPS post

2004-09-13 Thread Lee Howard
How about using a com object.Something like this in VB. Dim objXMLHTTP, xml, response Set xml = CreateObject(MSXML2.XMLHTTP) ' Notice the two changes in the next two lines: xml.Open POST, http://www.webserver.com/Find, false xml.setRequestHeader Content-Type, application/x-www-form-urlencoded