Re: accessing log files programatically

2007-07-15 Thread Robertson-Ravo, Neil (RX)
cflog not give you what you need? This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant, Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business, Registered in England, Number 678540. It contains information which is confidential and may also be privileged.

RE: Quicktime Movie

2007-07-15 Thread Jenny
Hi Rick, Many thanks, my first venture into movies, I had no idea .. doh me Jenny -Original Message- From: Rick Faircloth [mailto:[EMAIL PROTECTED] Sent: 15 July 2007 03:56 To: CF-Talk Subject: RE: Quicktime Movie Hi, Jenny... I'm asking a fundamental question just to be sure...

Re: shared hosting with cfobject support (sandboxed)

2007-07-15 Thread Andy Allan
They should all be doing it. As of CF7 you can enable cfobject/createObject() to be used solely for calling any combination of CFC/WebService/Java/COM It's no longer an All or None decision. Andy On 13/07/07, Jim Rising [EMAIL PROTECTED] wrote: I was just wondering if there are any shared

Re: Quicktime Movie

2007-07-15 Thread Will Tomlinson
I've done some movies but converted them to flv's, then displayed them with flash. http://wtomlinson.com/london/movies.cfm It seemed to work nicely. Will ~| ColdFusion MX7 by AdobeĀ® Dyncamically transform webcontent into

Re: SOT: Eclipse Plugins

2007-07-15 Thread Jeff Fleitz
Nathan, I highly recommend the Eclipse plugins that come with ColdFusion 8. I believe these will be free with the free developer edition? They include RDS database and file access, a live log file viewer, the step debugger, CFC generators and some other neat stuff. I am rebuilding my Eclipse

RE: Quicktime Movie

2007-07-15 Thread Rick Faircloth
I've got several clips for different clients that play without streaming... I rely on progressive download for them to play. Works well... most of the clips are short, but a few run several minutes and I haven't had any complaints. I just have to make sure I don't put up any clips on my server

RE: Quicktime Movie

2007-07-15 Thread Jenny
Hi Rick, Thanks for all the info I've installed perl and then the darwin streaming server. Perl tests fine. I've configured Darwin ok as far as I can see. My missing link now is between the web page and the movie. I've tried two code methods: div align=center embed src=intro.mov

Re: accessing log files programatically

2007-07-15 Thread Qasim Rasheed
Jonathon, I wrote a small utility to expand the logging functionality by using log4j. http://cflog4j.riaforge.org/ Hope that helps Qasim On 7/14/07, Jonathon Stierman [EMAIL PROTECTED] wrote: Anyone know of a good way to (1) get data out of the CF log files, and (2) archive the log files

RE: accessing log files programatically

2007-07-15 Thread Jonathon Stierman
From what I can tell cflog only lets you append messages to the log file. I was hoping to actually archive all messages after my grab. Jonathon -Original Message- From: Robertson-Ravo, Neil (RX) [mailto:[EMAIL PROTECTED] Sent: Sunday, July 15, 2007 4:23 AM To: CF-Talk Subject: Re:

RE: accessing log files programatically

2007-07-15 Thread Jonathon Stierman
I didn't see any place to download it... SVN says it's at revision 0. From the description it looks like it would help me grab information out of the log file -- does it provide any way to clear out an existing log file? Jonathon -Original Message- From: Qasim Rasheed [mailto:[EMAIL

RE: accessing log files programatically

2007-07-15 Thread Jeff Garza
Johnathon, If you are on Windows, you may want to take a look at Handle.exe. It's a utility from SysInternals that will allow you to close a file handle. In this case you would find the PID of the Jrun service using handle.exe -p jrun.exe then loop over the results to find the row where the

RE: accessing log files programatically

2007-07-15 Thread Jonathon Stierman
Hey, thanks! I'll look into that. Is it just me though -- I mean, doesn't this seem like something lots of people would have to deal with? I'm surprised there's nothing built into the CFAdmin API for dealing with log files... Jonathon -Original Message- From: Jeff Garza [mailto:[EMAIL

RE: Quicktime Movie

2007-07-15 Thread Rick Faircloth
Have you put your QuickTime movie through the hinting process to prepare it for streaming? Did you say earlier that it's a 60MB file? How long is it? Rick -Original Message- From: Jenny [mailto:[EMAIL PROTECTED] Sent: Sunday, July 15, 2007 10:36 AM To: CF-Talk Subject: RE: Quicktime

Re: SOT: Eclipse Plugins

2007-07-15 Thread Adam Haskell
+1 fr Aptana...it also has an AIR builder which is wicked nice. Adam On 7/12/07, Doug Bezona [EMAIL PROTECTED] wrote: Aptana has some nice JS tools. http://www.aptana.com/ JSEclipse is also rather nice: http://labs.adobe.com/technologies/jseclipse/ On 7/12/07, blists [EMAIL PROTECTED]

Prototype/AJAX Neubie question

2007-07-15 Thread Phillip M. Vector
Can someone tell me how I can have 2 separate ajax threads? Whenever I run the code below, it works as long as only 1 is triggered at a time. How do I make essentially 2 separate AJAX calls and keep the data coming back separate?

Re: Prototype/AJAX Neubie question

2007-07-15 Thread James Holmes
Try xmlHttp1=GetXmlHttpObject() and xmlHttp2=GetXmlHttpObject() (and change the names in the corresponding callback functions) since without this you are stomping over the same xmlHttp object in each call. On 7/16/07, Phillip M. Vector [EMAIL PROTECTED] wrote: Can someone tell me how I can

RE: Prototype/AJAX Neubie question

2007-07-15 Thread Jim Davis
-Original Message- From: Phillip M. Vector [mailto:[EMAIL PROTECTED] Sent: Sunday, July 15, 2007 10:24 PM To: CF-Talk Subject: Prototype/AJAX Neubie question Can someone tell me how I can have 2 separate ajax threads? Whenever I run the code below, it works as long as only 1 is